pub struct HuntIOC {
pub indicator: String,
pub ioc_type: IOCType,
pub description: String,
pub confidence: f32,
pub source: String,
pub tags: Vec<String>,
}Expand description
IOC (Indicator of Compromise) for hunting
Fields§
§indicator: String§ioc_type: IOCType§description: String§confidence: f32§source: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for HuntIOC
impl<'de> Deserialize<'de> for HuntIOC
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 HuntIOC
impl RefUnwindSafe for HuntIOC
impl Send for HuntIOC
impl Sync for HuntIOC
impl Unpin for HuntIOC
impl UnwindSafe for HuntIOC
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