[][src]Struct rusoto_pinpoint_email::GetDomainStatisticsReportRequest

pub struct GetDomainStatisticsReportRequest {
    pub domain: String,
    pub end_date: f64,
    pub start_date: f64,
}

A request to obtain deliverability metrics for a domain.

Fields

domain: String

The domain that you want to obtain deliverability metrics for.

end_date: f64

The last day (in Unix time) that you want to obtain domain deliverability metrics for. The EndDate that you specify has to be less than or equal to 30 days after the StartDate.

start_date: f64

The first day (in Unix time) that you want to obtain domain deliverability metrics for.

Trait Implementations

impl Clone for GetDomainStatisticsReportRequest[src]

impl Debug for GetDomainStatisticsReportRequest[src]

impl Default for GetDomainStatisticsReportRequest[src]

impl PartialEq<GetDomainStatisticsReportRequest> for GetDomainStatisticsReportRequest[src]

impl Serialize for GetDomainStatisticsReportRequest[src]

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