[][src]Trait drone_core::io::Write

pub trait Write<'sess> {
    type Error;
    fn write(
        &'sess mut self,
        buf: &'sess [u8]
    ) -> Pin<Box<dyn Future<Output = Result<usize, Self::Error>> + Send + 'sess>>; }

The Write trait allows for writing bytes to a source asynchronously.

Associated Types

type Error

The error type returned by Write::write.

Loading content...

Required methods

fn write(
    &'sess mut self,
    buf: &'sess [u8]
) -> Pin<Box<dyn Future<Output = Result<usize, Self::Error>> + Send + 'sess>>

Write a buffer into this writer asynchronously, eventually returning how many bytes were written.

Loading content...

Implementors

Loading content...