Trait Frontend

Source
pub trait Frontend<O = Options>{
    // Required method
    fn run<'async_trait>(
        self,
        bridge: Bridge,
        options: O,
    ) -> Pin<Box<dyn Future<Output = Result<FrontendOutput, Error>> + Send + 'async_trait>>
       where Self: 'async_trait;
}

Required Methods§

Source

fn run<'async_trait>( self, bridge: Bridge, options: O, ) -> Pin<Box<dyn Future<Output = Result<FrontendOutput, Error>> + Send + 'async_trait>>
where Self: 'async_trait,

Implementors§