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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use std::ffi::OsStr;
use std::fmt;
use std::path::Path;
use heim_common::prelude::*;
use crate::{sys, usage, FileSystem, Usage};
pub struct Partition(sys::Partition);
wrap!(Partition, sys::Partition);
impl Partition {
pub fn device(&self) -> Option<&OsStr> {
self.as_ref().device()
}
pub fn mount_point(&self) -> &Path {
self.as_ref().mount_point()
}
pub fn file_system(&self) -> &FileSystem {
self.as_ref().file_system()
}
pub async fn usage(&self) -> Result<Usage> {
usage(self.mount_point()).await
}
}
impl fmt::Debug for Partition {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("Partition")
.field("device", &self.device())
.field("mount_point", &self.mount_point())
.field("file_system", &self.file_system())
.finish()
}
}
pub async fn partitions() -> Result<impl Stream<Item = Result<Partition>>> {
let inner = sys::partitions().await?;
Ok(inner.map_ok(Into::into))
}
pub async fn partitions_physical() -> Result<impl Stream<Item = Result<Partition>>> {
let inner = sys::partitions_physical().await?;
Ok(inner.map_ok(Into::into))
}