[][src]Struct google_sheets4::PivotGroupRule

pub struct PivotGroupRule {
    pub histogram_rule: Option<HistogramRule>,
    pub manual_rule: Option<ManualRule>,
    pub date_time_rule: Option<DateTimeRule>,
}

An optional setting on a PivotGroup that defines buckets for the values in the source data column rather than breaking out each individual value. Only one PivotGroup with a group rule may be added for each column in the source data, though on any given column you may add both a PivotGroup that has a rule and a PivotGroup that does not.

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

Fields

histogram_rule: Option<HistogramRule>

A HistogramRule.

manual_rule: Option<ManualRule>

A ManualRule.

date_time_rule: Option<DateTimeRule>

A DateTimeRule.

Trait Implementations

impl Clone for PivotGroupRule[src]

impl Debug for PivotGroupRule[src]

impl Default for PivotGroupRule[src]

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

impl Part for PivotGroupRule[src]

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