[][src]Struct pact_matching::models::provider_states::ProviderState

pub struct ProviderState {
    pub name: String,
    pub params: HashMap<String, Value>,
}

Struct that encapsulates all the info about a provider state

Fields

name: String

Description of this provider state

params: HashMap<String, Value>

Provider state parameters as key value pairs

Methods

impl ProviderState[src]

pub fn default(name: &String) -> ProviderState[src]

Creates a default state with the given name

pub fn from_json_v3(pact_json: &Value) -> ProviderState[src]

Constructs a provider state from the Json struct

pub fn from_json(pact_json: &Value) -> Vec<ProviderState>[src]

Constructs a list of provider states from the Json struct

pub fn to_json(&self) -> Value[src]

Converts this provider state into a JSON structure

Trait Implementations

impl Clone for ProviderState[src]

impl Debug for ProviderState[src]

impl<'de> Deserialize<'de> for ProviderState[src]

impl Eq for ProviderState[src]

impl Hash for ProviderState[src]

impl PartialEq<ProviderState> for ProviderState[src]

impl Serialize for ProviderState[src]

impl StructuralPartialEq for ProviderState[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> 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.