[][src]Struct google_mybusiness4::LocationMetrics

pub struct LocationMetrics {
    pub location_name: Option<String>,
    pub time_zone: Option<String>,
    pub metric_values: Option<Vec<MetricValue>>,
}

A series of Metrics and BreakdownMetrics associated with a Location over some time range.

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

Fields

location_name: Option<String>

The location resource name these values belong to.

time_zone: Option<String>

IANA timezone for the location.

metric_values: Option<Vec<MetricValue>>

A list of values for the requested metrics.

Trait Implementations

impl Clone for LocationMetrics[src]

impl Debug for LocationMetrics[src]

impl Default for LocationMetrics[src]

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

impl Part for LocationMetrics[src]

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