Skip to main content

AttackObject

Trait AttackObject 

Source
pub trait AttackObject: StixObject {
    // Required methods
    fn name(&self) -> &str;
    fn description(&self) -> Option<&str>;
    fn revoked(&self) -> bool;
    fn deprecated(&self) -> bool;
}
Expand description

Base trait for all MITRE ATT&CK objects. Extends the basic STIX object with ATT&CK-specific common fields.

Required Methods§

Source

fn name(&self) -> &str

Source

fn description(&self) -> Option<&str>

Source

fn revoked(&self) -> bool

Source

fn deprecated(&self) -> bool

Implementors§