Enum Smod
#[repr(u8)]pub enum Smod {
_0 = 0,
_1 = 1,
_10 = 2,
_100 = 4,
_101 = 5,
}Expand description
Shifter Mode
Value on reset: 0
Variants§
_0 = 0
0: Disabled.
_1 = 1
1: Receive mode. Captures the current Shifter content into the SHIFTBUF on expiration of the Timer.
_10 = 2
2: Transmit mode. Load SHIFTBUF contents into the Shifter on expiration of the Timer.
_100 = 4
4: Match Store mode. Shifter data is compared to SHIFTBUF content on expiration of the Timer.
_101 = 5
5: Match Continuous mode. Shifter data is continuously compared to SHIFTBUF contents.
Trait Implementations§
impl Copy for Smod
impl Eq for Smod
impl IsEnum for Smod
impl StructuralPartialEq for Smod
Auto Trait Implementations§
impl Freeze for Smod
impl RefUnwindSafe for Smod
impl Send for Smod
impl Sync for Smod
impl Unpin for Smod
impl UnwindSafe for Smod
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