#[repr(C)]
pub struct MemoryRegion { pub start: u64, pub end: u64, pub kind: MemoryRegionKind, }
Expand description

Represent a physical memory region.

Fields

start: u64

The physical start address of the region.

end: u64

The physical end address (exclusive) of the region.

kind: MemoryRegionKind

The memory type of the memory region.

Only Usable regions can be freely used.

Implementations

Creates a new empty memory region (with length 0).

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.