Trait hyper::client::IntoBody [-] [+] [src]

pub trait IntoBody<'a> {
    fn into_body(self) -> Body<'a>;
}

A helper trait to allow overloading of the body parameter.

Required Methods

fn into_body(self) -> Body<'a>

Consumes self into an instance of Body.

Implementors