#[non_exhaustive]pub struct VisualCustomActionOperation { /* private fields */ }
Expand description
The operation that is defined by the custom action.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
Implementations§
source§impl VisualCustomActionOperation
impl VisualCustomActionOperation
sourcepub fn filter_operation(&self) -> Option<&CustomActionFilterOperation>
pub fn 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.
sourcepub fn url_operation(&self) -> Option<&CustomActionUrlOperation>
pub fn url_operation(&self) -> Option<&CustomActionUrlOperation>
The URL operation that opens a link to another webpage.
sourcepub fn set_parameters_operation(
&self
) -> Option<&CustomActionSetParametersOperation>
pub fn set_parameters_operation(
&self
) -> Option<&CustomActionSetParametersOperation>
The set parameter operation that sets parameters in custom action.
source§impl VisualCustomActionOperation
impl VisualCustomActionOperation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture VisualCustomActionOperation
.
Trait Implementations§
source§impl Clone for VisualCustomActionOperation
impl Clone for VisualCustomActionOperation
source§fn clone(&self) -> VisualCustomActionOperation
fn clone(&self) -> VisualCustomActionOperation
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 Debug for VisualCustomActionOperation
impl Debug for VisualCustomActionOperation
source§impl PartialEq<VisualCustomActionOperation> for VisualCustomActionOperation
impl PartialEq<VisualCustomActionOperation> for VisualCustomActionOperation
source§fn eq(&self, other: &VisualCustomActionOperation) -> bool
fn eq(&self, other: &VisualCustomActionOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.