Struct aws_sdk_sesv2::types::EmailTemplateContent
source · #[non_exhaustive]pub struct EmailTemplateContent {
pub subject: Option<String>,
pub text: Option<String>,
pub html: Option<String>,
}Expand description
The content of the email, composed of a subject line, an HTML part, and a text-only part.
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.subject: Option<String>The subject line of the email.
text: Option<String>The email body that will be visible to recipients whose email clients do not display HTML.
html: Option<String>The HTML body of the email.
Implementations§
source§impl EmailTemplateContent
impl EmailTemplateContent
sourcepub fn builder() -> EmailTemplateContentBuilder
pub fn builder() -> EmailTemplateContentBuilder
Creates a new builder-style object to manufacture EmailTemplateContent.
Trait Implementations§
source§impl Clone for EmailTemplateContent
impl Clone for EmailTemplateContent
source§fn clone(&self) -> EmailTemplateContent
fn clone(&self) -> EmailTemplateContent
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 EmailTemplateContent
impl Debug for EmailTemplateContent
source§impl PartialEq for EmailTemplateContent
impl PartialEq for EmailTemplateContent
source§fn eq(&self, other: &EmailTemplateContent) -> bool
fn eq(&self, other: &EmailTemplateContent) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EmailTemplateContent
Auto Trait Implementations§
impl RefUnwindSafe for EmailTemplateContent
impl Send for EmailTemplateContent
impl Sync for EmailTemplateContent
impl Unpin for EmailTemplateContent
impl UnwindSafe for EmailTemplateContent
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.