Struct mprober_lib::process::ProcessStatus[][src]

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: u32

The user who created this process or the UID set via setuid() by the root caller.

real_gid: u32

The group who created this process or the GID set via setgid() by the root caller.

effective_uid: u32

The UID set via setuid() by the caller.

effective_gid: u32

The GID set via setgid() by the caller.

saved_set_uid: u32

The UID set via setuid() by the root caller

saved_set_gid: u32

The GID set via setgid() by the root caller

fs_uid: u32

The UID of the running executable file of this process.

fs_gid: u32

The GID of the running executable file of this process.

Trait Implementations

impl Clone for ProcessStatus[src]

impl Debug for ProcessStatus[src]

impl Default for ProcessStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.