Trait cbor_smol::ser::Writer[][src]

pub trait Writer {
    type Error: Into<Error>;
    fn write_all(&mut self, buf: &[u8]) -> Result<(), Self::Error>;
}

Associated Types

The type of error returned when a write operation fails.

Required methods

Attempts to write an entire buffer into this write.

Implementors