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

Required methods

Implementors