pub trait SystemProcess {
    // Required methods
    fn refresh_process(&mut self, pid: Pid) -> bool;
    fn process_name(&self, pid: Pid) -> Result<String, Error>;
}

Required Methods§

source

fn refresh_process(&mut self, pid: Pid) -> bool

source

fn process_name(&self, pid: Pid) -> Result<String, Error>

Implementations on Foreign Types§

source§

impl SystemProcess for System

source§

fn refresh_process(&mut self, pid: Pid) -> bool

source§

fn process_name(&self, pid: Pid) -> Result<String, Error>

Implementors§