pub struct SingleProcessData<'a> {
pub basic_process_data: ProcessData,
pub tasks: Vec<&'a Process>,
pub disk_usage: DiskUsage,
pub start_time: u64,
pub running_time: u64,
pub current_working_dir: Option<String>,
pub parent_pid: Option<Pid>,
}Fields§
§basic_process_data: ProcessData§tasks: Vec<&'a Process>§disk_usage: DiskUsage§start_time: u64§running_time: u64§current_working_dir: Option<String>§parent_pid: Option<Pid>Implementations§
Source§impl SingleProcessData<'_>
impl SingleProcessData<'_>
Trait Implementations§
Source§impl<'a> Clone for SingleProcessData<'a>
impl<'a> Clone for SingleProcessData<'a>
Source§fn clone(&self) -> SingleProcessData<'a>
fn clone(&self) -> SingleProcessData<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Default for SingleProcessData<'a>
impl<'a> Default for SingleProcessData<'a>
Source§fn default() -> SingleProcessData<'a>
fn default() -> SingleProcessData<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for SingleProcessData<'a>
impl<'a> RefUnwindSafe for SingleProcessData<'a>
impl<'a> Send for SingleProcessData<'a>
impl<'a> Sync for SingleProcessData<'a>
impl<'a> Unpin for SingleProcessData<'a>
impl<'a> UnwindSafe for SingleProcessData<'a>
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