pub struct ProcessStatus {
pub real_uid: u32,
pub real_gid: u32,
pub effective_uid: u32,
pub effective_gid: u32,
pub saved_set_uid: u32,
pub saved_set_gid: u32,
pub fs_uid: u32,
pub fs_gid: u32,
}Fields§
§real_uid: u32The user who created this process or the UID set via setuid() by the root caller.
real_gid: u32The group who created this process or the GID set via setgid() by the root caller.
effective_uid: u32The UID set via setuid() by the caller.
effective_gid: u32The GID set via setgid() by the caller.
saved_set_uid: u32The UID set via setuid() by the root caller
saved_set_gid: u32The GID set via setgid() by the root caller
fs_uid: u32The UID of the running executable file of this process.
fs_gid: u32The GID of the running executable file of this process.
Trait Implementations§
Source§impl Clone for ProcessStatus
impl Clone for ProcessStatus
Source§fn clone(&self) -> ProcessStatus
fn clone(&self) -> ProcessStatus
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 Debug for ProcessStatus
impl Debug for ProcessStatus
Source§impl Default for ProcessStatus
impl Default for ProcessStatus
Source§fn default() -> ProcessStatus
fn default() -> ProcessStatus
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProcessStatus
impl RefUnwindSafe for ProcessStatus
impl Send for ProcessStatus
impl Sync for ProcessStatus
impl Unpin for ProcessStatus
impl UnwindSafe for ProcessStatus
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