#[repr(C)]pub struct Timespec {
pub tv_sec: Secs,
pub tv_nsec: Nsecs,
}
Available on crate feature
fs
only.Expand description
struct timespec
Fields§
§tv_sec: Secs
Seconds.
tv_nsec: Nsecs
Nanoseconds. Must be less than 1_000_000_000.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Timespec
impl Send for Timespec
impl Sync for Timespec
impl Unpin for Timespec
impl UnwindSafe for Timespec
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