[][src]Struct reqwest::Body

pub struct Body { /* fields omitted */ }

An asynchronous request body.

Methods

impl Body[src]

pub fn wrap_stream<S>(stream: S) -> Body where
    S: TryStream + Send + Sync + 'static,
    S::Error: Into<Box<dyn Error + Send + Sync>>,
    Chunk: From<S::Ok>, 
[src]

Wrap a futures Stream in a box inside Body.

Example

let chunks: Vec<Result<_, ::std::io::Error>> = vec![
    Ok("hello"),
    Ok(" "),
    Ok("world"),
];

let stream = futures_util::stream::iter(chunks);

let body = Body::wrap_stream(stream);

Unstable

This requires the unstable-stream feature to be enabled.

Trait Implementations

impl From<Bytes> for Body[src]

impl From<Vec<u8>> for Body[src]

impl From<&'static [u8]> for Body[src]

impl From<String> for Body[src]

impl From<&'static str> for Body[src]

impl From<Response> for Body[src]

A Response can be piped as the Body of another request.

impl Debug for Body[src]

Auto Trait Implementations

impl Send for Body

impl Sync for Body

impl Unpin for Body

impl !UnwindSafe for Body

impl !RefUnwindSafe for Body

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]