pub enum PassThroughReason {
Allowed,
Unknown,
}Expand description
Reason a field value was retained without masking.
Variants§
Allowed
An application allow rule permitted the field.
Unknown
No rule classified the field and the fallback is pass-through.
Trait Implementations§
Source§impl Clone for PassThroughReason
impl Clone for PassThroughReason
Source§fn clone(&self) -> PassThroughReason
fn clone(&self) -> PassThroughReason
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 moreimpl Copy for PassThroughReason
Source§impl Debug for PassThroughReason
impl Debug for PassThroughReason
impl Eq for PassThroughReason
Source§impl Hash for PassThroughReason
impl Hash for PassThroughReason
Source§impl PartialEq for PassThroughReason
impl PartialEq for PassThroughReason
impl StructuralPartialEq for PassThroughReason
Auto Trait Implementations§
impl Freeze for PassThroughReason
impl RefUnwindSafe for PassThroughReason
impl Send for PassThroughReason
impl Sync for PassThroughReason
impl Unpin for PassThroughReason
impl UnsafeUnpin for PassThroughReason
impl UnwindSafe for PassThroughReason
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