pub trait RequestExt {
    type Error;

    fn into_request_vec<'a>(
        self
    ) -> BoxedFuture<'a, Result<Request<Vec<u8>>, Self::Error>>; }
Available on crate feature client only.
Expand description

Extension trait for Request

Required Associated Types

Error returned

Required Methods

Return the body as a vector of bytes

Implementations on Foreign Types

Implementors