#[repr(u8)]pub enum GyroFullScale {
DegreesPerSec2000 = 0,
DegreesPerSec1000 = 1,
DegreesPerSec500 = 2,
DegreesPerSec250 = 3,
DegreesPerSec125 = 4,
DegreesPerSec62X5 = 5,
DegreesPerSec31X25 = 6,
DegreesPerSec15X625 = 7,
}Expand description
Variants§
DegreesPerSec2000 = 0
DegreesPerSec1000 = 1
DegreesPerSec500 = 2
DegreesPerSec250 = 3
DegreesPerSec125 = 4
DegreesPerSec62X5 = 5
DegreesPerSec31X25 = 6
DegreesPerSec15X625 = 7
Trait Implementations§
Source§impl Clone for GyroFullScale
impl Clone for GyroFullScale
Source§fn clone(&self) -> GyroFullScale
fn clone(&self) -> GyroFullScale
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 GyroFullScale
impl Debug for GyroFullScale
Source§impl From<GyroFullScale> for u8
impl From<GyroFullScale> for u8
Source§fn from(val: GyroFullScale) -> Self
fn from(val: GyroFullScale) -> Self
Converts to this type from the input type.
Source§impl Hash for GyroFullScale
impl Hash for GyroFullScale
Source§impl PartialEq for GyroFullScale
impl PartialEq for GyroFullScale
Source§impl TryFrom<u8> for GyroFullScale
impl TryFrom<u8> for GyroFullScale
impl Copy for GyroFullScale
impl Eq for GyroFullScale
impl StructuralPartialEq for GyroFullScale
Auto Trait Implementations§
impl Freeze for GyroFullScale
impl RefUnwindSafe for GyroFullScale
impl Send for GyroFullScale
impl Sync for GyroFullScale
impl Unpin for GyroFullScale
impl UnwindSafe for GyroFullScale
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