pub type GuestMemoryMmap<B = ()> = GuestRegionCollection<GuestRegionMmap<B>>;Available on crate feature
backend-mmap only.Expand description
GuestMemoryBackend implementation that mmaps the guest’s memory
in the current process.
Represents the entire physical memory of the guest by tracking all its memory regions.
Each region is an instance of GuestRegionMmap, being backed by a mapping in the
virtual address space of the calling process.
Aliased Type§
pub struct GuestMemoryMmap<B = ()> { /* private fields */ }