Struct google_gmailpostmastertools1::api::IpReputation[][src]

pub struct IpReputation {
    pub ip_count: Option<String>,
    pub reputation: Option<String>,
    pub sample_ips: Option<Vec<String>>,
}

IP Reputation information for a set of IPs in a specific reputation category.

This type is not used in any activity, and only used as part of another schema.

Fields

ip_count: Option<String>

Total number of unique IPs in this reputation category. This metric only pertains to traffic that passed SPF or DKIM.

reputation: Option<String>

The reputation category this IP reputation represents.

sample_ips: Option<Vec<String>>

A sample of IPs in this reputation category.

Trait Implementations

impl Clone for IpReputation[src]

impl Debug for IpReputation[src]

impl Default for IpReputation[src]

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

impl Part for IpReputation[src]

impl Serialize for IpReputation[src]

Auto Trait Implementations

impl RefUnwindSafe for IpReputation[src]

impl Send for IpReputation[src]

impl Sync for IpReputation[src]

impl Unpin for IpReputation[src]

impl UnwindSafe for IpReputation[src]

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> 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.