pub trait FrameWriter<W: Write> {
    fn flush(&mut self) -> Result<()>;
fn get_ref(&self) -> &W;
fn get_mut(&mut self) -> &mut W;
fn into_inner(self) -> W; }
Expand description

Frame Writer

Required methods

Implementors