Skip to main content

CompilationFinishModules

Trait CompilationFinishModules 

Source
pub trait CompilationFinishModules {
    // Required method
    fn run<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
        &'life0 self,
        compilation: &'life1 Compilation,
        async_modules_artifact: &'life2 mut AsyncModulesArtifact,
        exports_info_artifact: &'life3 mut ExportsInfoArtifact,
        side_effects_state_artifact: &'life4 mut SideEffectsStateArtifact,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             'life4: 'async_trait;

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

Required Methods§

Source

fn run<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>( &'life0 self, compilation: &'life1 Compilation, async_modules_artifact: &'life2 mut AsyncModulesArtifact, exports_info_artifact: &'life3 mut ExportsInfoArtifact, side_effects_state_artifact: &'life4 mut SideEffectsStateArtifact, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait,

Provided Methods§

Source

fn stage(&self) -> i32

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§