pub type GuestPhysAddrRange = AddrRange<GuestPhysAddr>;Expand description
Guest physical address range.
Aliased Type§
pub struct GuestPhysAddrRange {
pub start: GuestPhysAddr,
pub end: GuestPhysAddr,
}Fields§
§start: GuestPhysAddrThe lower bound of the range (inclusive).
end: GuestPhysAddrThe upper bound of the range (exclusive).