dusage 0.2.3

💾 A command line disk usage information tool: disk usage (foreground), inodes (background).
Documentation
1
2
3
4
5
6
7
8
9
10
pub enum ProcFields {
    Filesystem = 0,
    Mountpoint = 1,
}

impl ProcFields {
    pub fn upcast(self) -> usize {
        self as usize
    }
}