pub trait PluginContextFactory:
Send
+ Sync
+ Lifecycle {
// Required methods
fn construct_plugin_context(&self);
fn get(&self) -> Option<Arc<dyn PluginContext + Send + Sync>>;
}
pub trait PluginContextFactory:
Send
+ Sync
+ Lifecycle {
// Required methods
fn construct_plugin_context(&self);
fn get(&self) -> Option<Arc<dyn PluginContext + Send + Sync>>;
}