#[non_exhaustive]pub struct VisualCustomActionOperationBuilder { /* private fields */ }Expand description
A builder for VisualCustomActionOperation.
Implementations§
source§impl VisualCustomActionOperationBuilder
impl VisualCustomActionOperationBuilder
sourcepub fn filter_operation(self, input: CustomActionFilterOperation) -> Self
pub fn filter_operation(self, input: CustomActionFilterOperation) -> Self
The filter operation that filters data included in a visual or in an entire sheet.
sourcepub fn set_filter_operation(
self,
input: Option<CustomActionFilterOperation>,
) -> Self
pub fn set_filter_operation( self, input: Option<CustomActionFilterOperation>, ) -> Self
The filter operation that filters data included in a visual or in an entire sheet.
sourcepub fn get_filter_operation(&self) -> &Option<CustomActionFilterOperation>
pub fn get_filter_operation(&self) -> &Option<CustomActionFilterOperation>
The filter operation that filters data included in a visual or in an entire sheet.
The navigation operation that navigates between different sheets in the same analysis.
The navigation operation that navigates between different sheets in the same analysis.
The navigation operation that navigates between different sheets in the same analysis.
sourcepub fn url_operation(self, input: CustomActionUrlOperation) -> Self
pub fn url_operation(self, input: CustomActionUrlOperation) -> Self
The URL operation that opens a link to another webpage.
sourcepub fn set_url_operation(self, input: Option<CustomActionUrlOperation>) -> Self
pub fn set_url_operation(self, input: Option<CustomActionUrlOperation>) -> Self
The URL operation that opens a link to another webpage.
sourcepub fn get_url_operation(&self) -> &Option<CustomActionUrlOperation>
pub fn get_url_operation(&self) -> &Option<CustomActionUrlOperation>
The URL operation that opens a link to another webpage.
sourcepub fn set_parameters_operation(
self,
input: CustomActionSetParametersOperation,
) -> Self
pub fn set_parameters_operation( self, input: CustomActionSetParametersOperation, ) -> Self
The set parameter operation that sets parameters in custom action.
sourcepub fn set_set_parameters_operation(
self,
input: Option<CustomActionSetParametersOperation>,
) -> Self
pub fn set_set_parameters_operation( self, input: Option<CustomActionSetParametersOperation>, ) -> Self
The set parameter operation that sets parameters in custom action.
sourcepub fn get_set_parameters_operation(
&self,
) -> &Option<CustomActionSetParametersOperation>
pub fn get_set_parameters_operation( &self, ) -> &Option<CustomActionSetParametersOperation>
The set parameter operation that sets parameters in custom action.
sourcepub fn build(self) -> VisualCustomActionOperation
pub fn build(self) -> VisualCustomActionOperation
Consumes the builder and constructs a VisualCustomActionOperation.
Trait Implementations§
source§impl Clone for VisualCustomActionOperationBuilder
impl Clone for VisualCustomActionOperationBuilder
source§fn clone(&self) -> VisualCustomActionOperationBuilder
fn clone(&self) -> VisualCustomActionOperationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for VisualCustomActionOperationBuilder
impl Default for VisualCustomActionOperationBuilder
source§fn default() -> VisualCustomActionOperationBuilder
fn default() -> VisualCustomActionOperationBuilder
source§impl PartialEq for VisualCustomActionOperationBuilder
impl PartialEq for VisualCustomActionOperationBuilder
source§fn eq(&self, other: &VisualCustomActionOperationBuilder) -> bool
fn eq(&self, other: &VisualCustomActionOperationBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VisualCustomActionOperationBuilder
Auto Trait Implementations§
impl Freeze for VisualCustomActionOperationBuilder
impl RefUnwindSafe for VisualCustomActionOperationBuilder
impl Send for VisualCustomActionOperationBuilder
impl Sync for VisualCustomActionOperationBuilder
impl Unpin for VisualCustomActionOperationBuilder
impl UnwindSafe for VisualCustomActionOperationBuilder
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