pub struct Process {
pub tasks: HashMap<Pid, Process>,
/* private fields */
}
Expand description
Struct containing information of a process.
iOS
This information cannot be retrieved on iOS due to sandboxing.
Apple app store
If you are building a macOS Apple app store, it won’t be able to retrieve this information.
Fields§
§tasks: HashMap<Pid, Process>
Tasks run by this process.
Trait Implementations§
source§impl ProcessExt for Process
impl ProcessExt for Process
source§fn kill_with(&self, signal: Signal) -> Option<bool>
fn kill_with(&self, signal: Signal) -> Option<bool>
Sends the given
signal
to the process. If the signal doesn’t exist on this platform,
it’ll do nothing and will return None
. Otherwise it’ll return if the signal was sent
successfully. Read moresource§fn virtual_memory(&self) -> u64
fn virtual_memory(&self) -> u64
Returns the virtual memory usage (in bytes). Read more
source§fn status(&self) -> ProcessStatus
fn status(&self) -> ProcessStatus
Returns the status of the process. Read more
source§fn start_time(&self) -> u64
fn start_time(&self) -> u64
Returns the time where the process was started (in seconds) from epoch. Read more
source§fn run_time(&self) -> u64
fn run_time(&self) -> u64
Returns for how much time the process has been running (in seconds). Read more
source§fn cpu_usage(&self) -> f32
fn cpu_usage(&self) -> f32
Returns the total CPU usage (in %). Notice that it might be bigger than 100 if run on a
multi-core machine. Read more
source§fn disk_usage(&self) -> DiskUsage
fn disk_usage(&self) -> DiskUsage
Returns number of bytes read and written to disk. Read more
source§fn user_id(&self) -> Option<&Uid>
fn user_id(&self) -> Option<&Uid>
Returns the ID of the owner user of this process or
None
if this information couldn’t
be retrieved. If you want to get the User
from it, take a look at
SystemExt::get_user_by_id
. Read moresource§fn effective_user_id(&self) -> Option<&Uid>
fn effective_user_id(&self) -> Option<&Uid>
Returns the user ID of the effective owner of this process or
None
if this information
couldn’t be retrieved. If you want to get the User
from it, take a look at
SystemExt::get_user_by_id
. Read moresource§fn effective_group_id(&self) -> Option<Gid>
fn effective_group_id(&self) -> Option<Gid>
Returns the effective group ID of the process. Read more
source§fn session_id(&self) -> Option<Pid>
fn session_id(&self) -> Option<Pid>
Returns the session ID for the current process or
None
if it couldn’t be retrieved. Read moresource§fn kill(&self) -> bool
fn kill(&self) -> bool
Sends
Signal::Kill
to the process (which is the only signal supported on all supported
platforms by this crate). Read moreAuto Trait Implementations§
impl RefUnwindSafe for Process
impl Send for Process
impl Sync for Process
impl Unpin for Process
impl UnwindSafe for Process
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more