[][src]Struct rusoto_sesv2::ReputationOptions

pub struct ReputationOptions {
    pub last_fresh_start: Option<f64>,
    pub reputation_metrics_enabled: Option<bool>,
}

Enable or disable collection of reputation metrics for emails that you send using this configuration set in the current AWS Region.

Fields

last_fresh_start: Option<f64>

The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.

reputation_metrics_enabled: Option<bool>

If true, tracking of reputation metrics is enabled for the configuration set. If false, tracking of reputation metrics is disabled for the configuration set.

Trait Implementations

impl Clone for ReputationOptions[src]

impl Debug for ReputationOptions[src]

impl Default for ReputationOptions[src]

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

impl PartialEq<ReputationOptions> for ReputationOptions[src]

impl Serialize for ReputationOptions[src]

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