Struct pact_models::response::Response[][src]

pub struct Response {
    pub status: u16,
    pub headers: Option<HashMap<String, Vec<String>>>,
    pub body: OptionalBody,
    pub matching_rules: MatchingRules,
    pub generators: Generators,
}
Expand description

Struct that defines the response.

Fields

status: u16

Response status

headers: Option<HashMap<String, Vec<String>>>

Response headers

body: OptionalBody

Response body

matching_rules: MatchingRules

Response matching rules

generators: Generators

Response generators

Implementations

Build a Response from a Value struct.

👎 Deprecated since 0.5.4:

please use default() from the standard Default trait instead

Returns a default response: Status 200

Converts this response to a Value struct.

Return a description of all the differences from the other response

Convert this response to V4 format

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

Returns the headers of the HTTP part.

Returns the headers of the HTTP part in a mutable form.

Returns the body of the HTTP part.

Returns the matching rules of the HTTP part.

Returns the generators of the HTTP part.

Lookup up the content type for the part

Tries to detect the content type of the body by matching some regular expressions against the first 32 characters. Read more

Determine the content type of the HTTP part. If a Content-Type header is present, the value of that header will be returned. Otherwise, the body will be inspected. Read more

Checks if the HTTP Part has the given header

Checks if the HTTP Part has the given header

If the body is a textual type (non-binary)

Convenience method to add a header

Builds a map of generators from the generators and matching rules

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

This method tests for !=.

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.

Performs the conversion.

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

Performs the conversion.

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)

recently added

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.