Trait conduit::WriteBody
[−]
[src]
pub trait WriteBody {
fn write_body(&mut self, out: &mut Write) -> Result<u64>;
}A trait which writes the response body out to a Writer.
This is implemented for all Readers.
Required Methods
fn write_body(&mut self, out: &mut Write) -> Result<u64>
Implementors
impl<R> WriteBody for R where
R: Read,