#[repr(C)]pub struct timeval {
pub tv_sec: time_t,
pub tv_usec: suseconds_t,
}
Expand description
Represent the number of seconds and microseconds since the Epoch (1970-01-01 00:00:00 +0000 (UTC))
Fields§
§tv_sec: time_t
seconds
tv_usec: suseconds_t
microseconds
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for timeval
impl RefUnwindSafe for timeval
impl Send for timeval
impl Sync for timeval
impl Unpin for timeval
impl UnwindSafe for timeval
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