Struct rusoto_ses::Destination[][src]

pub struct Destination {
    pub bcc_addresses: Option<Vec<String>>,
    pub cc_addresses: Option<Vec<String>>,
    pub to_addresses: Option<Vec<String>>,
}

Represents the destination of the message, consisting of To:, CC:, and BCC: fields.

Amazon SES does not support the SMTPUTF8 extension, as described in RFC6531. For this reason, the local part of a destination email address (the part of the email address that precedes the @ sign) may only contain 7-bit ASCII characters. If the domain part of an address (the part after the @ sign) contains non-ASCII characters, they must be encoded using Punycode, as described in RFC3492.

Fields

The BCC: field(s) of the message.

The CC: field(s) of the message.

The To: field(s) of the message.

Trait Implementations

impl Default for Destination
[src]

Returns the "default value" for a type. Read more

impl Debug for Destination
[src]

Formats the value using the given formatter. Read more

impl Clone for Destination
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Destination
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Destination

impl Sync for Destination