pub struct MagicGidFinding {
pub pid: u32,
pub comm: String,
pub magic_gid: u32,
pub rootkit_name: &'static str,
}Expand description
A finding produced when a process carries a known rootkit magic GID.
Fields§
§pid: u32Process ID.
comm: StringProcess name (task_struct.comm, max 16 chars).
magic_gid: u32The magic GID that triggered this finding.
rootkit_name: &'static strName of the rootkit associated with the magic GID.
Trait Implementations§
Source§impl Clone for MagicGidFinding
impl Clone for MagicGidFinding
Source§fn clone(&self) -> MagicGidFinding
fn clone(&self) -> MagicGidFinding
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 MagicGidFinding
impl Debug for MagicGidFinding
Source§impl Deserialize<'static> for MagicGidFinding
impl Deserialize<'static> for MagicGidFinding
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MagicGidFinding
impl RefUnwindSafe for MagicGidFinding
impl Send for MagicGidFinding
impl Sync for MagicGidFinding
impl Unpin for MagicGidFinding
impl UnsafeUnpin for MagicGidFinding
impl UnwindSafe for MagicGidFinding
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