#[repr(i32)]pub enum TimeAccuracyKind {
Undefined = 0,
T0 = 7,
T1 = 10,
T2 = 14,
T3 = 16,
T4 = 18,
T5 = 20,
Unspecified = 31,
}
Expand description
Validity of the value, as condensed information for the client. In case this value is not ‘good’, some reasons may be found in the ‘detailQual’.
Variants§
Undefined = 0
Undefined
T0 = 7
10 ms (class T0)
T1 = 10
1 ms (class T1)
T2 = 14
100 us (class T2)
T3 = 16
25 us (class T3)
T4 = 18
4 us (class T4)
T5 = 20
1 us (class T5)
Unspecified = 31
Undefined
Implementations§
Trait Implementations§
Source§impl Clone for TimeAccuracyKind
impl Clone for TimeAccuracyKind
Source§fn clone(&self) -> TimeAccuracyKind
fn clone(&self) -> TimeAccuracyKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TimeAccuracyKind
impl Debug for TimeAccuracyKind
Source§impl Default for TimeAccuracyKind
impl Default for TimeAccuracyKind
Source§fn default() -> TimeAccuracyKind
fn default() -> TimeAccuracyKind
Returns the “default value” for a type. Read more
Source§impl From<TimeAccuracyKind> for i32
impl From<TimeAccuracyKind> for i32
Source§fn from(value: TimeAccuracyKind) -> i32
fn from(value: TimeAccuracyKind) -> i32
Converts to this type from the input type.
Source§impl Hash for TimeAccuracyKind
impl Hash for TimeAccuracyKind
Source§impl Ord for TimeAccuracyKind
impl Ord for TimeAccuracyKind
Source§fn cmp(&self, other: &TimeAccuracyKind) -> Ordering
fn cmp(&self, other: &TimeAccuracyKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TimeAccuracyKind
impl PartialEq for TimeAccuracyKind
Source§impl PartialOrd for TimeAccuracyKind
impl PartialOrd for TimeAccuracyKind
impl Copy for TimeAccuracyKind
impl Eq for TimeAccuracyKind
impl StructuralPartialEq for TimeAccuracyKind
Auto Trait Implementations§
impl Freeze for TimeAccuracyKind
impl RefUnwindSafe for TimeAccuracyKind
impl Send for TimeAccuracyKind
impl Sync for TimeAccuracyKind
impl Unpin for TimeAccuracyKind
impl UnwindSafe for TimeAccuracyKind
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