pub enum SensitivityLevel {
Low,
Medium,
High,
}Expand description
Classification level for a detected pattern.
Variants§
Low
Low sensitivity – may produce false positives (e.g., phone numbers).
Medium
Medium sensitivity – likely PII (e.g., email addresses).
High
High sensitivity – definite PII/PHI (e.g., SSN, medical record numbers).
Trait Implementations§
Source§impl Clone for SensitivityLevel
impl Clone for SensitivityLevel
Source§fn clone(&self) -> SensitivityLevel
fn clone(&self) -> SensitivityLevel
Returns a duplicate 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 SensitivityLevel
impl Debug for SensitivityLevel
Source§impl PartialEq for SensitivityLevel
impl PartialEq for SensitivityLevel
impl Copy for SensitivityLevel
impl Eq for SensitivityLevel
impl StructuralPartialEq for SensitivityLevel
Auto Trait Implementations§
impl Freeze for SensitivityLevel
impl RefUnwindSafe for SensitivityLevel
impl Send for SensitivityLevel
impl Sync for SensitivityLevel
impl Unpin for SensitivityLevel
impl UnsafeUnpin for SensitivityLevel
impl UnwindSafe for SensitivityLevel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.