#[repr(u8)]pub enum SPOL {
NoEdge = 0,
RisingEdge = 1,
FallingEdge = 2,
BothEdges = 3,
}
Expand description
Synchronization event type selector Defines the synchronization event on the selected synchronization input:
Value on reset: 0
Variants§
NoEdge = 0
0: No event, i.e. no synchronization nor detection
RisingEdge = 1
1: Rising edge
FallingEdge = 2
2: Falling edge
BothEdges = 3
3: Rising and falling edges
Trait Implementations§
impl Copy for SPOL
impl Eq for SPOL
impl IsEnum for SPOL
impl StructuralPartialEq for SPOL
Auto Trait Implementations§
impl Freeze for SPOL
impl RefUnwindSafe for SPOL
impl Send for SPOL
impl Sync for SPOL
impl Unpin for SPOL
impl UnwindSafe for SPOL
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