#[repr(C)]pub struct Timespec { /* private fields */ }
Implementations§
source§impl Timespec
impl Timespec
pub fn new(secs: u64, nanos: u32) -> 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 const fn secs(&self) -> i64
pub const fn subsec_nanos(&self) -> i64
pub const fn zero() -> Timespec
pub const fn max() -> Timespec
pub const fn is_zero(&self) -> bool
pub fn to_duration(self) -> Option<Duration>
Trait Implementations§
source§impl Ord for Timespec
impl Ord for Timespec
source§impl PartialEq for Timespec
impl PartialEq for Timespec
source§impl PartialOrd for Timespec
impl PartialOrd 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
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