pub struct Rule {
pub technique_id: &'static str,
pub technique_name: &'static str,
pub tactic: &'static str,
pub severity: Severity,
pub action: Action,
pub pattern: &'static str,
}Expand description
A single detection rule in the ATLAS ruleset.
Fields§
§technique_id: &'static strMITRE ATLAS technique ID
technique_name: &'static strHuman-readable name
tactic: &'static strMITRE ATLAS tactic
severity: SeveritySeverity level
action: ActionRecommended action
pattern: &'static strThe regex pattern
Auto Trait Implementations§
impl Freeze for Rule
impl RefUnwindSafe for Rule
impl Send for Rule
impl Sync for Rule
impl Unpin for Rule
impl UnsafeUnpin for Rule
impl UnwindSafe for Rule
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