Struct rusoto_ses::Content [] [src]

pub struct Content {
    pub charset: Option<Charset>,
    pub data: MessageData,
}

Represents textual data, plus an optional character set specification.

By default, the text must be 7-bit ASCII, due to the constraints of the SMTP protocol. If the text must contain any other characters, then you must also specify a character set. Examples include UTF-8, ISO-8859-1, and Shift_JIS.

Fields

The character set of the content.

The textual data of the content.

Trait Implementations

impl Default for Content
[src]

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

impl Debug for Content
[src]

Formats the value using the given formatter.

impl Clone for Content
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more