pub trait WriteBody<W> { // Required method fn write_body(self: Box<Self>, w: &mut W) -> Result<(), Error>; }
A trait implemented by streaming bodies.
Writes the body out, in its entirety.