pub trait Deframer { type Error; // Required method fn deframe( &self, data: &[u8], output: &mut [u8], ) -> Result<usize, Self::Error>; }
Extracts coded data from a framed transmission.
Error type for deframing operations.
Strips framing from data and writes the payload to output.
data
output