#[non_exhaustive]pub enum MaskingExpression {
PredefinedExpression(PredefinedExpression),
Routine(String),
}Expand description
A masking expression to bind to the data masking rule.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PredefinedExpression(PredefinedExpression)
A predefined masking expression.
Routine(String)
The name of the BigQuery routine that contains the custom masking
routine, in the format of
projects/{project_number}/datasets/{dataset_id}/routines/{routine_id}.
Trait Implementations§
Source§impl Clone for MaskingExpression
impl Clone for MaskingExpression
Source§fn clone(&self) -> MaskingExpression
fn clone(&self) -> MaskingExpression
Returns a duplicate 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 MaskingExpression
impl Debug for MaskingExpression
Source§impl PartialEq for MaskingExpression
impl PartialEq for MaskingExpression
impl StructuralPartialEq for MaskingExpression
Auto Trait Implementations§
impl Freeze for MaskingExpression
impl RefUnwindSafe for MaskingExpression
impl Send for MaskingExpression
impl Sync for MaskingExpression
impl Unpin for MaskingExpression
impl UnwindSafe for MaskingExpression
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
Mutably borrows from an owned value. Read more