pub struct Interrupt {
pub name: String,
pub caption: String,
pub index: u32,
}
Expand description
An interrupt supported by a device.
Fields§
§name: String
The name of the interrupt, for example TIMER1_COMPA
.
caption: String
A brief description of the interrupt
index: u32
The interrupt vector table index
Trait Implementations§
Source§impl PartialOrd for Interrupt
impl PartialOrd for Interrupt
impl Eq for Interrupt
impl StructuralPartialEq for Interrupt
Auto Trait Implementations§
impl Freeze for Interrupt
impl RefUnwindSafe for Interrupt
impl Send for Interrupt
impl Sync for Interrupt
impl Unpin for Interrupt
impl UnwindSafe for Interrupt
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