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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".