pub struct SharedCredInfo {
pub pid: u32,
pub process_name: String,
pub uid: u32,
pub cred_address: u64,
pub shared_with_pids: Vec<u32>,
pub is_suspicious: bool,
}Expand description
Information about a process whose struct cred is shared with other
unrelated processes.
Fields§
§pid: u32Process ID.
process_name: StringProcess command name.
uid: u32UID from the credential structure.
cred_address: u64Virtual address of the struct cred.
Other PIDs that share the same cred pointer.
is_suspicious: boolWhether this sharing pattern is suspicious.
Trait Implementations§
Source§fn clone(&self) -> SharedCredInfo
fn clone(&self) -> SharedCredInfo
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§
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