Struct google_analyticsdata1_beta::api::Row[][src]

pub struct Row {
    pub dimension_values: Option<Vec<DimensionValue>>,
    pub metric_values: Option<Vec<MetricValue>>,
}

Report data for each row. For example if RunReportRequest contains: none "dimensions": [ { "name": "eventName" }, { "name": "countryId" } ], "metrics": [ { "name": "eventCount" } ] One row with 'in_app_purchase' as the eventName, 'JP' as the countryId, and 15 as the eventCount, would be: none "dimensionValues": [ { "value": "in_app_purchase" }, { "value": "JP" } ], "metricValues": [ { "value": "15" } ]

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

Fields

dimension_values: Option<Vec<DimensionValue>>

List of requested dimension values. In a PivotReport, dimension_values are only listed for dimensions included in a pivot.

metric_values: Option<Vec<MetricValue>>

List of requested visible metric values.

Trait Implementations

impl Clone for Row[src]

impl Debug for Row[src]

impl Default for Row[src]

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

impl Part for Row[src]

impl Serialize for Row[src]

Auto Trait Implementations

impl RefUnwindSafe for Row[src]

impl Send for Row[src]

impl Sync for Row[src]

impl Unpin for Row[src]

impl UnwindSafe for Row[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.