pub struct MaskingStats { /* private fields */ }Expand description
Masking statistics: tracks masking operation count per field
Implementations§
Source§impl MaskingStats
impl MaskingStats
Sourcepub fn total_operations(&self) -> u64
pub fn total_operations(&self) -> u64
Total operation count
Sourcepub fn field_operations(&self, field: &str) -> u64
pub fn field_operations(&self, field: &str) -> u64
Operation count for a field
Sourcepub fn most_masked_field(&self) -> Option<&str>
pub fn most_masked_field(&self) -> Option<&str>
Field with most operations
Trait Implementations§
Source§impl Clone for MaskingStats
impl Clone for MaskingStats
Source§fn clone(&self) -> MaskingStats
fn clone(&self) -> MaskingStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MaskingStats
impl Debug for MaskingStats
Source§impl Default for MaskingStats
impl Default for MaskingStats
Source§fn default() -> MaskingStats
fn default() -> MaskingStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MaskingStats
impl RefUnwindSafe for MaskingStats
impl Send for MaskingStats
impl Sync for MaskingStats
impl Unpin for MaskingStats
impl UnsafeUnpin for MaskingStats
impl UnwindSafe for MaskingStats
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