pub struct AttackVector {
pub vector_type: String,
pub entry_points: Vec<u64>,
pub vulnerable_path: Vec<u64>,
pub prerequisites: Vec<String>,
pub impact: String,
}Fields§
§vector_type: String§entry_points: Vec<u64>§vulnerable_path: Vec<u64>§prerequisites: Vec<String>§impact: StringTrait Implementations§
Source§impl Clone for AttackVector
impl Clone for AttackVector
Source§fn clone(&self) -> AttackVector
fn clone(&self) -> AttackVector
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 AttackVector
impl Debug for AttackVector
Source§impl<'de> Deserialize<'de> for AttackVector
impl<'de> Deserialize<'de> for AttackVector
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 AttackVector
impl RefUnwindSafe for AttackVector
impl Send for AttackVector
impl Sync for AttackVector
impl Unpin for AttackVector
impl UnwindSafe for AttackVector
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