[][src]Struct x86_64::structures::gdt::GlobalDescriptorTable

pub struct GlobalDescriptorTable { /* fields omitted */ }

A 64-bit mode global descriptor table (GDT).

In 64-bit mode, segmentation is not supported. The GDT is used nonetheless, for example for switching between user and kernel mode or for loading a TSS.

The GDT has a fixed size of 8 entries, trying to add more entries will panic.

Methods

impl GlobalDescriptorTable[src]

pub fn new() -> GlobalDescriptorTable[src]

Creates an empty GDT.

pub fn add_entry(&mut self, entry: Descriptor) -> SegmentSelector[src]

Adds the given segment descriptor to the GDT, returning the segment selector.

Panics if the GDT has no free entries left.

pub fn load(&'static self)[src]

Loads the GDT in the CPU using the lgdt instruction.

Trait Implementations

impl Clone for GlobalDescriptorTable[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GlobalDescriptorTable[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]