Trait HasPaddrRange

Source
pub trait HasPaddrRange: HasPaddr + HasSize {
    // Required methods
    fn end_paddr(&self) -> Paddr;
    fn paddr_range(&self) -> Range<Paddr>;
}
Expand description

Memory objects that have a physical address range.

Required Methods§

Source

fn end_paddr(&self) -> Paddr

Returns the end physical address of the memory object.

Source

fn paddr_range(&self) -> Range<Paddr>

Returns the physical address range of the memory object.

Implementors§