pub struct ParsedCreateMask {
pub mask_name: String,
pub table_name: String,
pub column_name: String,
pub strategy: String,
}Expand description
Parsed CREATE MASK <name> ON <table>.<column> USING <strategy> statement.
Fields§
§mask_name: StringMask name (e.g. “ssn_mask”).
table_name: StringTable name.
column_name: StringColumn name.
strategy: StringMasking strategy keyword (e.g. “REDACT”, “HASH”, “TOKENIZE”, “NULL”).
Trait Implementations§
Source§impl Clone for ParsedCreateMask
impl Clone for ParsedCreateMask
Source§fn clone(&self) -> ParsedCreateMask
fn clone(&self) -> ParsedCreateMask
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 moreAuto Trait Implementations§
impl Freeze for ParsedCreateMask
impl RefUnwindSafe for ParsedCreateMask
impl Send for ParsedCreateMask
impl Sync for ParsedCreateMask
impl Unpin for ParsedCreateMask
impl UnsafeUnpin for ParsedCreateMask
impl UnwindSafe for ParsedCreateMask
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