#[non_exhaustive]pub struct UpdateEmailTemplateInput {
pub template_name: Option<String>,
pub template_content: Option<EmailTemplateContent>,
}Expand description
Represents a request to update an email template. For more information, see the Amazon SES Developer Guide.
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.template_name: Option<String>The name of the template.
template_content: Option<EmailTemplateContent>The content of the email template, composed of a subject line, an HTML part, and a text-only part.
Implementations§
source§impl UpdateEmailTemplateInput
impl UpdateEmailTemplateInput
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the template.
sourcepub fn template_content(&self) -> Option<&EmailTemplateContent>
pub fn template_content(&self) -> Option<&EmailTemplateContent>
The content of the email template, composed of a subject line, an HTML part, and a text-only part.
source§impl UpdateEmailTemplateInput
impl UpdateEmailTemplateInput
sourcepub fn builder() -> UpdateEmailTemplateInputBuilder
pub fn builder() -> UpdateEmailTemplateInputBuilder
Creates a new builder-style object to manufacture UpdateEmailTemplateInput.
Trait Implementations§
source§impl Clone for UpdateEmailTemplateInput
impl Clone for UpdateEmailTemplateInput
source§fn clone(&self) -> UpdateEmailTemplateInput
fn clone(&self) -> UpdateEmailTemplateInput
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 UpdateEmailTemplateInput
impl Debug for UpdateEmailTemplateInput
source§impl PartialEq for UpdateEmailTemplateInput
impl PartialEq for UpdateEmailTemplateInput
source§fn eq(&self, other: &UpdateEmailTemplateInput) -> bool
fn eq(&self, other: &UpdateEmailTemplateInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateEmailTemplateInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateEmailTemplateInput
impl Send for UpdateEmailTemplateInput
impl Sync for UpdateEmailTemplateInput
impl Unpin for UpdateEmailTemplateInput
impl UnwindSafe for UpdateEmailTemplateInput
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.