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