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.

By default, the string must be 7-bit ASCII. If the text must contain any other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: =?charset?encoding?encoded-text?=. For more information, see RFC 2047.

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]

[src]

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

impl Debug for Destination
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Destination
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Destination

impl Sync for Destination