pub struct Timespec {
pub sec: i64,
pub nsec: i32,
}
Expand description
A record specifying a time value in seconds and nanoseconds, where nanoseconds represent the offset from the given second.
For example a timespec of 1.2 seconds after the beginning of the epoch would be represented as {sec: 1, nsec: 200000000}.
Fields§
§sec: i64
§nsec: i32
Implementations§
Trait Implementations§
source§impl Ord for Timespec
impl Ord for Timespec
source§impl PartialEq<Timespec> for Timespec
impl PartialEq<Timespec> for Timespec
source§impl PartialOrd<Timespec> for Timespec
impl PartialOrd<Timespec> for Timespec
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Timespec
impl Eq for Timespec
impl StructuralEq for Timespec
impl StructuralPartialEq for Timespec
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