Struct tartan_uefi::MemoryType

source ·
pub struct MemoryType(/* private fields */);

Implementations§

source§

impl MemoryType

source

pub const Reserved: Self = _

Memory that is never available for use

source

pub const LoaderCode: Self = _

Memory used for UEFI application code.

source

pub const LoaderData: Self = _

Memory allocated by UEFI applications.

source

pub const BootServicesCode: Self = _

Memory used for drivers that provide BootServices.

source

pub const BootServicesData: Self = _

Memory allocated by drivers that provide BootServices.

source

pub const RuntimeServicesCode: Self = _

Memory used for drivers that provide RuntimeServices.

source

pub const RuntimeServicesData: Self = _

Memory allocated by drivers that provide RuntimeServices.

source

pub const Conventional: Self = _

Free memory.

source

pub const Unusable: Self = _

Damaged memory modules.

source

pub const ACPIReclaim: Self = _

Memory that can be used after the OS initializes ACPI.

source

pub const ACPINonVolatile: Self = _

Memory that must be preserved in ACPI states S1–S3.

source

pub const MappedIO: Self = _

Memory mapped to device I/O.

source

pub const MappedIOPortSpace: Self = _

Memory mapped to I/O ports.

source

pub const ProcessorCode: Self = _

Memory used by processor firmware code.

source

pub const Persistent: Self = _

Free nonvolatile memory.

source

pub const MinOEMDefined: Self = _

Beginning of range (inclusive) for OEM-specific memory types

source

pub const MaxOEMDefined: Self = _

End of range (inclusive) for OEM-specific memory types

source

pub const MinOSDefined: Self = _

Beginning of range (inclusive) for operating system-specific memory types

source

pub const MaxOSDefined: Self = _

End of range (inclusive) for operating system-specific memory types

source

pub const fn name(self) -> Option<&'static str>

The name of the enum variant in code, if one is defined for this value.

An identical method is available through the CEnum trait, but this version is declared const (which is currently unstable on traits).

Trait Implementations§

source§

impl CEnum<u32> for MemoryType

source§

fn name(self) -> Option<&'static str>

The name of the enum variant in code, if one is defined for this value.
source§

impl Clone for MemoryType

source§

fn clone(&self) -> MemoryType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for MemoryType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for MemoryType

source§

fn default() -> MemoryType

Returns the “default value” for a type. Read more
source§

impl From<MemoryType> for u32

source§

fn from(enum_value: MemoryType) -> Self

Converts to this type from the input type.
source§

impl From<u32> for MemoryType

source§

fn from(repr: u32) -> Self

Converts to this type from the input type.
source§

impl Hash for MemoryType

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for MemoryType

source§

fn cmp(&self, other: &MemoryType) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for MemoryType

source§

fn eq(&self, other: &MemoryType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for MemoryType

source§

fn partial_cmp(&self, other: &MemoryType) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for MemoryType

source§

impl Eq for MemoryType

source§

impl StructuralPartialEq for MemoryType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.