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>
impl<'a> ResponseHeaders<'a>
sourcepub fn content_type(&self) -> Option<&str>
pub fn content_type(&self) -> Option<&str>
Content-Type for this message
Trait Implementations§
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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