pub trait ProcessExt {
    fn uids(&self) -> ProcessResult<Uids>;
fn gids(&self) -> ProcessResult<Gids>;
fn terminal(&self) -> Option<String>;
fn num_fds(&self) -> Count; }

Required methods

Implementors