pub struct InterruptDescription {
pub vector: u8,
pub mnemonic: &'static str,
pub description: &'static str,
pub irqtype: &'static str,
pub source: &'static str,
}
Expand description
x86 Exception description (see also Intel Vol. 3a Chapter 6).
Fields§
§vector: u8
§mnemonic: &'static str
§description: &'static str
§irqtype: &'static str
§source: &'static str
Trait Implementations§
Source§impl Debug for InterruptDescription
impl Debug for InterruptDescription
Auto Trait Implementations§
impl Freeze for InterruptDescription
impl RefUnwindSafe for InterruptDescription
impl Send for InterruptDescription
impl Sync for InterruptDescription
impl Unpin for InterruptDescription
impl UnwindSafe for InterruptDescription
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