Trait minicbor::encode::write::Write[][src]

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

A type that accepts byte slices for writing.

Associated Types

Required methods

Write the whole byte slice.

Implementors