#[repr(u8)]pub enum PinInterrupt {
Low = 1,
High = 2,
EdgeLow = 4,
EdgeHigh = 8,
All = 15,
}Variants§
Trait Implementations§
Source§impl Clone for PinInterrupt
impl Clone for PinInterrupt
Source§fn clone(&self) -> PinInterrupt
fn clone(&self) -> PinInterrupt
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 moreimpl Copy for PinInterrupt
Auto Trait Implementations§
impl Freeze for PinInterrupt
impl RefUnwindSafe for PinInterrupt
impl Send for PinInterrupt
impl Sync for PinInterrupt
impl Unpin for PinInterrupt
impl UnwindSafe for PinInterrupt
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