pub struct WeakPoint {
pub category: WeakPointCategory,
pub location: Option<String>,
pub severity: Severity,
pub description: String,
pub recommended_attack: Vec<AttackAxis>,
}Expand description
Known weak points in program behavior
Fields§
§category: WeakPointCategory§location: Option<String>§severity: Severity§description: String§recommended_attack: Vec<AttackAxis>Trait Implementations§
Source§impl<'de> Deserialize<'de> for WeakPoint
impl<'de> Deserialize<'de> for WeakPoint
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
Auto Trait Implementations§
impl Freeze for WeakPoint
impl RefUnwindSafe for WeakPoint
impl Send for WeakPoint
impl Sync for WeakPoint
impl Unpin for WeakPoint
impl UnsafeUnpin for WeakPoint
impl UnwindSafe for WeakPoint
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