#[non_exhaustive]pub struct SheetVisualScopingConfigurationBuilder { /* private fields */ }Expand description
A builder for SheetVisualScopingConfiguration.
Implementations§
source§impl SheetVisualScopingConfigurationBuilder
impl SheetVisualScopingConfigurationBuilder
sourcepub fn sheet_id(self, input: impl Into<String>) -> Self
pub fn sheet_id(self, input: impl Into<String>) -> Self
The selected sheet that the filter is applied to.
sourcepub fn set_sheet_id(self, input: Option<String>) -> Self
pub fn set_sheet_id(self, input: Option<String>) -> Self
The selected sheet that the filter is applied to.
sourcepub fn scope(self, input: FilterVisualScope) -> Self
pub fn scope(self, input: FilterVisualScope) -> Self
The scope of the applied entities. Choose one of the following options:
-
ALL_VISUALS -
SELECTED_VISUALS
sourcepub fn set_scope(self, input: Option<FilterVisualScope>) -> Self
pub fn set_scope(self, input: Option<FilterVisualScope>) -> Self
The scope of the applied entities. Choose one of the following options:
-
ALL_VISUALS -
SELECTED_VISUALS
sourcepub fn visual_ids(self, input: impl Into<String>) -> Self
pub fn visual_ids(self, input: impl Into<String>) -> Self
Appends an item to visual_ids.
To override the contents of this collection use set_visual_ids.
The selected visuals that the filter is applied to.
sourcepub fn set_visual_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_visual_ids(self, input: Option<Vec<String>>) -> Self
The selected visuals that the filter is applied to.
sourcepub fn build(self) -> SheetVisualScopingConfiguration
pub fn build(self) -> SheetVisualScopingConfiguration
Consumes the builder and constructs a SheetVisualScopingConfiguration.
Trait Implementations§
source§impl Clone for SheetVisualScopingConfigurationBuilder
impl Clone for SheetVisualScopingConfigurationBuilder
source§fn clone(&self) -> SheetVisualScopingConfigurationBuilder
fn clone(&self) -> SheetVisualScopingConfigurationBuilder
Returns a copy 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 Default for SheetVisualScopingConfigurationBuilder
impl Default for SheetVisualScopingConfigurationBuilder
source§fn default() -> SheetVisualScopingConfigurationBuilder
fn default() -> SheetVisualScopingConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SheetVisualScopingConfigurationBuilder> for SheetVisualScopingConfigurationBuilder
impl PartialEq<SheetVisualScopingConfigurationBuilder> for SheetVisualScopingConfigurationBuilder
source§fn eq(&self, other: &SheetVisualScopingConfigurationBuilder) -> bool
fn eq(&self, other: &SheetVisualScopingConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SheetVisualScopingConfigurationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for SheetVisualScopingConfigurationBuilder
impl Send for SheetVisualScopingConfigurationBuilder
impl Sync for SheetVisualScopingConfigurationBuilder
impl Unpin for SheetVisualScopingConfigurationBuilder
impl UnwindSafe for SheetVisualScopingConfigurationBuilder
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