pub struct HuntStatistics {
pub total_hunts: usize,
pub active_hunts: usize,
pub completed_hunts: usize,
pub total_findings: usize,
pub true_positives: usize,
pub iocs_in_database: usize,
pub templates_available: usize,
}Expand description
Hunt statistics
Fields§
§total_hunts: usize§active_hunts: usize§completed_hunts: usize§total_findings: usize§true_positives: usize§iocs_in_database: usize§templates_available: usizeTrait Implementations§
Source§impl Clone for HuntStatistics
impl Clone for HuntStatistics
Source§fn clone(&self) -> HuntStatistics
fn clone(&self) -> HuntStatistics
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 HuntStatistics
impl Debug for HuntStatistics
Source§impl<'de> Deserialize<'de> for HuntStatistics
impl<'de> Deserialize<'de> for HuntStatistics
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 HuntStatistics
impl RefUnwindSafe for HuntStatistics
impl Send for HuntStatistics
impl Sync for HuntStatistics
impl Unpin for HuntStatistics
impl UnwindSafe for HuntStatistics
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