pub struct ResponseHeaders<'a> {
    pub content_type: Option<&'a StrBytes>,
    pub message_type: &'a StrBytes,
    pub smithy_type: &'a StrBytes,
}
Expand description

Structured header data from a Message

Fields

content_type: Option<&'a StrBytes>

Content Type of the message

This can be a number of things depending on the protocol. For example, if the protocol is AwsJson1, then this could be application/json, or application/xml for RestXml.

It will be application/octet-stream if there is a Blob payload shape, and text/plain if there is a String payload shape.

message_type: &'a StrBytes

Message Type field

This field is used to distinguish between events where the value is event and errors where the value is exception

smithy_type: &'a StrBytes

Smithy Type field

This field is used to determine which of the possible union variants that this message represents

Implementations

Content-Type for this message

Trait Implementations

Formats the value using the given formatter. Read more

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

Returns the argument unchanged.

Calls U::from(self).

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

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.