pub trait Initializer: Send + Sync {
    // Required method
    fn init(self: Box<Self>, state: PreInitState<'_>) -> PostInitState;
}Expand description
Interface for dispatcher initializers.
Required Methods§
Sourcefn init(self: Box<Self>, state: PreInitState<'_>) -> PostInitState
 
fn init(self: Box<Self>, state: PreInitState<'_>) -> PostInitState
Initializes the dispatcher(s).