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]

[src]

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

impl Debug for Content
[src]

[src]

Formats the value using the given formatter. Read more

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

impl Sync for Content