Enum Mux
#[repr(u8)]pub enum Mux {
_000 = 0,
_001 = 1,
_010 = 2,
_011 = 3,
_100 = 4,
_101 = 5,
_110 = 6,
_111 = 7,
}Expand description
Pin Mux Control
Value on reset: 0
Variants§
_000 = 0
0: Pin disabled (Alternative 0) (analog).
_001 = 1
1: Alternative 1 (GPIO).
_010 = 2
2: Alternative 2 (chip-specific).
_011 = 3
3: Alternative 3 (chip-specific).
_100 = 4
4: Alternative 4 (chip-specific).
_101 = 5
5: Alternative 5 (chip-specific).
_110 = 6
6: Alternative 6 (chip-specific).
_111 = 7
7: Alternative 7 (chip-specific).
Trait Implementations§
impl Copy for Mux
impl Eq for Mux
impl IsEnum for Mux
impl StructuralPartialEq for Mux
Auto Trait Implementations§
impl Freeze for Mux
impl RefUnwindSafe for Mux
impl Send for Mux
impl Sync for Mux
impl Unpin for Mux
impl UnwindSafe for Mux
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