pub enum SpeedAccuracy {
Unknown,
LessThan_10_mps,
LessThan_3_mps,
LessThan_1_mps,
LessThan_third_mps,
}Variants§
Unknown
=10 m/s or Unknown
LessThan_10_mps
<10 m/s
LessThan_3_mps
<3 m/s
LessThan_1_mps
<1 m/s
LessThan_third_mps
<0.3 m/s
Trait Implementations§
Source§impl Clone for SpeedAccuracy
impl Clone for SpeedAccuracy
Source§fn clone(&self) -> SpeedAccuracy
fn clone(&self) -> SpeedAccuracy
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 SpeedAccuracy
Source§impl Debug for SpeedAccuracy
impl Debug for SpeedAccuracy
Source§impl From<SpeedAccuracy> for u8
impl From<SpeedAccuracy> for u8
Source§fn from(val: SpeedAccuracy) -> Self
fn from(val: SpeedAccuracy) -> Self
Converts to this type from the input type.
Source§impl From<u8> for SpeedAccuracy
impl From<u8> for SpeedAccuracy
Source§impl PartialEq for SpeedAccuracy
impl PartialEq for SpeedAccuracy
Source§fn eq(&self, other: &SpeedAccuracy) -> bool
fn eq(&self, other: &SpeedAccuracy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SpeedAccuracy
Auto Trait Implementations§
impl Freeze for SpeedAccuracy
impl RefUnwindSafe for SpeedAccuracy
impl Send for SpeedAccuracy
impl Sync for SpeedAccuracy
impl Unpin for SpeedAccuracy
impl UnsafeUnpin for SpeedAccuracy
impl UnwindSafe for SpeedAccuracy
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