[][src]Struct wiremock::MockBuilder

pub struct MockBuilder { /* fields omitted */ }

A fluent builder to construct a Mock instance given matchers and a ResponseTemplate.

Implementations

impl MockBuilder[src]

pub fn and<M: Match + 'static>(self, matcher: M) -> Self[src]

Add another request matcher to the mock you are building.

All specified matchers must match for the overall Mock to match an incoming request.

pub fn respond_with(self, template: ResponseTemplate) -> Mock[src]

Establish what ResponseTemplate should be used to generate a response when an incoming request matches.

respond_with finalises the MockBuilder and returns you a Mock instance, ready to be registered or mounted on a MockServer!

Trait Implementations

impl Debug for MockBuilder[src]

Auto Trait Implementations

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