pub struct SafeAuditField {
pub name: String,
pub value: Option<String>,
pub masked: bool,
pub truncated: bool,
pub raw_length: Option<usize>,
pub output_length: Option<usize>,
pub mask_reason: Option<String>,
pub truncate_reason: Option<String>,
}Fields§
§name: String§value: Option<String>§masked: bool§truncated: bool§raw_length: Option<usize>§output_length: Option<usize>§mask_reason: Option<String>§truncate_reason: Option<String>Trait Implementations§
Source§impl Clone for SafeAuditField
impl Clone for SafeAuditField
Source§fn clone(&self) -> SafeAuditField
fn clone(&self) -> SafeAuditField
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 SafeAuditField
impl Debug for SafeAuditField
Source§impl PartialEq for SafeAuditField
impl PartialEq for SafeAuditField
Source§fn eq(&self, other: &SafeAuditField) -> bool
fn eq(&self, other: &SafeAuditField) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SafeAuditField
Auto Trait Implementations§
impl Freeze for SafeAuditField
impl RefUnwindSafe for SafeAuditField
impl Send for SafeAuditField
impl Sync for SafeAuditField
impl Unpin for SafeAuditField
impl UnsafeUnpin for SafeAuditField
impl UnwindSafe for SafeAuditField
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