Struct rusoto_ses::Content[][src]

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

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. Read more

impl Clone for Content
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Content
[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 Content

impl Sync for Content