pub struct AttackPattern {
pub name: String,
pub description: String,
pub applicable_axes: Vec<AttackAxis>,
pub applicable_languages: Vec<Language>,
pub applicable_frameworks: Vec<Framework>,
pub command_template: String,
}Expand description
Pattern library entry
Fields§
§name: String§description: String§applicable_axes: Vec<AttackAxis>§applicable_languages: Vec<Language>§applicable_frameworks: Vec<Framework>§command_template: StringTrait Implementations§
Source§impl Clone for AttackPattern
impl Clone for AttackPattern
Source§fn clone(&self) -> AttackPattern
fn clone(&self) -> AttackPattern
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AttackPattern
impl Debug for AttackPattern
Source§impl<'de> Deserialize<'de> for AttackPattern
impl<'de> Deserialize<'de> for AttackPattern
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
Auto Trait Implementations§
impl Freeze for AttackPattern
impl RefUnwindSafe for AttackPattern
impl Send for AttackPattern
impl Sync for AttackPattern
impl Unpin for AttackPattern
impl UnsafeUnpin for AttackPattern
impl UnwindSafe for AttackPattern
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