Struct attck::MitreAttackPattern[][src]

pub struct MitreAttackPattern {
    pub is_subtechnique: Option<bool>,
    pub data_sources: BTreeSet<String>,
    pub detection: Option<String>,
    pub effective_permissions: BTreeSet<String>,
    pub permissions_required: BTreeSet<String>,
    pub platforms: BTreeSet<String>,
    pub system_requirements: BTreeSet<String>,
}

MITRE custom properties to extend the attack-pattern STIX domain object.

Fields

is_subtechnique: Option<bool>data_sources: BTreeSet<String>detection: Option<String>effective_permissions: BTreeSet<String>permissions_required: BTreeSet<String>platforms: BTreeSet<String>system_requirements: BTreeSet<String>

Trait Implementations

impl Default for MitreAttackPattern[src]

impl<'de> Deserialize<'de> for MitreAttackPattern[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.