Struct sysinfo::Process[][src]

pub struct Process {
    pub uid: uid_t,
    pub gid: gid_t,
    pub status: Option<ThreadStatus>,
    // some fields omitted
}
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

uid: uid_t

User id of the process owner.

gid: gid_t

Group id of the process owner.

status: Option<ThreadStatus>

Status of process (running, stopped, waiting, etc). None means sysinfo doesn’t have enough rights to get this information.

This is very likely this one that you want instead of process_status.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Sends Signal::Kill to the process (which is the only signal supported on all platforms by this crate). Read more

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 more

Returns the name of the process. Read more

Returns the command line. Read more

Returns the path to the process. Read more

Returns the pid of the process. Read more

Returns the environment variables of the process. Read more

Returns the current working directory. Read more

Returns the path of the root directory. Read more

Returns the memory usage (in KB). Read more

Returns the virtual memory usage (in KB). Read more

Returns the parent pid. Read more

Returns the status of the processus. Read more

Returns the time where the process was started (in seconds) from epoch. Read more

Returns for how much time the process has been running (in seconds). Read more

Returns the total CPU usage (in %). Notice that it might be bigger than 100 if run on a multicore machine. Read more

Returns number of bytes read and written to disk. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.