Struct aws_smithy_eventstream::smithy::ResponseHeaders

source ·
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§

source§

impl<'a> ResponseHeaders<'a>

source

pub fn content_type(&self) -> Option<&str>

Content-Type for this message

Trait Implementations§

source§

impl<'a> Debug for ResponseHeaders<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for ResponseHeaders<'a>

§

impl<'a> RefUnwindSafe for ResponseHeaders<'a>

§

impl<'a> Send for ResponseHeaders<'a>

§

impl<'a> Sync for ResponseHeaders<'a>

§

impl<'a> Unpin for ResponseHeaders<'a>

§

impl<'a> UnwindSafe for ResponseHeaders<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.