Struct rusoto_ses::DescribeReceiptRuleSetResponse[][src]

pub struct DescribeReceiptRuleSetResponse {
    pub metadata: Option<ReceiptRuleSetMetadata>,
    pub rules: Option<Vec<ReceiptRule>>,
}

Represents the details of the specified receipt rule set.

Fields

The metadata for the receipt rule set, which consists of the rule set name and the timestamp of when the rule set was created.

A list of the receipt rules that belong to the specified receipt rule set.

Trait Implementations

impl Default for DescribeReceiptRuleSetResponse
[src]

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

impl Debug for DescribeReceiptRuleSetResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeReceiptRuleSetResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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