#[repr(u16)]pub enum Asynchselect {
Sync = 0,
Async = 1,
}
Expand description
Asynchronous Edge Detection Mode
Value on reset: 0
Variants§
Sync = 0
0: Edge detection is clock synchronously operated
Async = 1
1: Edge detection is clock asynchronously operated
Trait Implementations§
Source§impl Clone for Asynchselect
impl Clone for Asynchselect
Source§fn clone(&self) -> Asynchselect
fn clone(&self) -> Asynchselect
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Asynchselect
impl Debug for Asynchselect
Source§impl From<Asynchselect> for u16
impl From<Asynchselect> for u16
Source§fn from(variant: Asynchselect) -> Self
fn from(variant: Asynchselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Asynchselect
impl PartialEq for Asynchselect
impl Copy for Asynchselect
impl Eq for Asynchselect
impl IsEnum for Asynchselect
impl StructuralPartialEq for Asynchselect
Auto Trait Implementations§
impl Freeze for Asynchselect
impl RefUnwindSafe for Asynchselect
impl Send for Asynchselect
impl Sync for Asynchselect
impl Unpin for Asynchselect
impl UnwindSafe for Asynchselect
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