heim-disk 0.0.11

Cross-platform disk information
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(not(target_os = "linux"))] // Linux have it's own way
mod partitions;
mod usage;

#[cfg(not(target_os = "linux"))]
mod bindings;

#[cfg(not(target_os = "linux"))]
pub use self::partitions::*;
pub use self::usage::*;