pub struct ElfStringArtifact {
pub matched_pattern: &'static str,
pub description: &'static str,
pub weight: u32,
pub context: String,
}Expand description
String artifact matched from ELF section data.
Fields§
§matched_pattern: &'static strLiteral pattern that matched.
description: &'static strHuman-readable description of what the pattern indicates.
weight: u32Suspicion weight (higher = more suspicious).
context: StringUp to 80 chars of context around the match.
Trait Implementations§
Source§impl Clone for ElfStringArtifact
impl Clone for ElfStringArtifact
Source§fn clone(&self) -> ElfStringArtifact
fn clone(&self) -> ElfStringArtifact
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 moreAuto Trait Implementations§
impl Freeze for ElfStringArtifact
impl RefUnwindSafe for ElfStringArtifact
impl Send for ElfStringArtifact
impl Sync for ElfStringArtifact
impl Unpin for ElfStringArtifact
impl UnsafeUnpin for ElfStringArtifact
impl UnwindSafe for ElfStringArtifact
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