pub struct SlicerSpec {
pub apply_to_pivot_tables: Option<bool>,
pub background_color: Option<Color>,
pub background_color_style: Option<ColorStyle>,
pub column_index: Option<i32>,
pub data_range: Option<GridRange>,
pub filter_criteria: Option<FilterCriteria>,
pub horizontal_alignment: Option<String>,
pub text_format: Option<TextFormat>,
pub title: Option<String>,
}
Expand description
The specifications of a slicer.
This type is not used in any activity, and only used as part of another schema.
Fields§
§apply_to_pivot_tables: Option<bool>
True if the filter should apply to pivot tables. If not set, default to True
.
background_color: Option<Color>
The background color of the slicer. Deprecated: Use background_color_style.
background_color_style: Option<ColorStyle>
The background color of the slicer. If background_color is also set, this field takes precedence.
column_index: Option<i32>
The zero-based column index in the data table on which the filter is applied to.
data_range: Option<GridRange>
The data range of the slicer.
filter_criteria: Option<FilterCriteria>
The filtering criteria of the slicer.
horizontal_alignment: Option<String>
The horizontal alignment of title in the slicer. If unspecified, defaults to LEFT
text_format: Option<TextFormat>
The text format of title in the slicer. The link field is not supported.
title: Option<String>
The title of the slicer.
Trait Implementations§
Source§impl Clone for SlicerSpec
impl Clone for SlicerSpec
Source§fn clone(&self) -> SlicerSpec
fn clone(&self) -> SlicerSpec
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SlicerSpec
impl Debug for SlicerSpec
Source§impl Default for SlicerSpec
impl Default for SlicerSpec
Source§fn default() -> SlicerSpec
fn default() -> SlicerSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SlicerSpec
impl<'de> Deserialize<'de> for SlicerSpec
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SlicerSpec
impl Serialize for SlicerSpec
impl Part for SlicerSpec
Auto Trait Implementations§
impl Freeze for SlicerSpec
impl RefUnwindSafe for SlicerSpec
impl Send for SlicerSpec
impl Sync for SlicerSpec
impl Unpin for SlicerSpec
impl UnwindSafe for SlicerSpec
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more