pub struct VmMemoryAllocator {
pub vm_memory_seed: String,
pub vm_memory: Arc<VmMemory>,
}Fields§
§vm_memory_seed: String§vm_memory: Arc<VmMemory>Implementations§
Source§impl VmMemoryAllocator
impl VmMemoryAllocator
pub fn initial() -> VmMemoryAllocator
pub fn reallocate(&mut self, seed: String)
Trait Implementations§
Source§impl Clone for VmMemoryAllocator
impl Clone for VmMemoryAllocator
Source§fn clone(&self) -> VmMemoryAllocator
fn clone(&self) -> VmMemoryAllocator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VmMemoryAllocator
impl RefUnwindSafe for VmMemoryAllocator
impl Send for VmMemoryAllocator
impl Sync for VmMemoryAllocator
impl Unpin for VmMemoryAllocator
impl UnsafeUnpin for VmMemoryAllocator
impl UnwindSafe for VmMemoryAllocator
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