pub struct Times {
pub tms_utime: usize,
pub tms_stime: usize,
pub tms_cutime: usize,
pub tms_cstime: usize,
}
Expand description
Store the current process times used in the time()
.
Fields
tms_utime: usize
user time
tms_stime: usize
system time
tms_cutime: usize
user time of children
tms_cstime: usize
system time of children
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Times
impl UnwindSafe for Times
Blanket Implementations
Mutably borrows from an owned value. Read more