pub struct VmMemory {
pub seed_memory: SeedMemory,
pub dataset_memory: RwLock<Vec<Option<[u64; 8]>>>,
pub cache: bool,
}Fields§
§seed_memory: SeedMemory§dataset_memory: RwLock<Vec<Option<[u64; 8]>>>§cache: boolImplementations§
Auto Trait Implementations§
impl !Freeze for VmMemory
impl RefUnwindSafe for VmMemory
impl Send for VmMemory
impl Sync for VmMemory
impl Unpin for VmMemory
impl UnsafeUnpin for VmMemory
impl UnwindSafe for VmMemory
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