(&self)
| 87 | |
| 88 | impl ProcessStateRT { |
| 89 | pub fn display(&self) -> ProcessState { |
| 90 | ProcessState { |
| 91 | status: self.status.clone(), |
| 92 | started: self.started, |
| 93 | pid: self.pid, |
| 94 | started_at: self.started_at, |
| 95 | stopped_at: self.stopped_at, |
| 96 | } |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | mod systime { |