pub enum MaecObjectType {
Behavior(Behavior),
Collection(Collection),
MalwareAction(MalwareAction),
MalwareFamily(MalwareFamily),
MalwareInstance(MalwareInstance),
}Expand description
MAEC object types that can be contained in a Package
Variants§
Behavior(Behavior)
Behavior object
Collection(Collection)
Collection object
MalwareAction(MalwareAction)
Malware Action object
MalwareFamily(MalwareFamily)
Malware Family object
MalwareInstance(MalwareInstance)
Malware Instance object
Trait Implementations§
Source§impl Clone for MaecObjectType
impl Clone for MaecObjectType
Source§fn clone(&self) -> MaecObjectType
fn clone(&self) -> MaecObjectType
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 moreSource§impl Debug for MaecObjectType
impl Debug for MaecObjectType
Source§impl<'de> Deserialize<'de> for MaecObjectType
impl<'de> Deserialize<'de> for MaecObjectType
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 PartialEq for MaecObjectType
impl PartialEq for MaecObjectType
Source§impl Serialize for MaecObjectType
impl Serialize for MaecObjectType
impl StructuralPartialEq for MaecObjectType
Auto Trait Implementations§
impl Freeze for MaecObjectType
impl RefUnwindSafe for MaecObjectType
impl Send for MaecObjectType
impl Sync for MaecObjectType
impl Unpin for MaecObjectType
impl UnwindSafe for MaecObjectType
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