[][src]Struct rusoto_sesv2::Contact

pub struct Contact {
    pub email_address: Option<String>,
    pub last_updated_timestamp: Option<f64>,
    pub topic_default_preferences: Option<Vec<TopicPreference>>,
    pub topic_preferences: Option<Vec<TopicPreference>>,
    pub unsubscribe_all: Option<bool>,
}

A contact is the end-user who is receiving the email.

Fields

email_address: Option<String>

The contact's email address.

last_updated_timestamp: Option<f64>

A timestamp noting the last time the contact's information was updated.

topic_default_preferences: Option<Vec<TopicPreference>>

The default topic preferences applied to the contact.

topic_preferences: Option<Vec<TopicPreference>>

The contact's preference for being opted-in to or opted-out of a topic.

unsubscribe_all: Option<bool>

A boolean value status noting if the contact is unsubscribed from all contact list topics.

Trait Implementations

impl Clone for Contact[src]

impl Debug for Contact[src]

impl Default for Contact[src]

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

impl PartialEq<Contact> for Contact[src]

impl StructuralPartialEq for Contact[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.