pub struct FieldPatterns {
pub items: Option<Vec<String>>,
pub quantity: i64,
}
Expand description
A complex data type that includes the field patterns to match for field-level encryption.
Fields§
§items: Option<Vec<String>>
An array of the field-level encryption field patterns.
quantity: i64
The number of field-level encryption field patterns.
Trait Implementations§
Source§impl Clone for FieldPatterns
impl Clone for FieldPatterns
Source§fn clone(&self) -> FieldPatterns
fn clone(&self) -> FieldPatterns
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 Debug for FieldPatterns
impl Debug for FieldPatterns
Source§impl Default for FieldPatterns
impl Default for FieldPatterns
Source§fn default() -> FieldPatterns
fn default() -> FieldPatterns
Returns the “default value” for a type. Read more
Source§impl PartialEq for FieldPatterns
impl PartialEq for FieldPatterns
impl StructuralPartialEq for FieldPatterns
Auto Trait Implementations§
impl Freeze for FieldPatterns
impl RefUnwindSafe for FieldPatterns
impl Send for FieldPatterns
impl Sync for FieldPatterns
impl Unpin for FieldPatterns
impl UnwindSafe for FieldPatterns
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