#[repr(C, packed)]pub struct InterruptDescriptorTableRegister {
pub limit: u16,
pub address: usize,
}
Available on x86 or x86-64 only.
Expand description
IDTR
: Contains the memory range of the interrupt descriptor table.
Fields§
§limit: u16
The inclusive maximum address offset (i.e., size - 1) of the descriptor table.
address: usize
Base address of the descriptor table.
Implementations§
Trait Implementations§
source§impl Clone for InterruptDescriptorTableRegister
impl Clone for InterruptDescriptorTableRegister
source§fn clone(&self) -> InterruptDescriptorTableRegister
fn clone(&self) -> InterruptDescriptorTableRegister
Returns a copy 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 Default for InterruptDescriptorTableRegister
impl Default for InterruptDescriptorTableRegister
source§fn default() -> InterruptDescriptorTableRegister
fn default() -> InterruptDescriptorTableRegister
Returns the “default value” for a type. Read more