pub struct Builder { /* private fields */ }
Expand description
A builder for SameSheetTargetVisualConfiguration
.
Implementations§
source§impl Builder
impl Builder
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 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 build(self) -> SameSheetTargetVisualConfiguration
pub fn build(self) -> SameSheetTargetVisualConfiguration
Consumes the builder and constructs a SameSheetTargetVisualConfiguration
.