Trait Write

Source
pub trait Write {
    // Required method
    fn write_next(&mut self, data: &[u8]) -> Result<(), Error>;
}
Expand description

Writing operations.

Required Methods§

Source

fn write_next(&mut self, data: &[u8]) -> Result<(), Error>

Write next portion of data.

Implementors§

Source§

impl<'a> Write for ObjectWrite<'a>