[][src]Struct google_analyticsreporting4::PivotHeaderEntry

pub struct PivotHeaderEntry {
    pub dimension_values: Option<Vec<String>>,
    pub dimension_names: Option<Vec<String>>,
    pub metric: Option<MetricHeaderEntry>,
}

The headers for the each of the metric column corresponding to the metrics requested in the pivots section of the response.

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

Fields

dimension_values: Option<Vec<String>>

The values for the dimensions in the pivot.

dimension_names: Option<Vec<String>>

The name of the dimensions in the pivot response.

metric: Option<MetricHeaderEntry>

The metric header for the metric in the pivot.

Trait Implementations

impl Clone for PivotHeaderEntry[src]

impl Debug for PivotHeaderEntry[src]

impl Default for PivotHeaderEntry[src]

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

impl Part for PivotHeaderEntry[src]

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