pub enum Bitrevselect {
Msbit = 0,
Lsbit = 1,
}
Expand description
Data Formatting Bit Reverse
Value on reset: 0
Variants§
Msbit = 0
0: Transfer Data Most Significant Bit (MSB) first (default for I2S protocol)
Lsbit = 1
1: Transfer Data Least Significant Bit (LSB) first
Trait Implementations§
Source§impl Clone for Bitrevselect
impl Clone for Bitrevselect
Source§fn clone(&self) -> Bitrevselect
fn clone(&self) -> Bitrevselect
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 Debug for Bitrevselect
impl Debug for Bitrevselect
Source§impl From<Bitrevselect> for bool
impl From<Bitrevselect> for bool
Source§fn from(variant: Bitrevselect) -> Self
fn from(variant: Bitrevselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Bitrevselect
impl PartialEq for Bitrevselect
impl Copy for Bitrevselect
impl Eq for Bitrevselect
impl StructuralPartialEq for Bitrevselect
Auto Trait Implementations§
impl Freeze for Bitrevselect
impl RefUnwindSafe for Bitrevselect
impl Send for Bitrevselect
impl Sync for Bitrevselect
impl Unpin for Bitrevselect
impl UnwindSafe for Bitrevselect
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