Struct memprocfs::VmmYaraMatchString
source · pub struct VmmYaraMatchString {
pub match_string: String,
pub addresses: Vec<u64>,
}
Expand description
Info: Yara search match string.
Also see VmmYara
and VmmYaraResult
.
Fields§
§match_string: String
yara match string identifier.
addresses: Vec<u64>
yara match addresses.
Trait Implementations§
source§impl Clone for VmmYaraMatchString
impl Clone for VmmYaraMatchString
source§fn clone(&self) -> VmmYaraMatchString
fn clone(&self) -> VmmYaraMatchString
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 VmmYaraMatchString
impl Debug for VmmYaraMatchString
source§impl<'de> Deserialize<'de> for VmmYaraMatchString
impl<'de> Deserialize<'de> for VmmYaraMatchString
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 Display for VmmYaraMatchString
impl Display for VmmYaraMatchString
Auto Trait Implementations§
impl RefUnwindSafe for VmmYaraMatchString
impl Send for VmmYaraMatchString
impl Sync for VmmYaraMatchString
impl Unpin for VmmYaraMatchString
impl UnwindSafe for VmmYaraMatchString
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