#[non_exhaustive]pub struct SameSheetTargetVisualConfigurationBuilder { /* private fields */ }Expand description
A builder for SameSheetTargetVisualConfiguration.
Implementations§
source§impl SameSheetTargetVisualConfigurationBuilder
impl SameSheetTargetVisualConfigurationBuilder
sourcepub fn target_visuals(self, input: impl Into<String>) -> Self
pub fn target_visuals(self, input: impl Into<String>) -> Self
Appends an item to target_visuals.
To override the contents of this collection use set_target_visuals.
A list of the target visual IDs that are located in the same sheet of the analysis.
sourcepub fn set_target_visuals(self, input: Option<Vec<String>>) -> Self
pub fn set_target_visuals(self, input: Option<Vec<String>>) -> Self
A list of the target visual IDs that are located in the same sheet of the analysis.
sourcepub fn get_target_visuals(&self) -> &Option<Vec<String>>
pub fn get_target_visuals(&self) -> &Option<Vec<String>>
A list of the target visual IDs that are located in the same sheet of the analysis.
sourcepub fn target_visual_options(self, input: TargetVisualOptions) -> Self
pub fn target_visual_options(self, input: TargetVisualOptions) -> Self
The options that choose the target visual in the same sheet.
Valid values are defined as follows:
-
ALL_VISUALS: Applies the filter operation to all visuals in the same sheet.
sourcepub fn set_target_visual_options(
self,
input: Option<TargetVisualOptions>,
) -> Self
pub fn set_target_visual_options( self, input: Option<TargetVisualOptions>, ) -> Self
The options that choose the target visual in the same sheet.
Valid values are defined as follows:
-
ALL_VISUALS: Applies the filter operation to all visuals in the same sheet.
sourcepub fn get_target_visual_options(&self) -> &Option<TargetVisualOptions>
pub fn get_target_visual_options(&self) -> &Option<TargetVisualOptions>
The options that choose the target visual in the same sheet.
Valid values are defined as follows:
-
ALL_VISUALS: Applies the filter operation to all visuals in the same sheet.
sourcepub fn build(self) -> SameSheetTargetVisualConfiguration
pub fn build(self) -> SameSheetTargetVisualConfiguration
Consumes the builder and constructs a SameSheetTargetVisualConfiguration.
Trait Implementations§
source§impl Clone for SameSheetTargetVisualConfigurationBuilder
impl Clone for SameSheetTargetVisualConfigurationBuilder
source§fn clone(&self) -> SameSheetTargetVisualConfigurationBuilder
fn clone(&self) -> SameSheetTargetVisualConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for SameSheetTargetVisualConfigurationBuilder
impl Default for SameSheetTargetVisualConfigurationBuilder
source§fn default() -> SameSheetTargetVisualConfigurationBuilder
fn default() -> SameSheetTargetVisualConfigurationBuilder
source§impl PartialEq for SameSheetTargetVisualConfigurationBuilder
impl PartialEq for SameSheetTargetVisualConfigurationBuilder
source§fn eq(&self, other: &SameSheetTargetVisualConfigurationBuilder) -> bool
fn eq(&self, other: &SameSheetTargetVisualConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SameSheetTargetVisualConfigurationBuilder
Auto Trait Implementations§
impl Freeze for SameSheetTargetVisualConfigurationBuilder
impl RefUnwindSafe for SameSheetTargetVisualConfigurationBuilder
impl Send for SameSheetTargetVisualConfigurationBuilder
impl Sync for SameSheetTargetVisualConfigurationBuilder
impl Unpin for SameSheetTargetVisualConfigurationBuilder
impl UnwindSafe for SameSheetTargetVisualConfigurationBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
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>
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