Trait cbor_no_std::io::Writer
[−]
[src]
pub trait Writer { fn write_byte(&mut self, byte: u8); fn write_bytes(&mut self, bytes: Vec<u8>); }
Required Methods
fn write_byte(&mut self, byte: u8)
fn write_bytes(&mut self, bytes: Vec<u8>)
Implementors
impl<'a> Writer for VecWriter<'a>