pub trait BodyExt {
    type Raw;
    type Error;
    fn into_raw(self) -> BoxFuture<'static, Result<Self::Raw, Self::Error>>;
}
Expand description

Additional function for hyper::Body

Associated Types

Raw body type

Error if we can’t gather up the raw body

Required methods

Collect the body into a raw form

Implementors