pub enum DescriptorTable {
Gdt,
Idt,
Ldt,
}
Expand description
The possible descriptor table values.
Used by the SelectorErrorCode
to indicate which table caused the error.
Variants§
Trait Implementations§
Source§impl Clone for DescriptorTable
impl Clone for DescriptorTable
Source§fn clone(&self) -> DescriptorTable
fn clone(&self) -> DescriptorTable
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 Debug for DescriptorTable
impl Debug for DescriptorTable
Source§impl Hash for DescriptorTable
impl Hash for DescriptorTable
Source§impl PartialEq for DescriptorTable
impl PartialEq for DescriptorTable
impl Copy for DescriptorTable
impl Eq for DescriptorTable
impl StructuralPartialEq for DescriptorTable
Auto Trait Implementations§
impl Freeze for DescriptorTable
impl RefUnwindSafe for DescriptorTable
impl Send for DescriptorTable
impl Sync for DescriptorTable
impl Unpin for DescriptorTable
impl UnwindSafe for DescriptorTable
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