pub struct PsxViewInfo {
pub pid: u64,
pub comm: String,
pub in_task_list: bool,
pub in_pid_hash: bool,
}Expand description
Cross-view process visibility information for DKOM detection.
Fields§
§pid: u64Process ID.
comm: StringProcess name.
in_task_list: boolWhether the process was found in the task_struct linked list.
in_pid_hash: boolWhether the process was found in the PID hash table.
Trait Implementations§
Source§impl Clone for PsxViewInfo
impl Clone for PsxViewInfo
Source§fn clone(&self) -> PsxViewInfo
fn clone(&self) -> PsxViewInfo
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 PsxViewInfo
impl RefUnwindSafe for PsxViewInfo
impl Send for PsxViewInfo
impl Sync for PsxViewInfo
impl Unpin for PsxViewInfo
impl UnsafeUnpin for PsxViewInfo
impl UnwindSafe for PsxViewInfo
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