#[non_exhaustive]pub struct ListMailDomainsOutput {
pub mail_domains: Option<Vec<MailDomainSummary>>,
pub next_token: Option<String>,
/* 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.mail_domains: Option<Vec<MailDomainSummary>>The list of mail domain summaries, specifying domains that exist in the specified WorkMail organization, along with the information about whether the domain is or isn't the default.
next_token: Option<String>The token to use to retrieve the next page of results. The value becomes null when there are no more results to return.
Implementations§
source§impl ListMailDomainsOutput
impl ListMailDomainsOutput
sourcepub fn mail_domains(&self) -> &[MailDomainSummary]
pub fn mail_domains(&self) -> &[MailDomainSummary]
The list of mail domain summaries, specifying domains that exist in the specified WorkMail organization, along with the information about whether the domain is or isn't the default.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .mail_domains.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use to retrieve the next page of results. The value becomes null when there are no more results to return.
source§impl ListMailDomainsOutput
impl ListMailDomainsOutput
sourcepub fn builder() -> ListMailDomainsOutputBuilder
pub fn builder() -> ListMailDomainsOutputBuilder
Creates a new builder-style object to manufacture ListMailDomainsOutput.
Trait Implementations§
source§impl Clone for ListMailDomainsOutput
impl Clone for ListMailDomainsOutput
source§fn clone(&self) -> ListMailDomainsOutput
fn clone(&self) -> ListMailDomainsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListMailDomainsOutput
impl Debug for ListMailDomainsOutput
source§impl PartialEq for ListMailDomainsOutput
impl PartialEq for ListMailDomainsOutput
source§fn eq(&self, other: &ListMailDomainsOutput) -> bool
fn eq(&self, other: &ListMailDomainsOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ListMailDomainsOutput
impl RequestId for ListMailDomainsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.