#[non_exhaustive]pub struct FilterOperationSelectedFieldsConfiguration { /* private fields */ }
Expand description
The configuration of selected fields in theCustomActionFilterOperation
.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
Implementations§
source§impl FilterOperationSelectedFieldsConfiguration
impl FilterOperationSelectedFieldsConfiguration
sourcepub fn selected_fields(&self) -> Option<&[String]>
pub fn selected_fields(&self) -> Option<&[String]>
Chooses the fields that are filtered in CustomActionFilterOperation
.
sourcepub fn selected_field_options(&self) -> Option<&SelectedFieldOptions>
pub fn selected_field_options(&self) -> Option<&SelectedFieldOptions>
A structure that contains the options that choose which fields are filtered in the CustomActionFilterOperation
.
Valid values are defined as follows:
-
ALL_FIELDS
: Applies the filter operation to all fields.
source§impl FilterOperationSelectedFieldsConfiguration
impl FilterOperationSelectedFieldsConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FilterOperationSelectedFieldsConfiguration
.
Trait Implementations§
source§impl Clone for FilterOperationSelectedFieldsConfiguration
impl Clone for FilterOperationSelectedFieldsConfiguration
source§fn clone(&self) -> FilterOperationSelectedFieldsConfiguration
fn clone(&self) -> FilterOperationSelectedFieldsConfiguration
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 PartialEq<FilterOperationSelectedFieldsConfiguration> for FilterOperationSelectedFieldsConfiguration
impl PartialEq<FilterOperationSelectedFieldsConfiguration> for FilterOperationSelectedFieldsConfiguration
source§fn eq(&self, other: &FilterOperationSelectedFieldsConfiguration) -> bool
fn eq(&self, other: &FilterOperationSelectedFieldsConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.