Struct rusoto_ses::ListTemplatesResponse[][src]

pub struct ListTemplatesResponse {
    pub next_token: Option<String>,
    pub templates_metadata: Option<Vec<TemplateMetadata>>,
}

Fields

A token indicating that there are additional email templates available to be listed. Pass this token to a subsequent call to ListTemplates to retrieve the next 50 email templates.

An array the contains the name and creation time stamp for each template in your Amazon SES account.

Trait Implementations

impl Default for ListTemplatesResponse
[src]

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

impl Debug for ListTemplatesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTemplatesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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