[][src]Struct rusoto_sesv2::DailyVolume

pub struct DailyVolume {
    pub domain_isp_placements: Option<Vec<DomainIspPlacement>>,
    pub start_date: Option<f64>,
    pub volume_statistics: Option<VolumeStatistics>,
}

An object that contains information about the volume of email sent on each day of the analysis period.

Fields

domain_isp_placements: Option<Vec<DomainIspPlacement>>

An object that contains inbox placement metrics for a specified day in the analysis period, broken out by the recipient's email provider.

start_date: Option<f64>

The date that the DailyVolume metrics apply to, in Unix time.

volume_statistics: Option<VolumeStatistics>

An object that contains inbox placement metrics for a specific day in the analysis period.

Trait Implementations

impl Clone for DailyVolume[src]

impl Debug for DailyVolume[src]

impl Default for DailyVolume[src]

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

impl PartialEq<DailyVolume> for DailyVolume[src]

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