#[repr(C)]pub struct timex {Show 31 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 time: timeval,
pub tick: 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,
pub tai: i32,
pub __unused1: i32,
pub __unused2: i32,
pub __unused3: i32,
pub __unused4: i32,
pub __unused5: i32,
pub __unused6: i32,
pub __unused7: i32,
pub __unused8: i32,
pub __unused9: i32,
pub __unused10: i32,
pub __unused11: i32,
}
Fields§
§modes: u32
§offset: i64
§freq: i64
§maxerror: i64
§esterror: i64
§status: i32
§constant: i64
§precision: i64
§tolerance: i64
§time: timeval
§tick: i64
§ppsfreq: i64
§jitter: i64
§shift: i32
§stabil: i64
§jitcnt: i64
§calcnt: i64
§errcnt: i64
§stbcnt: i64
§tai: i32
§__unused1: i32
§__unused2: i32
§__unused3: i32
§__unused4: i32
§__unused5: i32
§__unused6: i32
§__unused7: i32
§__unused8: i32
§__unused9: i32
§__unused10: i32
§__unused11: i32
Trait 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§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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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