#[repr(u8)]pub enum EDSEL {
Off = 0,
Posedge = 1,
Negedge = 2,
Bothedges = 3,
}
Expand description
Edge Detect Select
Value on reset: 0
Variants§
Off = 0
0: Signal is left as it is
Posedge = 1
1: A one HFCLK cycle pulse is generated for every positive edge of the incoming signal
Negedge = 2
2: A one HFCLK clock cycle pulse is generated for every negative edge of the incoming signal
Bothedges = 3
3: A one HFCLK clock cycle pulse is generated for every edge of the incoming signal
Trait Implementations§
impl Copy for EDSEL
impl Eq for EDSEL
impl IsEnum for EDSEL
impl StructuralPartialEq for EDSEL
Auto Trait Implementations§
impl Freeze for EDSEL
impl RefUnwindSafe for EDSEL
impl Send for EDSEL
impl Sync for EDSEL
impl Unpin for EDSEL
impl UnwindSafe for EDSEL
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