[][src]Struct rusoto_sesv2::SuppressedDestination

pub struct SuppressedDestination {
    pub attributes: Option<SuppressedDestinationAttributes>,
    pub email_address: String,
    pub last_update_time: f64,
    pub reason: String,
}

An object that contains information about an email address that is on the suppression list for your account.

Fields

attributes: Option<SuppressedDestinationAttributes>

An optional value that can contain additional information about the reasons that the address was added to the suppression list for your account.

email_address: String

The email address that is on the suppression list for your account.

last_update_time: f64

The date and time when the suppressed destination was last updated, shown in Unix time format.

reason: String

The reason that the address was added to the suppression list for your account.

Trait Implementations

impl Clone for SuppressedDestination[src]

impl Debug for SuppressedDestination[src]

impl Default for SuppressedDestination[src]

impl<'de> Deserialize<'de> for SuppressedDestination[src]

impl PartialEq<SuppressedDestination> for SuppressedDestination[src]

impl StructuralPartialEq for SuppressedDestination[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.