#[repr(C)]pub struct Times {
pub tms_utime: ClockT,
pub tms_stime: ClockT,
pub tms_cutime: ClockT,
pub tms_cstime: ClockT,
}Expand description
A Block of times provided by the kernel.
Fields§
§tms_utime: ClockTUser time
tms_stime: ClockTSystem time
tms_cutime: ClockTUser time of children
tms_cstime: ClockTSystem time of children
Trait Implementations§
impl Copy for Times
impl Eq for Times
impl StructuralPartialEq for Times
Auto Trait Implementations§
impl Freeze for Times
impl RefUnwindSafe for Times
impl Send for Times
impl Sync for Times
impl Unpin for Times
impl UnwindSafe for Times
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