#[repr(u8)]pub enum CoreInterrupt {
NonMaskableInt = 2,
Exception = 3,
MachineEnvCall = 5,
UserEnvCall = 8,
Breakpoint = 9,
SysTick = 12,
Software = 14,
}Variants§
NonMaskableInt = 2
Exception = 3
MachineEnvCall = 5
UserEnvCall = 8
Breakpoint = 9
SysTick = 12
Software = 14
Implementations§
Trait Implementations§
Source§impl Clone for CoreInterrupt
impl Clone for CoreInterrupt
Source§fn clone(&self) -> CoreInterrupt
fn clone(&self) -> CoreInterrupt
Returns a duplicate 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 CoreInterrupt
impl Debug for CoreInterrupt
Source§impl PartialEq for CoreInterrupt
impl PartialEq for CoreInterrupt
impl Copy for CoreInterrupt
impl Eq for CoreInterrupt
impl StructuralPartialEq for CoreInterrupt
Auto Trait Implementations§
impl Freeze for CoreInterrupt
impl RefUnwindSafe for CoreInterrupt
impl Send for CoreInterrupt
impl Sync for CoreInterrupt
impl Unpin for CoreInterrupt
impl UnwindSafe for CoreInterrupt
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