Struct kernel::cpu::idt::InterruptDescriptorTable
source · #[repr(C)]pub(super) struct InterruptDescriptorTable {Show 28 fields
pub divide_by_zero: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub debug: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub non_maskable_interrupt: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub breakpoint: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub overflow: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub bound_range_exceeded: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub invalid_opcode: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub device_not_available: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub double_fault: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>,
pub coprocessor_segment_overrun: InterruptDescriptorTableEntry<()>,
pub invalid_tss: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>,
pub segment_not_present: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>,
pub stack_exception: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>,
pub general_protection_fault: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>,
pub page_fault: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>,
pub reserved_1: InterruptDescriptorTableEntry<()>,
pub x87_floating_point: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub alignment_check: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>,
pub machine_check: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub simd_floating_point: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub reserved_2: InterruptDescriptorTableEntry<()>,
pub control_protection: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub reserved_3: [InterruptDescriptorTableEntry<()>; 6],
pub hypervisor_injection: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub vmm_communication: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>,
pub security_exception: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>,
pub reserved_4: InterruptDescriptorTableEntry<()>,
pub user_defined: [InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>; 224],
}
Fields§
§divide_by_zero: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§debug: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§non_maskable_interrupt: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§breakpoint: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§overflow: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§bound_range_exceeded: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§invalid_opcode: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§device_not_available: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§double_fault: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>
§coprocessor_segment_overrun: InterruptDescriptorTableEntry<()>
§invalid_tss: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>
§segment_not_present: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>
§stack_exception: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>
§general_protection_fault: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>
§page_fault: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>
§reserved_1: InterruptDescriptorTableEntry<()>
§x87_floating_point: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§alignment_check: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>
§machine_check: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§simd_floating_point: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§reserved_2: InterruptDescriptorTableEntry<()>
§control_protection: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§reserved_3: [InterruptDescriptorTableEntry<()>; 6]
§hypervisor_injection: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§vmm_communication: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>
§security_exception: InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64)>
§reserved_4: InterruptDescriptorTableEntry<()>
§user_defined: [InterruptDescriptorTableEntry<extern "x86-interrupt" fn(frame: InterruptStackFrame64)>; 224]
Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for InterruptDescriptorTable
impl Send for InterruptDescriptorTable
impl Sync for InterruptDescriptorTable
impl Unpin for InterruptDescriptorTable
impl UnwindSafe for InterruptDescriptorTable
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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.