Struct google_sheets4::api::PivotFilterCriteria [−][src]
Criteria for showing/hiding rows in a pivot table.
This type is not used in any activity, and only used as part of another schema.
Fields
condition: Option<BooleanCondition>A condition that must be true for values to be shown. (visibleValues does not override this – even if a value is listed there, it is still hidden if it does not meet the condition.) Condition values that refer to ranges in A1-notation are evaluated relative to the pivot table sheet. References are treated absolutely, so are not filled down the pivot table. For example, a condition value of =A1 on “Pivot Table 1” is treated as 'Pivot Table 1'!$A$1. The source data of the pivot table can be referenced by column header name. For example, if the source data has columns named “Revenue” and “Cost” and a condition is applied to the “Revenue” column with type NUMBER_GREATER and value =Cost, then only columns where “Revenue” > “Cost” are included.
visible_by_default: Option<bool>Whether values are visible by default. If true, the visible_values are ignored, all values that meet condition (if specified) are shown. If false, values that are both in visible_values and meet condition are shown.
visible_values: Option<Vec<String>>Values that should be included. Values not listed here are excluded.
Trait Implementations
impl Clone for PivotFilterCriteria[src]
fn clone(&self) -> PivotFilterCriteria[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for PivotFilterCriteria[src]
impl Default for PivotFilterCriteria[src]
fn default() -> PivotFilterCriteria[src]
impl<'de> Deserialize<'de> for PivotFilterCriteria[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for PivotFilterCriteria[src]
impl Serialize for PivotFilterCriteria[src]
Auto Trait Implementations
impl RefUnwindSafe for PivotFilterCriteria
impl Send for PivotFilterCriteria
impl Sync for PivotFilterCriteria
impl Unpin for PivotFilterCriteria
impl UnwindSafe for PivotFilterCriteria
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,