#[repr(C)]pub struct timex {Show 17 fields
pub modes: u32,
pub offset: i64,
pub freq: i64,
pub maxerror: i64,
pub esterror: i64,
pub status: i32,
pub constant: i64,
pub precision: i64,
pub tolerance: i64,
pub ppsfreq: i64,
pub jitter: i64,
pub shift: i32,
pub stabil: i64,
pub jitcnt: i64,
pub calcnt: i64,
pub errcnt: i64,
pub stbcnt: i64,
}Fields§
§modes: u32§offset: i64§freq: i64§maxerror: i64§esterror: i64§status: i32§constant: i64§precision: i64§tolerance: i64§ppsfreq: i64§jitter: i64§shift: i32§stabil: i64§jitcnt: i64§calcnt: i64§errcnt: i64§stbcnt: i64Trait Implementations§
impl Copy for timex
impl Eq for timex
impl StructuralPartialEq for timex
Auto Trait Implementations§
impl Freeze for timex
impl RefUnwindSafe for timex
impl Send for timex
impl Sync for timex
impl Unpin for timex
impl UnwindSafe for timex
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more