pub trait Importer: Any + Clone + Sync + Send {
    // Required method
    fn import<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>(
        &'life0 self,
        compiler: &'life1 mut ModuleCompiler<'life2, 'life3>,
        vm: &'life4 Thread,
        modulename: &'life5 str
    ) -> Pin<Box<dyn Future<Output = SalvageResult<ArcType, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             'life4: 'async_trait,
             'life5: 'async_trait;
}Required Methods§
fn import<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>(
    &'life0 self,
    compiler: &'life1 mut ModuleCompiler<'life2, 'life3>,
    vm: &'life4 Thread,
    modulename: &'life5 str
) -> Pin<Box<dyn Future<Output = SalvageResult<ArcType, Error>> + Send + 'async_trait>>where
    Self: 'async_trait,
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    'life3: 'async_trait,
    'life4: 'async_trait,
    'life5: 'async_trait,
Object Safety§
This trait is not object safe.