Struct aws_sdk_s3::primitives::event_stream::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>,
) -> Message
pub fn new_from_parts( headers: Vec<Header>, payload: impl Into<Bytes>, ) -> Message
Creates a message with the given headers
and payload
.
sourcepub fn add_header(self, header: Header) -> Message
pub fn add_header(self, header: Header) -> Message
Adds a header to the message.
Trait Implementations§
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl !Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.