pub struct Matrix {
pub common: CommonProperties,
pub name: String,
pub description: Option<String>,
pub tactic_refs: Vec<String>,
pub version: Option<String>,
pub domains: Vec<String>,
}Expand description
Represents a MITRE ATT&CK Matrix (x-mitre-matrix).
Matrices organize tactics and techniques for specific technology domains. Examples: Enterprise, Mobile, ICS.
Fields§
§common: CommonProperties§name: String§description: Option<String>§tactic_refs: Vec<String>References to tactics in this matrix
version: Option<String>§domains: Vec<String>Trait Implementations§
Source§impl AttackObject for Matrix
impl AttackObject for Matrix
Source§impl<'de> Deserialize<'de> for Matrix
impl<'de> Deserialize<'de> for Matrix
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
Source§impl StixObject for Matrix
impl StixObject for Matrix
impl Eq for Matrix
impl StructuralPartialEq for Matrix
Auto Trait Implementations§
impl Freeze for Matrix
impl RefUnwindSafe for Matrix
impl Send for Matrix
impl Sync for Matrix
impl Unpin for Matrix
impl UnsafeUnpin for Matrix
impl UnwindSafe for Matrix
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