#[repr(u8)]pub enum Modeselect {
UsartExtClk = 0,
UsartIntClk = 1,
SpiSlave = 2,
SpiMaster = 3,
I2cSlave = 4,
I2cMaster = 5,
}
Expand description
Operating Mode
Value on reset: 0
Variants§
UsartExtClk = 0
0: USART mode with external clock
UsartIntClk = 1
1: USART mode with internal clock
SpiSlave = 2
2: SPI mode with external clock
SpiMaster = 3
3: SPI mode with internal clock
I2cSlave = 4
4: I2C mode with external clock
I2cMaster = 5
5: I2C mode with internal clock
Trait Implementations§
Source§impl Clone for Modeselect
impl Clone for Modeselect
Source§fn clone(&self) -> Modeselect
fn clone(&self) -> Modeselect
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 Modeselect
impl Debug for Modeselect
Source§impl From<Modeselect> for u8
impl From<Modeselect> for u8
Source§fn from(variant: Modeselect) -> Self
fn from(variant: Modeselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Modeselect
impl PartialEq for Modeselect
impl Copy for Modeselect
impl Eq for Modeselect
impl IsEnum for Modeselect
impl StructuralPartialEq for Modeselect
Auto Trait Implementations§
impl Freeze for Modeselect
impl RefUnwindSafe for Modeselect
impl Send for Modeselect
impl Sync for Modeselect
impl Unpin for Modeselect
impl UnwindSafe for Modeselect
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