pub struct VmMemoryRegionState {
pub(crate) mapped_regions: HashMap<Alloc, VmMappedMemoryRegion>,
pub(crate) registered_memory: BTreeMap<VmMemoryRegionId, RegisteredMemory>,
}Fields§
§mapped_regions: HashMap<Alloc, VmMappedMemoryRegion>§registered_memory: BTreeMap<VmMemoryRegionId, RegisteredMemory>Trait Implementations§
Source§impl Default for VmMemoryRegionState
impl Default for VmMemoryRegionState
Source§fn default() -> VmMemoryRegionState
fn default() -> VmMemoryRegionState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VmMemoryRegionState
impl RefUnwindSafe for VmMemoryRegionState
impl Send for VmMemoryRegionState
impl Sync for VmMemoryRegionState
impl Unpin for VmMemoryRegionState
impl UnwindSafe for VmMemoryRegionState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more