Skip to main content

EnginePlugin

Trait EnginePlugin 

Source
pub trait EnginePlugin<S: FlowState>: Send + Sync {
    // Required methods
    fn descriptor(&self) -> PluginDescriptor;
    fn install(&self, engine: &mut FlowEngine<S>);
}
Expand description

Engine plugin — installs hooks on FlowEngine.

Required Methods§

Source

fn descriptor(&self) -> PluginDescriptor

Source

fn install(&self, engine: &mut FlowEngine<S>)

Implementors§