[][src]Trait conjure_http::server::WriteBody

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

A trait implemented by streaming bodies.

Required methods

fn write_body(self, w: &mut W) -> Result<(), Error>

Writes the body out, in its entirety.

Loading content...

Implementations on Foreign Types

impl<W> WriteBody<W> for Vec<u8> where
    W: Write
[src]

Loading content...

Implementors

Loading content...