Trait RibFunctionInvoke

Source
pub trait RibFunctionInvoke {
    // Required method
    fn invoke<'life0, 'async_trait>(
        &'life0 self,
        worker_name: Option<EvaluatedWorkerName>,
        function_name: EvaluatedFqFn,
        args: EvaluatedFnArgs,
    ) -> Pin<Box<dyn Future<Output = Result<ValueAndType, String>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn invoke<'life0, 'async_trait>( &'life0 self, worker_name: Option<EvaluatedWorkerName>, function_name: EvaluatedFqFn, args: EvaluatedFnArgs, ) -> Pin<Box<dyn Future<Output = Result<ValueAndType, String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§