[][src]Trait mio::TryWrite

pub trait TryWrite {
    fn try_write(&mut self, buf: &[u8]) -> Result<Option<usize>>;

    fn try_write_buf<B: Buf>(&mut self, buf: &mut B) -> Result<Option<usize>>
    where
        Self: Sized
, { ... } }

Required methods

fn try_write(&mut self, buf: &[u8]) -> Result<Option<usize>>

Loading content...

Provided methods

fn try_write_buf<B: Buf>(&mut self, buf: &mut B) -> Result<Option<usize>> where
    Self: Sized

Loading content...

Implementors

impl<T: Write> TryWrite for T[src]

Loading content...