Type Alias VirtAddrRange

Source
pub type VirtAddrRange = AddrRange<VirtAddr>;
Expand description

A range of virtual addresses VirtAddr.

Aliased Type§

struct VirtAddrRange {
    pub start: VirtAddr,
    pub end: VirtAddr,
}

Fields§

§start: VirtAddr

The lower bound of the range (inclusive).

§end: VirtAddr

The upper bound of the range (exclusive).