pub trait FramerExt {
// Required method
fn framed<'a, F>(
&'a mut self,
framer: &'a mut F,
is_eof: bool,
) -> Framed<'a, F, Self> ⓘ
where Self: ReadIoBuffer + Sized,
F: Framer;
}
Expand description
Extension trait for ergonomically working with framers and buffers.