#[non_exhaustive]pub struct RowLevelPermissionTagRule {
pub tag_key: Option<String>,
pub column_name: Option<String>,
pub tag_multi_value_delimiter: Option<String>,
pub match_all_value: Option<String>,
}
Expand description
A set of rules associated with a tag.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.tag_key: Option<String>
The unique key for a tag.
column_name: Option<String>
The column name that a tag key is assigned to.
tag_multi_value_delimiter: Option<String>
A string that you want to use to delimit the values when you pass the values at run time. For example, you can delimit the values with a comma.
match_all_value: Option<String>
A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one. For example, you can use an asterisk as your match all value.
Implementations
sourceimpl RowLevelPermissionTagRule
impl RowLevelPermissionTagRule
sourcepub fn column_name(&self) -> Option<&str>
pub fn column_name(&self) -> Option<&str>
The column name that a tag key is assigned to.
sourcepub fn tag_multi_value_delimiter(&self) -> Option<&str>
pub fn tag_multi_value_delimiter(&self) -> Option<&str>
A string that you want to use to delimit the values when you pass the values at run time. For example, you can delimit the values with a comma.
sourcepub fn match_all_value(&self) -> Option<&str>
pub fn match_all_value(&self) -> Option<&str>
A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one. For example, you can use an asterisk as your match all value.
sourceimpl RowLevelPermissionTagRule
impl RowLevelPermissionTagRule
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RowLevelPermissionTagRule
Trait Implementations
sourceimpl Clone for RowLevelPermissionTagRule
impl Clone for RowLevelPermissionTagRule
sourcefn clone(&self) -> RowLevelPermissionTagRule
fn clone(&self) -> RowLevelPermissionTagRule
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RowLevelPermissionTagRule
impl Debug for RowLevelPermissionTagRule
sourceimpl PartialEq<RowLevelPermissionTagRule> for RowLevelPermissionTagRule
impl PartialEq<RowLevelPermissionTagRule> for RowLevelPermissionTagRule
sourcefn eq(&self, other: &RowLevelPermissionTagRule) -> bool
fn eq(&self, other: &RowLevelPermissionTagRule) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RowLevelPermissionTagRule) -> bool
fn ne(&self, other: &RowLevelPermissionTagRule) -> bool
This method tests for !=
.
impl StructuralPartialEq for RowLevelPermissionTagRule
Auto Trait Implementations
impl RefUnwindSafe for RowLevelPermissionTagRule
impl Send for RowLevelPermissionTagRule
impl Sync for RowLevelPermissionTagRule
impl Unpin for RowLevelPermissionTagRule
impl UnwindSafe for RowLevelPermissionTagRule
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more