pub struct ParsedAttachMaskingPolicy {
pub table_name: String,
pub column_name: String,
pub policy_name: String,
}Expand description
Parsed ALTER TABLE <t> ALTER COLUMN <c> SET MASKING POLICY <policy> statement.
Fields§
§table_name: StringTarget table name.
column_name: StringTarget column name.
policy_name: StringName of the policy to attach (must already exist in the tenant’s catalogue).
Trait Implementations§
Source§impl Clone for ParsedAttachMaskingPolicy
impl Clone for ParsedAttachMaskingPolicy
Source§fn clone(&self) -> ParsedAttachMaskingPolicy
fn clone(&self) -> ParsedAttachMaskingPolicy
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 ParsedAttachMaskingPolicy
impl RefUnwindSafe for ParsedAttachMaskingPolicy
impl Send for ParsedAttachMaskingPolicy
impl Sync for ParsedAttachMaskingPolicy
impl Unpin for ParsedAttachMaskingPolicy
impl UnsafeUnpin for ParsedAttachMaskingPolicy
impl UnwindSafe for ParsedAttachMaskingPolicy
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