[][src]Struct google_sheets4::PivotGroupSortValueBucket

pub struct PivotGroupSortValueBucket {
    pub buckets: Option<Vec<ExtendedValue>>,
    pub values_index: Option<i32>,
}

Information about which values in a pivot group should be used for sorting.

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

Fields

buckets: Option<Vec<ExtendedValue>>

Determines the bucket from which values are chosen to sort.

For example, in a pivot table with one row group & two column groups, the row group can list up to two values. The first value corresponds to a value within the first column group, and the second value corresponds to a value in the second column group. If no values are listed, this would indicate that the row should be sorted according to the "Grand Total" over the column groups. If a single value is listed, this would correspond to using the "Total" of that bucket.

values_index: Option<i32>

The offset in the PivotTable.values list which the values in this grouping should be sorted by.

Trait Implementations

impl Clone for PivotGroupSortValueBucket[src]

impl Debug for PivotGroupSortValueBucket[src]

impl Default for PivotGroupSortValueBucket[src]

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

impl Part for PivotGroupSortValueBucket[src]

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