pub struct AttackSignal {
pub tag_name: String,
pub tag_count: i32,
pub total_count: i32,
}
Fields§
§tag_name: String
Name of the attack signal tag
tag_count: i32
Count of requests with this attack signal
total_count: i32
Total number of attacks considered
Implementations§
Source§impl AttackSignal
impl AttackSignal
Trait Implementations§
Source§impl Clone for AttackSignal
impl Clone for AttackSignal
Source§fn clone(&self) -> AttackSignal
fn clone(&self) -> AttackSignal
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 AttackSignal
impl Debug for AttackSignal
Source§impl Default for AttackSignal
impl Default for AttackSignal
Source§fn default() -> AttackSignal
fn default() -> AttackSignal
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttackSignal
impl<'de> Deserialize<'de> for AttackSignal
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 AttackSignal
impl PartialEq for AttackSignal
Source§impl Serialize for AttackSignal
impl Serialize for AttackSignal
impl StructuralPartialEq for AttackSignal
Auto Trait Implementations§
impl Freeze for AttackSignal
impl RefUnwindSafe for AttackSignal
impl Send for AttackSignal
impl Sync for AttackSignal
impl Unpin for AttackSignal
impl UnwindSafe for AttackSignal
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