Enum Trgsel
#[repr(u8)]pub enum Trgsel {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Trigger Select
Value on reset: 0
Variants§
_00 = 0
0: Input trigger is disabled.
_01 = 1
1: Input trigger is used instead of RXD pin input.
_10 = 2
2: Input trigger is used instead of CTS_B pin input.
_11 = 3
3: Input trigger is used to modulate the TXD pin output. The TXD pin output (after TXINV configuration) is ANDed with the input trigger.
Trait Implementations§
impl Copy for Trgsel
impl Eq for Trgsel
impl IsEnum for Trgsel
impl StructuralPartialEq for Trgsel
Auto Trait Implementations§
impl Freeze for Trgsel
impl RefUnwindSafe for Trgsel
impl Send for Trgsel
impl Sync for Trgsel
impl Unpin for Trgsel
impl UnwindSafe for Trgsel
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