[][src]Struct reqwest_mock::Body

pub struct Body { /* fields omitted */ }

A HTTP request body.

This is either a file pointer or a memory sequence of bytes. This distinction only matters when using DirectClient, in which case a file might be read chunked.

Note that this is not the same type as the one found in the reqwest crate.

Trait Implementations

impl Debug for Body[src]

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

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

impl From<Body> for Body[src]

impl From<File> for Body[src]

impl From<String> for Body[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Body

impl Send for Body

impl Sync for Body

impl Unpin for Body

impl UnwindSafe for Body

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,