pub trait FixedIntAsyncWriter {
    fn write_fixedint_async<'life0, 'async_trait, FI>(
        &'life0 mut self,
        n: FI
    ) -> Pin<Box<dyn Future<Output = Result<usize>> + Send + 'async_trait>>
    where
        FI: 'async_trait + FixedInt + Send,
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors