pub trait BodyWriter {
    // Required methods
    fn kind(&mut self) -> IoResult<BodyKind>;
    fn write<W: Write>(&mut self, writer: W) -> IoResult<()>;
}

Required Methods§

source

fn kind(&mut self) -> IoResult<BodyKind>

source

fn write<W: Write>(&mut self, writer: W) -> IoResult<()>

Object Safety§

This trait is not object safe.

Implementors§