Trait Write
molecule::io
pub trait Write { fn write_all(&mut self, buf: &[u8]) -> Result<()>; }
fn write_all(&mut self, buf: &[u8]) -> Result<()>
impl Write for Vec<u8>