pub struct ProcessSignature {
pub memory_hash_signature: Option<MemoryHashSignature>,
pub signature_type: Option<String>,
pub yara_rule_signature: Option<YaraRuleSignature>,
}
Expand description
Indicates what signature matched this process.
This type is not used in any activity, and only used as part of another schema.
Fields§
§memory_hash_signature: Option<MemoryHashSignature>
Signature indicating that a binary family was matched.
signature_type: Option<String>
Describes the type of resource associated with the signature.
yara_rule_signature: Option<YaraRuleSignature>
Signature indicating that a YARA rule was matched.
Trait Implementations§
Source§impl Clone for ProcessSignature
impl Clone for ProcessSignature
Source§fn clone(&self) -> ProcessSignature
fn clone(&self) -> ProcessSignature
Returns a copy 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 ProcessSignature
impl Debug for ProcessSignature
Source§impl Default for ProcessSignature
impl Default for ProcessSignature
Source§fn default() -> ProcessSignature
fn default() -> ProcessSignature
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessSignature
impl<'de> Deserialize<'de> for ProcessSignature
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 Serialize for ProcessSignature
impl Serialize for ProcessSignature
impl Part for ProcessSignature
Auto Trait Implementations§
impl Freeze for ProcessSignature
impl RefUnwindSafe for ProcessSignature
impl Send for ProcessSignature
impl Sync for ProcessSignature
impl Unpin for ProcessSignature
impl UnwindSafe for ProcessSignature
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more