Struct google_analyticsdata1_beta::api::PivotOrderBy[][src]

pub struct PivotOrderBy {
    pub metric_name: Option<String>,
    pub pivot_selections: Option<Vec<PivotSelection>>,
}

Sorts by a pivot column group.

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

Fields

metric_name: Option<String>

In the response to order by, order rows by this column. Must be a metric name from the request.

pivot_selections: Option<Vec<PivotSelection>>

Used to select a dimension name and value pivot. If multiple pivot selections are given, the sort occurs on rows where all pivot selection dimension name and value pairs match the row's dimension name and value pair.

Trait Implementations

impl Clone for PivotOrderBy[src]

impl Debug for PivotOrderBy[src]

impl Default for PivotOrderBy[src]

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

impl Part for PivotOrderBy[src]

impl Serialize for PivotOrderBy[src]

Auto Trait Implementations

impl RefUnwindSafe for PivotOrderBy[src]

impl Send for PivotOrderBy[src]

impl Sync for PivotOrderBy[src]

impl Unpin for PivotOrderBy[src]

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