[][src]Struct reqwest_mock::client::ResponseStubber

#[must_use]pub struct ResponseStubber<'cl> { /* fields omitted */ }

A response stub builder to be used in conjunction with StubClient.

Implementations

impl<'cl> ResponseStubber<'cl>[src]

pub fn status_code(self, status: StatusCode) -> Self[src]

Set the status code of the response.

pub fn body<B: Into<Body>>(self, body: B) -> Self[src]

Set the body of the response.

pub fn header<HN: IntoHeaderName>(self, name: HN, value: HeaderValue) -> Self[src]

Add a header to the response.

pub fn headers(self, headers: HeaderMap) -> Self[src]

Add multiple headers to the response.

pub fn mock(self) -> Result<(), RegisterStubError>[src]

Register the mock in the client.

Auto Trait Implementations

impl<'cl> RefUnwindSafe for ResponseStubber<'cl>

impl<'cl> Send for ResponseStubber<'cl>

impl<'cl> Sync for ResponseStubber<'cl>

impl<'cl> Unpin for ResponseStubber<'cl>

impl<'cl> !UnwindSafe for ResponseStubber<'cl>

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>,