[−][src]Trait conjure_http::client::WriteBody
A trait implemented by streaming bodies.
Required methods
fn write_body(&mut self, w: &mut W) -> Result<(), Error>[src]
Writes the body out, in its entirety.
Behavior is unspecified if this method is called twice without a successful call to reset in between.
fn reset(&mut self) -> bool[src]
Attempts to reset the body so that it can be written out again.
Returns true if successful. Behavior is unspecified if this is not called after a call to write_body.
Implementations on Foreign Types
impl<W> WriteBody<W> for &[u8] where
W: Write, [src]
Loading content...W: Write,