[][src]Struct uefi::table::boot::MemoryDescriptor

#[repr(C)]pub struct MemoryDescriptor {
    pub ty: MemoryType,
    pub phys_start: u64,
    pub virt_start: u64,
    pub page_count: u64,
    pub att: MemoryAttribute,
    // some fields omitted
}

A structure describing a region of memory.

Fields

ty: MemoryType

Type of memory occupying this range.

phys_start: u64

Starting physical address.

virt_start: u64

Starting virtual address.

page_count: u64

Number of 4 KiB pages contained in this range.

att: MemoryAttribute

The capability attributes of this memory range.

Trait Implementations

impl Align for MemoryDescriptor[src]

impl Clone for MemoryDescriptor[src]

impl Copy for MemoryDescriptor[src]

impl Debug for MemoryDescriptor[src]

impl Default for MemoryDescriptor[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.