pub struct Hit {
pub technique_id: &'static str,
pub technique_name: &'static str,
pub tactic: &'static str,
pub severity: Severity,
pub action: Action,
}Expand description
A detected MITRE ATLAS technique.
Fields§
§technique_id: &'static strMITRE ATLAS technique ID, e.g. "AML.T0036"
technique_name: &'static strHuman-readable technique name
tactic: &'static strMITRE ATLAS tactic this technique belongs to
severity: SeveritySeverity of this technique
action: ActionRecommended action when this technique is detected
Trait Implementations§
impl Eq for Hit
impl StructuralPartialEq for Hit
Auto Trait Implementations§
impl Freeze for Hit
impl RefUnwindSafe for Hit
impl Send for Hit
impl Sync for Hit
impl Unpin for Hit
impl UnsafeUnpin for Hit
impl UnwindSafe for Hit
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