pub trait ProcessInfo {
// Required methods
fn process_name(&self) -> String;
fn peb_base_address(&self) -> u64;
fn pid(&self) -> u32;
}Expand description
Represents a type that can retrieve the corresponding process’s name and peb base address