pub enum TimeUncertainty {
Unknown = 0,
_10Milliseconds = 1,
_10Microseconds = 2,
_1Microseconds = 3,
}Expand description
Time uncertainty
Variants§
Unknown = 0
Unknown
_10Milliseconds = 1
+/- 10 milliseconds
_10Microseconds = 2
+/- 10 microseconds
_1Microseconds = 3
< 1 microseconds
Trait Implementations§
Source§impl Clone for TimeUncertainty
impl Clone for TimeUncertainty
Source§fn clone(&self) -> TimeUncertainty
fn clone(&self) -> TimeUncertainty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TimeUncertainty
Source§impl Debug for TimeUncertainty
impl Debug for TimeUncertainty
Source§impl Display for TimeUncertainty
impl Display for TimeUncertainty
impl Eq for TimeUncertainty
Source§impl Hash for TimeUncertainty
impl Hash for TimeUncertainty
Source§impl PartialEq for TimeUncertainty
impl PartialEq for TimeUncertainty
Source§fn eq(&self, other: &TimeUncertainty) -> bool
fn eq(&self, other: &TimeUncertainty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimeUncertainty
Auto Trait Implementations§
impl Freeze for TimeUncertainty
impl RefUnwindSafe for TimeUncertainty
impl Send for TimeUncertainty
impl Sync for TimeUncertainty
impl Unpin for TimeUncertainty
impl UnsafeUnpin for TimeUncertainty
impl UnwindSafe for TimeUncertainty
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