[][src]Trait capnp::io::Write

pub trait Write {
    fn write_all(&mut self, buf: &[u8]) -> Result<()>;
}

A rough approximation of std::io::Write.

Required methods

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

Loading content...

Implementors

impl<W> Write for W where
    W: Write
[src]

Loading content...