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