Trait FreshExecute

Source
pub trait FreshExecute<Client, E> {
    type Success;

    // Required method
    fn fresh_execute<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        client: &'life1 Client,
    ) -> Pin<Box<dyn Future<Output = Result<Self::Success, E>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Associated Types§

Required Methods§

Source

fn fresh_execute<'life0, 'life1, 'async_trait>( &'life0 mut self, client: &'life1 Client, ) -> Pin<Box<dyn Future<Output = Result<Self::Success, E>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementations on Foreign Types§

Source§

impl<C, E> FreshExecute<C, E> for BatchFileTriple

Source§

type Success = BatchExecutionResult

Source§

fn fresh_execute<'life0, 'life1, 'async_trait>( &'life0 mut self, client: &'life1 C, ) -> Pin<Box<dyn Future<Output = Result<BatchExecutionResult, E>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§