Struct aws_sdk_connectcases::types::TemplateSummary
source · #[non_exhaustive]pub struct TemplateSummary {
pub template_id: String,
pub template_arn: String,
pub name: String,
pub status: TemplateStatus,
}Expand description
Template summary information.
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_id: StringThe unique identifier for the template.
template_arn: StringThe Amazon Resource Name (ARN) of the template.
name: StringThe template name.
status: TemplateStatusThe status of the template.
Implementations§
source§impl TemplateSummary
impl TemplateSummary
sourcepub fn template_id(&self) -> &str
pub fn template_id(&self) -> &str
The unique identifier for the template.
sourcepub fn template_arn(&self) -> &str
pub fn template_arn(&self) -> &str
The Amazon Resource Name (ARN) of the template.
sourcepub fn status(&self) -> &TemplateStatus
pub fn status(&self) -> &TemplateStatus
The status of the template.
source§impl TemplateSummary
impl TemplateSummary
sourcepub fn builder() -> TemplateSummaryBuilder
pub fn builder() -> TemplateSummaryBuilder
Creates a new builder-style object to manufacture TemplateSummary.
Trait Implementations§
source§impl Clone for TemplateSummary
impl Clone for TemplateSummary
source§fn clone(&self) -> TemplateSummary
fn clone(&self) -> TemplateSummary
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 TemplateSummary
impl Debug for TemplateSummary
source§impl PartialEq for TemplateSummary
impl PartialEq for TemplateSummary
source§fn eq(&self, other: &TemplateSummary) -> bool
fn eq(&self, other: &TemplateSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TemplateSummary
Auto Trait Implementations§
impl Freeze for TemplateSummary
impl RefUnwindSafe for TemplateSummary
impl Send for TemplateSummary
impl Sync for TemplateSummary
impl Unpin for TemplateSummary
impl UnwindSafe for TemplateSummary
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.