Trait Unpack
Source pub trait Unpack {
// Required method
fn unpack(&self) -> Unpacker<'_>;
}
Expand description
Trait for getting an unpacker for a byte slice.
Returns an unpacker for reading values from the start of the buffer.
Source§Blanket implementation for all AsRef<[u8]> types.