Struct aws_sdk_workmailmessageflow::operation::put_raw_message_content::PutRawMessageContentInput
source · #[non_exhaustive]pub struct PutRawMessageContentInput {
pub message_id: Option<String>,
pub content: Option<RawMessageContent>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.message_id: Option<String>The identifier of the email message being updated.
content: Option<RawMessageContent>Describes the raw message content of the updated email message.
Implementations§
source§impl PutRawMessageContentInput
impl PutRawMessageContentInput
sourcepub fn message_id(&self) -> Option<&str>
pub fn message_id(&self) -> Option<&str>
The identifier of the email message being updated.
sourcepub fn content(&self) -> Option<&RawMessageContent>
pub fn content(&self) -> Option<&RawMessageContent>
Describes the raw message content of the updated email message.
source§impl PutRawMessageContentInput
impl PutRawMessageContentInput
sourcepub fn builder() -> PutRawMessageContentInputBuilder
pub fn builder() -> PutRawMessageContentInputBuilder
Creates a new builder-style object to manufacture PutRawMessageContentInput.
Trait Implementations§
source§impl Clone for PutRawMessageContentInput
impl Clone for PutRawMessageContentInput
source§fn clone(&self) -> PutRawMessageContentInput
fn clone(&self) -> PutRawMessageContentInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PutRawMessageContentInput
impl Debug for PutRawMessageContentInput
source§impl PartialEq for PutRawMessageContentInput
impl PartialEq for PutRawMessageContentInput
source§fn eq(&self, other: &PutRawMessageContentInput) -> bool
fn eq(&self, other: &PutRawMessageContentInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutRawMessageContentInput
Auto Trait Implementations§
impl Freeze for PutRawMessageContentInput
impl RefUnwindSafe for PutRawMessageContentInput
impl Send for PutRawMessageContentInput
impl Sync for PutRawMessageContentInput
impl Unpin for PutRawMessageContentInput
impl UnwindSafe for PutRawMessageContentInput
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> 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.