pub(super) struct Timespec {
tv_sec: i64,
tv_nsec: Nanoseconds,
}
Fields§
§tv_sec: i64
§tv_nsec: Nanoseconds
Implementations§
source§impl Timespec
impl Timespec
pub const fn zero() -> Timespec
const fn new(tv_sec: i64, tv_nsec: i64) -> Timespec
pub fn sub_timespec(&self, other: &Timespec) -> Result<Duration, Duration>
pub fn checked_add_duration(&self, other: &Duration) -> Option<Timespec>
pub fn checked_sub_duration(&self, other: &Duration) -> Option<Timespec>
pub fn to_timespec(&self) -> Option<timespec>
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 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