[−][src]Struct sunrise_kernel::i386::structures::gdt::SegmentSelector
Specifies which element to load into a segment from descriptor tables (i.e., is a index to LDT or GDT table with some additional flags).
See Intel 3a, Section 3.4.2 "Segment Selectors"
Implementations
impl SegmentSelector
[src]
pub const fn new(index: u16, rpl: PrivilegeLevel) -> SegmentSelector
[src]
Creates a new SegmentSelector
Arguments
index
: index in GDT or LDT array.rpl
: the requested privilege level
pub fn index(self) -> u16
[src]
Returns the GDT index.
pub fn rpl(self) -> PrivilegeLevel
[src]
Returns the requested privilege level.
pub fn is_ldt(self) -> bool
[src]
If true, this descriptor is backed by the LDT. If false, it is backed by the GDT.
Trait Implementations
impl Clone for SegmentSelector
[src]
fn clone(&self) -> SegmentSelector
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for SegmentSelector
[src]
impl Debug for SegmentSelector
[src]
Auto Trait Implementations
impl RefUnwindSafe for SegmentSelector
impl Send for SegmentSelector
impl Sync for SegmentSelector
impl Unpin for SegmentSelector
impl UnwindSafe for SegmentSelector
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,