pub struct CobsEncoder<'a> { /* private fields */ }
Expand description
The CobsEncoder
type is used to encode a stream of bytes to a
given mutable output slice. This is often useful when heap data
structures are not available, or when not all message bytes are
received at a single point in time.
Implementations§
Source§impl<'a> CobsEncoder<'a>
impl<'a> CobsEncoder<'a>
Sourcepub fn new(out_buf: &'a mut [u8]) -> CobsEncoder<'a>
pub fn new(out_buf: &'a mut [u8]) -> CobsEncoder<'a>
Create a new streaming Cobs Encoder