[−][src]Enum sunrise_bootstrap::gdt::i386::PrivilegeLevel
Represents a protection ring level.
Variants
Privilege-level 0 (most privilege): This level is used by critical system-software components that require direct access to, and control over, all processor and system resources. This can include BIOS, memory-management functions, and interrupt handlers.
Privilege-level 1 (moderate privilege): This level is used by less-critical system- software services that can access and control a limited scope of processor and system resources. Software running at these privilege levels might include some device drivers and library routines. The actual privileges of this level are defined by the operating system.
Privilege-level 2 (moderate privilege): Like level 1, this level is used by less-critical system-software services that can access and control a limited scope of processor and system resources. The actual privileges of this level are defined by the operating system.
Privilege-level 3 (least privilege): This level is used by application software. Software running at privilege-level 3 is normally prevented from directly accessing most processor and system resources. Instead, applications request access to the protected processor and system resources by calling more-privileged service routines to perform the accesses.
Implementations
impl PrivilegeLevel
[src]
pub fn from_u16(value: u16) -> PrivilegeLevel
[src]
Creates a PrivilegeLevel
from a numeric value. The value must be in the range 0..4.
This function panics if the passed value is >3.
Trait Implementations
impl Clone for PrivilegeLevel
[src]
fn clone(&self) -> PrivilegeLevel
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for PrivilegeLevel
[src]
impl Debug for PrivilegeLevel
[src]
impl Eq for PrivilegeLevel
[src]
impl PartialEq<PrivilegeLevel> for PrivilegeLevel
[src]
fn eq(&self, other: &PrivilegeLevel) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl StructuralEq for PrivilegeLevel
[src]
impl StructuralPartialEq for PrivilegeLevel
[src]
Auto Trait Implementations
impl RefUnwindSafe for PrivilegeLevel
impl Send for PrivilegeLevel
impl Sync for PrivilegeLevel
impl Unpin for PrivilegeLevel
impl UnwindSafe for PrivilegeLevel
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>,