pub enum ImpactClass {
Low,
Medium,
High,
}Expand description
Classification of leak impact, independent of confidence.
Determines severity when gated by confidence threshold. Computed from the peak leak type
among validated signals — existence-only is Low, metadata disclosure is Medium, sensitive
metadata (exact sizes, internal state) is High.
Variants§
Low
Existence confirmed, no metadata disclosed.
Medium
Metadata disclosed (validators, auth scheme, timing).
High
Sensitive metadata disclosed (exact size, internal state).
Trait Implementations§
Source§impl Clone for ImpactClass
impl Clone for ImpactClass
Source§fn clone(&self) -> ImpactClass
fn clone(&self) -> ImpactClass
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 ImpactClass
impl Debug for ImpactClass
Source§impl<'de> Deserialize<'de> for ImpactClass
impl<'de> Deserialize<'de> for ImpactClass
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ImpactClass
impl Display for ImpactClass
Source§impl Hash for ImpactClass
impl Hash for ImpactClass
Source§impl PartialEq for ImpactClass
impl PartialEq for ImpactClass
Source§fn eq(&self, other: &ImpactClass) -> bool
fn eq(&self, other: &ImpactClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImpactClass
impl Serialize for ImpactClass
impl Copy for ImpactClass
impl Eq for ImpactClass
impl StructuralPartialEq for ImpactClass
Auto Trait Implementations§
impl Freeze for ImpactClass
impl RefUnwindSafe for ImpactClass
impl Send for ImpactClass
impl Sync for ImpactClass
impl Unpin for ImpactClass
impl UnsafeUnpin for ImpactClass
impl UnwindSafe for ImpactClass
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