Processor

Trait Processor 

Source
pub trait Processor:
    Send
    + Sync
    + Debug {
    // Required method
    fn run<'life0, 'async_trait>(
        &'life0 self,
        input: Vec<u8>,
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn run<'life0, 'async_trait>( &'life0 self, input: Vec<u8>, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§