pub struct DetectionPattern {
pub technique: AttackTechnique,
pub pattern: Regex,
pub severity: ThreatSeverity,
}Expand description
Detection pattern
Fields§
§technique: AttackTechnique§pattern: Regex§severity: ThreatSeverityTrait Implementations§
Source§impl Clone for DetectionPattern
impl Clone for DetectionPattern
Source§fn clone(&self) -> DetectionPattern
fn clone(&self) -> DetectionPattern
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 moreAuto Trait Implementations§
impl Freeze for DetectionPattern
impl RefUnwindSafe for DetectionPattern
impl Send for DetectionPattern
impl Sync for DetectionPattern
impl Unpin for DetectionPattern
impl UnwindSafe for DetectionPattern
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