pub trait Write { // Required method fn write_next(&mut self, data: &[u8]) -> Result<(), Error>; }
Writing operations.
Write next portion of data.