pub struct MaskAuditEntry { /* private fields */ }Expand description
Masking audit entry: records a single masking operation
Implementations§
Source§impl MaskAuditEntry
impl MaskAuditEntry
Sourcepub fn original_len(&self) -> usize
pub fn original_len(&self) -> usize
Original value length
Sourcepub fn masked_len(&self) -> usize
pub fn masked_len(&self) -> usize
Masked length
Sourcepub fn was_truncated(&self) -> bool
pub fn was_truncated(&self) -> bool
Whether truncated (masked is shorter than original)
Trait Implementations§
Source§impl Clone for MaskAuditEntry
impl Clone for MaskAuditEntry
Source§fn clone(&self) -> MaskAuditEntry
fn clone(&self) -> MaskAuditEntry
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 moreAuto Trait Implementations§
impl Freeze for MaskAuditEntry
impl RefUnwindSafe for MaskAuditEntry
impl Send for MaskAuditEntry
impl Sync for MaskAuditEntry
impl Unpin for MaskAuditEntry
impl UnsafeUnpin for MaskAuditEntry
impl UnwindSafe for MaskAuditEntry
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