pub enum DynInterrupt {
Floating,
PullDown,
PullUp,
}
Expand description
Value-level enum
for interrupt configurations
Variants§
Trait Implementations§
Source§impl Clone for DynInterrupt
impl Clone for DynInterrupt
Source§fn clone(&self) -> DynInterrupt
fn clone(&self) -> DynInterrupt
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 PartialEq for DynInterrupt
impl PartialEq for DynInterrupt
impl Copy for DynInterrupt
impl Eq for DynInterrupt
impl StructuralPartialEq for DynInterrupt
Auto Trait Implementations§
impl Freeze for DynInterrupt
impl RefUnwindSafe for DynInterrupt
impl Send for DynInterrupt
impl Sync for DynInterrupt
impl Unpin for DynInterrupt
impl UnwindSafe for DynInterrupt
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