Struct google_sheets4::api::PivotGroupLimit[][src]

pub struct PivotGroupLimit {
    pub apply_order: Option<i32>,
    pub count_limit: Option<i32>,
}

The count limit on rows or columns in the pivot group.

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

Fields

apply_order: Option<i32>

The order in which the group limit is applied to the pivot table. Pivot group limits are applied from lower to higher order number. Order numbers are normalized to consecutive integers from 0. For write request, to fully customize the applying orders, all pivot group limits should have this field set with an unique number. Otherwise, the order is determined by the index in the PivotTable.rows list and then the PivotTable.columns list.

count_limit: Option<i32>

The count limit.

Trait Implementations

impl Clone for PivotGroupLimit[src]

impl Debug for PivotGroupLimit[src]

impl Default for PivotGroupLimit[src]

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

impl Part for PivotGroupLimit[src]

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