blob: c4656d3f54b86adb86c176a7761cb117702136d2 (
plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// Take a look at the license at the top of the repository in the LICENSE file.
use crate::{DiskUsage, Gid, Pid, ProcessExt, ProcessStatus, Signal, Uid};
use std::fmt;
use std::path::Path;
impl fmt::Display for ProcessStatus {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("Unknown")
}
}
#[doc = include_str!("../../md_doc/process.md")]
pub struct Process {
pid: Pid,
parent: Option<Pid>,
}
impl ProcessExt for Process {
fn kill_with(&self, _signal: Signal) -> Option<bool> {
None
}
fn name(&self) -> &str {
""
}
fn cmd(&self) -> &[String] {
&[]
}
fn exe(&self) -> &Path {
Path::new("")
}
fn pid(&self) -> Pid {
self.pid
}
fn environ(&self) -> &[String] {
&[]
}
fn cwd(&self) -> &Path {
Path::new("")
}
fn root(&self) -> &Path {
Path::new("")
}
fn memory(&self) -> u64 {
0
}
fn virtual_memory(&self) -> u64 {
0
}
fn parent(&self) -> Option<Pid> {
self.parent
}
fn status(&self) -> ProcessStatus {
ProcessStatus::Unknown(0)
}
fn start_time(&self) -> u64 {
0
}
fn run_time(&self) -> u64 {
0
}
fn cpu_usage(&self) -> f32 {
0.0
}
fn disk_usage(&self) -> DiskUsage {
DiskUsage::default()
}
fn user_id(&self) -> Option<&Uid> {
None
}
fn group_id(&self) -> Option<Gid> {
None
}
}
|