CmdBodyReadAll

Trait CmdBodyReadAll 

Source
pub trait CmdBodyReadAll:
    AsyncRead
    + Send
    + 'static {
    // Required method
    fn read_all<'life0, 'async_trait>(
        &'life0 mut self,
    ) -> Pin<Box<dyn Future<Output = CmdResult<Vec<u8>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

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

Implementors§