[][src]Struct google_gmailpostmastertools1_beta1::TrafficStats

pub struct TrafficStats {
    pub delivery_errors: Option<Vec<DeliveryError>>,
    pub name: Option<String>,
    pub ip_reputations: Option<Vec<IpReputation>>,
    pub user_reported_spam_ratio: Option<f64>,
    pub domain_reputation: Option<String>,
    pub inbound_encryption_ratio: Option<f64>,
    pub dmarc_success_ratio: Option<f64>,
    pub spammy_feedback_loops: Option<Vec<FeedbackLoop>>,
    pub outbound_encryption_ratio: Option<f64>,
    pub spf_success_ratio: Option<f64>,
    pub dkim_success_ratio: Option<f64>,
}

Email traffic statistics pertaining to a specific date.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

delivery_errors: Option<Vec<DeliveryError>>

Delivery errors for the domain. This metric only pertains to traffic that passed SPF or DKIM.

name: Option<String>

The resource name of the traffic statistics. Traffic statistic names have the form domains/{domain}/trafficStats/{date}, where domain_name is the fully qualified domain name (i.e., mymail.mydomain.com) of the domain this traffic statistics pertains to and date is the date in yyyymmdd format that these statistics corresponds to. For example: domains/mymail.mydomain.com/trafficStats/20160807

ip_reputations: Option<Vec<IpReputation>>

Reputation information pertaining to the IP addresses of the email servers for the domain. There is exactly one entry for each reputation category except REPUTATION_CATEGORY_UNSPECIFIED.

user_reported_spam_ratio: Option<f64>

The ratio of user-report spam vs. email that was sent to the inbox. This metric only pertains to emails authenticated by DKIM.

domain_reputation: Option<String>

Reputation of the domain.

inbound_encryption_ratio: Option<f64>

The ratio of incoming mail (to Gmail), that passed secure transport (TLS) vs all mail received from that domain. This metric only pertains to traffic that passed SPF or DKIM.

dmarc_success_ratio: Option<f64>

The ratio of mail that passed DMARC alignment checks vs all mail received from the domain that successfully authenticated with either of SPF or DKIM.

spammy_feedback_loops: Option<Vec<FeedbackLoop>>

Spammy [Feedback loop identifiers] (https://support.google.com/mail/answer/6254652) with their individual spam rates. This metric only pertains to traffic that is authenticated by DKIM.

outbound_encryption_ratio: Option<f64>

The ratio of outgoing mail (from Gmail) that was accepted over secure transport (TLS).

spf_success_ratio: Option<f64>

The ratio of mail that successfully authenticated with SPF vs. all mail that attempted to authenticate with SPF. Spoofed mail is excluded.

dkim_success_ratio: Option<f64>

The ratio of mail that successfully authenticated with DKIM vs. all mail that attempted to authenticate with DKIM. Spoofed mail is excluded.

Trait Implementations

impl Clone for TrafficStats[src]

impl Debug for TrafficStats[src]

impl Default for TrafficStats[src]

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

impl ResponseResult for TrafficStats[src]

impl Serialize for TrafficStats[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Typeable for T where
    T: Any