Struct google_analyticsreporting4::PivotHeaderEntry[][src]

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

The values for the dimensions in the pivot.

The name of the dimensions in the pivot response.

The metric header for the metric in the pivot.

Trait Implementations

impl Default for PivotHeaderEntry
[src]

Returns the "default value" for a type. Read more

impl Clone for PivotHeaderEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PivotHeaderEntry
[src]

Formats the value using the given formatter. Read more

impl Part for PivotHeaderEntry
[src]

Auto Trait Implementations