Invoker

Trait Invoker 

Source
pub trait Invoker {
    // Required methods
    fn call_s32<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        function: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<i32>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn call_s64<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        function: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<i64>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn call_f32<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        function: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<f32>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn call_f64<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        function: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<f64>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn call_list_u8<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        function: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<u8>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn call_s32<'life0, 'life1, 'async_trait>( &'life0 mut self, function: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<i32>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source

fn call_s64<'life0, 'life1, 'async_trait>( &'life0 mut self, function: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<i64>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source

fn call_f32<'life0, 'life1, 'async_trait>( &'life0 mut self, function: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<f32>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source

fn call_f64<'life0, 'life1, 'async_trait>( &'life0 mut self, function: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<f64>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source

fn call_list_u8<'life0, 'life1, 'async_trait>( &'life0 mut self, function: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<Vec<u8>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§