pub enum Lsm303Range {
Range1G = 0,
Range1_3G = 1,
Range1_9G = 2,
Range2_5G = 3,
Range4_0G = 4,
Range4_7G = 5,
Range5_6G = 7,
Range8_1 = 8,
}
Variants§
Range1G = 0
Range1_3G = 1
Range1_9G = 2
Range2_5G = 3
Range4_0G = 4
Range4_7G = 5
Range5_6G = 7
Range8_1 = 8
Trait Implementations§
Source§impl Clone for Lsm303Range
impl Clone for Lsm303Range
Source§fn clone(&self) -> Lsm303Range
fn clone(&self) -> Lsm303Range
Returns a copy 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 FromPrimitive for Lsm303Range
impl FromPrimitive for Lsm303Range
Source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Convert an
i64
to return an optional value of this type. If the
type cannot be represented by this value, then None
is returned.Source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Convert an
u64
to return an optional value of this type. If the
type cannot be represented by this value, then None
is returned.Source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Convert an
isize
to return an optional value of this type. If the
value cannot be represented by this value, then None
is returned.Source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Convert an
i8
to return an optional value of this type. If the
type cannot be represented by this value, then None
is returned.Source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Convert an
i16
to return an optional value of this type. If the
type cannot be represented by this value, then None
is returned.Source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Convert an
i32
to return an optional value of this type. If the
type cannot be represented by this value, then None
is returned.Source§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Convert a
usize
to return an optional value of this type. If the
type cannot be represented by this value, then None
is returned.Source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Convert an
u8
to return an optional value of this type. If the
type cannot be represented by this value, then None
is returned.Source§impl PartialEq for Lsm303Range
impl PartialEq for Lsm303Range
impl Copy for Lsm303Range
impl StructuralPartialEq for Lsm303Range
Auto Trait Implementations§
impl Freeze for Lsm303Range
impl RefUnwindSafe for Lsm303Range
impl Send for Lsm303Range
impl Sync for Lsm303Range
impl Unpin for Lsm303Range
impl UnwindSafe for Lsm303Range
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