#[non_exhaustive]pub struct GetContactListOutput {
pub contact_list_name: Option<String>,
pub topics: Option<Vec<Topic>>,
pub description: Option<String>,
pub created_timestamp: Option<DateTime>,
pub last_updated_timestamp: Option<DateTime>,
pub tags: Option<Vec<Tag>>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.contact_list_name: Option<String>The name of the contact list.
topics: Option<Vec<Topic>>An interest group, theme, or label within a list. A contact list can have multiple topics.
description: Option<String>A description of what the contact list is about.
created_timestamp: Option<DateTime>A timestamp noting when the contact list was created.
last_updated_timestamp: Option<DateTime>A timestamp noting the last time the contact list was updated.
The tags associated with a contact list.
Implementations§
source§impl GetContactListOutput
impl GetContactListOutput
sourcepub fn contact_list_name(&self) -> Option<&str>
pub fn contact_list_name(&self) -> Option<&str>
The name of the contact list.
sourcepub fn topics(&self) -> &[Topic]
pub fn topics(&self) -> &[Topic]
An interest group, theme, or label within a list. A contact list can have multiple topics.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .topics.is_none().
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of what the contact list is about.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
A timestamp noting when the contact list was created.
sourcepub fn last_updated_timestamp(&self) -> Option<&DateTime>
pub fn last_updated_timestamp(&self) -> Option<&DateTime>
A timestamp noting the last time the contact list was updated.
The tags associated with a contact list.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
source§impl GetContactListOutput
impl GetContactListOutput
sourcepub fn builder() -> GetContactListOutputBuilder
pub fn builder() -> GetContactListOutputBuilder
Creates a new builder-style object to manufacture GetContactListOutput.
Trait Implementations§
source§impl Clone for GetContactListOutput
impl Clone for GetContactListOutput
source§fn clone(&self) -> GetContactListOutput
fn clone(&self) -> GetContactListOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetContactListOutput
impl Debug for GetContactListOutput
source§impl PartialEq for GetContactListOutput
impl PartialEq for GetContactListOutput
source§fn eq(&self, other: &GetContactListOutput) -> bool
fn eq(&self, other: &GetContactListOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetContactListOutput
impl RequestId for GetContactListOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.