pub type PhysAddrRange = AddrRange<PhysAddr>;
Expand description
A range of physical addresses PhysAddr
.
Aliased Type§
struct PhysAddrRange {
pub start: PhysAddr,
pub end: PhysAddr,
}
Fields§
§start: PhysAddr
The lower bound of the range (inclusive).
end: PhysAddr
The upper bound of the range (exclusive).