pub enum InterruptGroup {
Group0,
Group1,
}Expand description
An interrupt group, without distinguishing between secure and non-secure.
This is used to select which group of interrupts to get, acknowledge and end.
Variants§
Trait Implementations§
Source§impl Clone for InterruptGroup
impl Clone for InterruptGroup
Source§fn clone(&self) -> InterruptGroup
fn clone(&self) -> InterruptGroup
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 InterruptGroup
impl Debug for InterruptGroup
Source§impl PartialEq for InterruptGroup
impl PartialEq for InterruptGroup
impl Copy for InterruptGroup
impl Eq for InterruptGroup
impl StructuralPartialEq for InterruptGroup
Auto Trait Implementations§
impl Freeze for InterruptGroup
impl RefUnwindSafe for InterruptGroup
impl Send for InterruptGroup
impl Sync for InterruptGroup
impl Unpin for InterruptGroup
impl UnsafeUnpin for InterruptGroup
impl UnwindSafe for InterruptGroup
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