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