Struct aws_sdk_ses::types::Template
source · #[non_exhaustive]pub struct Template { /* private fields */ }Expand description
The content of the email, composed of a subject line, an HTML part, and a text-only part.
Implementations§
source§impl Template
impl Template
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the template. You will refer to this name when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail operations.
sourcepub fn subject_part(&self) -> Option<&str>
pub fn subject_part(&self) -> Option<&str>
The subject line of the email.
Trait Implementations§
source§impl PartialEq<Template> for Template
impl PartialEq<Template> for Template
impl StructuralPartialEq for Template
Auto Trait Implementations§
impl RefUnwindSafe for Template
impl Send for Template
impl Sync for Template
impl Unpin for Template
impl UnwindSafe for Template
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