Struct rusoto_ses::ExtensionField[][src]

pub struct ExtensionField {
    pub name: String,
    pub value: String,
}

Additional X-headers to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide.

Fields

The name of the header to add. Must be between 1 and 50 characters, inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only.

The value of the header to add. Must be less than 2048 characters, and must not contain newline characters ("\r" or "\n").

Trait Implementations

impl Default for ExtensionField
[src]

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

impl Debug for ExtensionField
[src]

Formats the value using the given formatter. Read more

impl Clone for ExtensionField
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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