Type Alias VirtAddrRange
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: VirtAddrThe lower bound of the range (inclusive).
end: VirtAddrThe upper bound of the range (exclusive).