pub trait WriteBody<W> {
    fn write_body(self: Box<Self>, w: &mut W) -> Result<(), Error>;
}
Expand description

A trait implemented by streaming bodies.

Required Methods§

Writes the body out, in its entirety.

Implementations on Foreign Types§

Implementors§