[][src]Struct pact_matching::RequestMatchResult

pub struct RequestMatchResult {
    pub method: Option<Mismatch>,
    pub path: Option<Vec<Mismatch>>,
    pub body: BodyMatchResult,
    pub query: HashMap<String, Vec<Mismatch>>,
    pub headers: HashMap<String, Vec<Mismatch>>,
}

Result of matching a request

Fields

method: Option<Mismatch>

Method match result

path: Option<Vec<Mismatch>>

Path match result

body: BodyMatchResult

Body match result

query: HashMap<String, Vec<Mismatch>>

Query parameter result

headers: HashMap<String, Vec<Mismatch>>

Headers result

Implementations

impl RequestMatchResult[src]

pub fn mismatches(&self) -> Vec<Mismatch>[src]

Returns all the mismatches

pub fn score(&self) -> i8[src]

Returns a score based on what was matched

pub fn all_matched(&self) -> bool[src]

If all the things matched OK

pub fn method_or_path_mismatch(&self) -> bool[src]

If there was a mismatch with the method or path

Trait Implementations

impl Clone for RequestMatchResult[src]

impl Debug for RequestMatchResult[src]

impl PartialEq<RequestMatchResult> for RequestMatchResult[src]

impl StructuralPartialEq for RequestMatchResult[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> Instrument for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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