pub struct SynchronousMessage {
    pub id: Option<String>,
    pub key: Option<String>,
    pub description: String,
    pub provider_states: Vec<ProviderState>,
    pub comments: HashMap<String, Value>,
    pub request: MessageContents,
    pub response: Vec<MessageContents>,
    pub pending: bool,
    pub plugin_config: HashMap<String, HashMap<String, Value>>,
    pub interaction_markup: InteractionMarkup,
    pub transport: Option<String>,
}
Expand description

Synchronous interactions as a request message to a sequence of response messages

Fields

id: Option<String>

Interaction ID. This will only be set if the Pact file was fetched from a Pact Broker

key: Option<String>

Unique key for this interaction

description: String

A description for the interaction. Must be unique within the Pact file

provider_states: Vec<ProviderState>

Optional provider state for the interaction. See https://docs.pact.io/getting_started/provider_states for more info on provider states.

comments: HashMap<String, Value>

Annotations and comments associated with this interaction

request: MessageContents

Request message

response: Vec<MessageContents>

Response messages

pending: bool

If this interaction is pending. Pending interactions will never fail the build if they fail

plugin_config: HashMap<String, HashMap<String, Value>>

Configuration added by plugins

interaction_markup: InteractionMarkup

Text markup to use to render the interaction in a UI

transport: Option<String>

Transport mechanism used with this message

Implementations

Creates a new version with a calculated key

Parse the JSON into a SynchronousMessages structure

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

The type of the interaction

If this is a request/response interaction

Returns the request/response interaction if it is one

If this is a message interaction

Returns the message interaction if it is one

Interaction ID. This will only be set if the Pact file was fetched from a Pact Broker

Description of this interaction. This needs to be unique in the pact file.

Set the Interaction ID

Set the description of this interaction. This needs to be unique in the pact file.

Optional provider states for the interaction. See <https://docs.pact.io/getting_started/provider_states> for more info on provider states. Read more

Mutable Optional provider states for the interaction. See <https://docs.pact.io/getting_started/provider_states> for more info on provider states. Read more

👎 Deprecated since 0.1.0:

Some interactions have multiple contents (like request/response), so it is impossible to know which to return for this method

Body of the response or message

The contents of the part to use for verification. For example, with HTTP interactions, this will be the response body Read more

👎 Deprecated since 0.1.0:

Some interactions have multiple contents (like request/response), so it is impossible to know which to return for this method

Determine the content type of the interaction. If a Content-Type header or metadata value is present, the value of that value will be returned. Otherwise, the contents will be inspected. Read more

If this is a V4 interaction

Returns the interaction in V4 format

Returns a mutable reference for the interaction. If the interaction is not a V4 format, will return None. The as_v4 method can convert to V4 format (via cloning the data). Read more

Returns the interaction in V4 format

Returns the interaction in V4 format

Returns the interaction in V4 format

Returns the interaction in V4 format

If the interaction is a V4 synchronous request/response message

Returns the interaction in V4 format

Returns the interaction in V4 format

Clones this interaction and wraps it in a Box

Clones this interaction and wraps it in an Arc

Clones this interaction and wraps it in an Arc and Mutex

👎 Deprecated since 0.2.1:

Some interactions have multiple contents (like request/response), so it is impossible to know which to return for this method

Returns the matching rules associated with this interaction (if there are any)

If this interaction is pending (V4 only)

If the interaction is V4 HTTP

If the interaction is a V4 message

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Convert the interaction to a JSON Value

Convert the interaction to its super trait

Convert the interaction to its super trait

Key for this interaction

Clones this interaction and wraps it in a box

Annotations and comments associated with this interaction

Mutable access to the annotations and comments associated with this interaction

Type of this V4 interaction

Any configuration added to the interaction from a plugin

Any configuration added to the interaction from a plugin

Markup added to the interaction to render in UIs

Markup added to the interaction to render in UIs

Transport used with the interaction

Set the transport used with the interaction

Creates a new version with a calculated key

Returns the current key if set, otherwise calculates a new one

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Give this value the specified foreground colour

Give this value the specified background colour

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more