[][src]Struct google_urlshortener1::AnalyticsSnapshot

pub struct AnalyticsSnapshot {
    pub short_url_clicks: Option<String>,
    pub platforms: Option<Vec<StringCount>>,
    pub browsers: Option<Vec<StringCount>>,
    pub countries: Option<Vec<StringCount>>,
    pub referrers: Option<Vec<StringCount>>,
    pub long_url_clicks: Option<String>,
}

There is no detailed description.

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

Fields

short_url_clicks: Option<String>

Number of clicks on this short URL.

platforms: Option<Vec<StringCount>>

Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.

browsers: Option<Vec<StringCount>>

Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.

countries: Option<Vec<StringCount>>

Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.

referrers: Option<Vec<StringCount>>

Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.

long_url_clicks: Option<String>

Number of clicks on all goo.gl short URLs pointing to this long URL.

Trait Implementations

impl Clone for AnalyticsSnapshot[src]

impl Debug for AnalyticsSnapshot[src]

impl Default for AnalyticsSnapshot[src]

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

impl Part for AnalyticsSnapshot[src]

impl Serialize for AnalyticsSnapshot[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