Struct google_gmailpostmastertools1_beta1::api::TrafficStats[][src]

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

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.

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.

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.

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.

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.

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

outbound_encryption_ratio: Option<f64>

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

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.

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.

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.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.