[][src]Struct reqwest_mock::client::RequestStubber

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

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

After you are finished specifying the details of the matching request, call response() to return a ResponseStubber instance and start specifying the response. Finally use ResponseStubber::mock() to register the mock into the client.

Implementations

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

pub fn method(self, method: Method) -> Self[src]

Set the method of the request.

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

Set the body of the request.

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

Add a header to the request.

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

Add multiple headers to the request.

pub fn response(self) -> ResponseStubber<'cl>[src]

Stub the response to this request.

Auto Trait Implementations

impl<'cl> RefUnwindSafe for RequestStubber<'cl>

impl<'cl> Send for RequestStubber<'cl>

impl<'cl> Sync for RequestStubber<'cl>

impl<'cl> Unpin for RequestStubber<'cl>

impl<'cl> !UnwindSafe for RequestStubber<'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>,