NormalModuleLoaderStartYielding

Trait NormalModuleLoaderStartYielding 

Source
pub trait NormalModuleLoaderStartYielding {
    // Required method
    fn run<'life0, 'life1, 'async_trait>(
        &'life0 self,
        loader_context: &'life1 mut LoaderContext<RunnerContext>,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;

    // Provided method
    fn stage(&self) -> i32 { ... }
}

Required Methods§

Source

fn run<'life0, 'life1, 'async_trait>( &'life0 self, loader_context: &'life1 mut LoaderContext<RunnerContext>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Provided Methods§

Source

fn stage(&self) -> i32

Implementors§