Struct aws_smithy_eventstream::frame::Message
source · #[non_exhaustive]pub struct Message { /* private fields */ }
Expand description
Event Stream message.
Implementations§
source§impl Message
impl Message
sourcepub fn new(payload: impl Into<Bytes>) -> Message
pub fn new(payload: impl Into<Bytes>) -> Message
Creates a new message with the given payload
. Headers can be added later.
sourcepub fn new_from_parts(headers: Vec<Header>, payload: impl Into<Bytes>) -> Self
pub fn new_from_parts(headers: Vec<Header>, payload: impl Into<Bytes>) -> Self
Creates a message with the given headers
and payload
.
sourcepub fn add_header(self, header: Header) -> Self
pub fn add_header(self, header: Header) -> Self
Adds a header to the message.
Trait Implementations§
source§impl<'a> Arbitrary<'a> for Message
impl<'a> Arbitrary<'a> for Message
source§fn arbitrary(unstruct: &mut Unstructured<'a>) -> Result<Self>
fn arbitrary(unstruct: &mut Unstructured<'a>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read more