pub struct Process {
pub user: String,
pub pid: String,
pub cpu: Option<String>,
pub memory: Option<String>,
pub vsz: Option<String>,
pub rss: Option<String>,
pub tty: Option<String>,
pub stat: Option<String>,
pub start: Option<String>,
pub time: Option<String>,
pub command: String,
}
Fields§
§user: String
§pid: String
§cpu: Option<String>
§memory: Option<String>
§vsz: Option<String>
§rss: Option<String>
§tty: Option<String>
§stat: Option<String>
§start: Option<String>
§time: Option<String>
§command: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Process
impl RefUnwindSafe for Process
impl Send for Process
impl Sync for Process
impl Unpin for Process
impl UnwindSafe for Process
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more