pub trait VarIntAsyncReader {
    fn read_varint_async<'life0, 'async_trait, VI: VarInt>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = Result<VI>> + Send + 'async_trait>>
    where
        VI: 'async_trait,
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

Like a VarIntReader, but returns a future.

Required methods

Implementors