Struct mprober_lib::process::ProcessStatus
source · 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 copy 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 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