1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use std::fmt;
use std::path::Path;
use heim_common::prelude::*;
use heim_common::units::{Information, Ratio};
use crate::sys;
pub struct Usage(sys::Usage);
wrap!(Usage, sys::Usage);
impl Usage {
pub fn total(&self) -> Information {
self.as_ref().total()
}
pub fn used(&self) -> Information {
self.as_ref().used()
}
pub fn free(&self) -> Information {
self.as_ref().free()
}
pub fn ratio(&self) -> Ratio {
self.as_ref().ratio()
}
}
impl fmt::Debug for Usage {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("Usage")
.field("total", &self.total())
.field("used", &self.used())
.field("free", &self.free())
.field("ratio", &self.ratio())
.finish()
}
}
pub async fn usage<T>(path: T) -> Result<Usage>
where
T: AsRef<Path>,
{
sys::usage(path).await.map(Into::into)
}