pub enum EntryMasking {
PlaceHolder,
None,
}
Expand description
types of masking to apply when parsing SQL statements
- PlaceHolder - mask all sql values with a ‘?’ placeholder
- None - leave all values in place
Variants§
Trait Implementations§
Source§impl Clone for EntryMasking
impl Clone for EntryMasking
Source§fn clone(&self) -> EntryMasking
fn clone(&self) -> EntryMasking
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 EntryMasking
impl Debug for EntryMasking
Source§impl Default for EntryMasking
impl Default for EntryMasking
Source§impl PartialEq for EntryMasking
impl PartialEq for EntryMasking
impl Copy for EntryMasking
impl StructuralPartialEq for EntryMasking
Auto Trait Implementations§
impl Freeze for EntryMasking
impl RefUnwindSafe for EntryMasking
impl Send for EntryMasking
impl Sync for EntryMasking
impl Unpin for EntryMasking
impl UnwindSafe for EntryMasking
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