[][src]Struct bootloader::bootinfo::MemoryRegion

#[repr(C)]
pub struct MemoryRegion {
    pub range: FrameRange,
    pub region_type: MemoryRegionType,
}

Represents a region of physical memory.

Fields

range: FrameRange

The range of frames that belong to the region.

region_type: MemoryRegionType

The type of the region.

Trait Implementations

impl Clone for MemoryRegion[src]

impl Copy for MemoryRegion[src]

impl Debug for MemoryRegion[src]

impl Eq for MemoryRegion[src]

impl PartialEq<MemoryRegion> for MemoryRegion[src]

impl StructuralEq for MemoryRegion[src]

impl StructuralPartialEq for MemoryRegion[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.