pub struct SummarizedAttackVector {
pub vector_counters: Option<Vec<SummarizedCounter>>,
pub vector_type: String,
}
Expand description
A summary of information about the attack.
Fields§
§vector_counters: Option<Vec<SummarizedCounter>>
The list of counters that describe the details of the attack.
vector_type: String
The attack type, for example, SNMP reflection or SYN flood.
Trait Implementations§
Source§impl Clone for SummarizedAttackVector
impl Clone for SummarizedAttackVector
Source§fn clone(&self) -> SummarizedAttackVector
fn clone(&self) -> SummarizedAttackVector
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 SummarizedAttackVector
impl Debug for SummarizedAttackVector
Source§impl Default for SummarizedAttackVector
impl Default for SummarizedAttackVector
Source§fn default() -> SummarizedAttackVector
fn default() -> SummarizedAttackVector
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SummarizedAttackVector
impl<'de> Deserialize<'de> for SummarizedAttackVector
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 PartialEq for SummarizedAttackVector
impl PartialEq for SummarizedAttackVector
impl StructuralPartialEq for SummarizedAttackVector
Auto Trait Implementations§
impl Freeze for SummarizedAttackVector
impl RefUnwindSafe for SummarizedAttackVector
impl Send for SummarizedAttackVector
impl Sync for SummarizedAttackVector
impl Unpin for SummarizedAttackVector
impl UnwindSafe for SummarizedAttackVector
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