proc-status 0.1.1

simple access to proc/status info on unix
Documentation
1
2
3
4
5
6
7
8
9
10
11


/// the reference to a process, either the symbolic "self"
/// or a process id
#[derive(Clone, Copy)]
pub enum ProcRef {
    ProcSelf, // proc/self, it the current process
    ProcId(usize),
}