[][src]Struct google_partners2::AnalyticsDataPoint

pub struct AnalyticsDataPoint {
    pub event_locations: Option<Vec<LatLng>>,
    pub event_count: Option<i32>,
}

Details of the analytics events for a Company within a single day.

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

Fields

event_locations: Option<Vec<LatLng>>

Location information of where these events occurred.

event_count: Option<i32>

Number of times the type of event occurred. Meaning depends on context (e.g. profile views, contacts, etc.).

Trait Implementations

impl Clone for AnalyticsDataPoint[src]

impl Debug for AnalyticsDataPoint[src]

impl Default for AnalyticsDataPoint[src]

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

impl Part for AnalyticsDataPoint[src]

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