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
use heim_common::prelude::BoxStream;
use crate::ProcessResult;
mod io_counters;
mod memory;
pub use self::io_counters::IoCountersExt;
pub use self::memory::MemoryExt;
#[async_trait::async_trait]
pub trait ProcessExt {
#[cfg(target_os = "linux")]
async fn net_io_counters(
&self,
) -> ProcessResult<BoxStream<'_, ProcessResult<heim_net::IoCounters>>>;
}
#[cfg(target_os = "linux")]
#[async_trait::async_trait]
impl ProcessExt for crate::Process {
async fn net_io_counters(
&self,
) -> ProcessResult<BoxStream<'_, ProcessResult<heim_net::IoCounters>>> {
let stream = self.as_ref().net_io_counters().await?;
Ok(stream)
}
}