pub enum InterruptType {
ExternEdge,
ExternLevel,
Nmi,
Profiling,
Software,
Timer,
TimerUnconfigured,
}Expand description
The valid interrupt types declared in the core-isa.h headers
Variants§
Trait Implementations§
Source§impl Clone for InterruptType
impl Clone for InterruptType
Source§fn clone(&self) -> InterruptType
fn clone(&self) -> InterruptType
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 InterruptType
impl Debug for InterruptType
Source§impl FromStr for InterruptType
impl FromStr for InterruptType
Source§impl PartialEq for InterruptType
impl PartialEq for InterruptType
Source§impl TryFrom<&str> for InterruptType
impl TryFrom<&str> for InterruptType
impl Copy for InterruptType
impl StructuralPartialEq for InterruptType
Auto Trait Implementations§
impl Freeze for InterruptType
impl RefUnwindSafe for InterruptType
impl Send for InterruptType
impl Sync for InterruptType
impl Unpin for InterruptType
impl UnwindSafe for InterruptType
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