[][src]Trait integer_encoding::FixedIntAsyncWriter

pub trait FixedIntAsyncWriter {
#[must_use]    pub 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

#[must_use]pub 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, 
[src]

Loading content...

Implementors

impl<AW: AsyncWrite + Unpin + Send> FixedIntAsyncWriter for AW[src]

Loading content...