[][src]Trait gluon::import::Importer

pub trait Importer: Any + Clone + Sync + Send {
    fn import<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
        &'life0 self,
        compiler: &'life1 mut ModuleCompiler<'life2>,
        vm: &'life3 Thread,
        modulename: &'life4 str
    ) -> Pin<Box<dyn Future<Output = Result<ArcType, (Option<ArcType>, Error)>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        'life4: 'async_trait,
        Self: 'async_trait
; }

Required methods

fn import<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
    &'life0 self,
    compiler: &'life1 mut ModuleCompiler<'life2>,
    vm: &'life3 Thread,
    modulename: &'life4 str
) -> Pin<Box<dyn Future<Output = Result<ArcType, (Option<ArcType>, Error)>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    'life3: 'async_trait,
    'life4: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementors

impl Importer for DefaultImporter[src]

Loading content...