Enum Pincfg
#[repr(u8)]pub enum Pincfg {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Pin Configuration
Value on reset: 0
Variants§
_00 = 0
0: SIN is used for input data and SOUT for output data.
_01 = 1
1: SIN is used for both input and output data.
_10 = 2
2: SOUT is used for both input and output data.
_11 = 3
3: SOUT is used for input data and SIN for output data.
Trait Implementations§
impl Copy for Pincfg
impl Eq for Pincfg
impl IsEnum for Pincfg
impl StructuralPartialEq for Pincfg
Auto Trait Implementations§
impl Freeze for Pincfg
impl RefUnwindSafe for Pincfg
impl Send for Pincfg
impl Sync for Pincfg
impl Unpin for Pincfg
impl UnwindSafe for Pincfg
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