#[repr(C, packed(1))]struct Idtr {
limit: u16,
addr: *const GateDescriptor,
}Expand description
Raw value of a Interrupt Descriptor-Table Register.
See Interrupt Descriptor-Table Register section on AMD64 Architecture Programmer’s Manual Volume 2 for details.
Fields§
§limit: u16§addr: *const GateDescriptorAuto Trait Implementations§
impl !Send for Idtr
impl !Sync for Idtr
impl Freeze for Idtr
impl RefUnwindSafe for Idtr
impl Unpin for Idtr
impl UnsafeUnpin for Idtr
impl UnwindSafe for Idtr
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