pub trait PersistentlyAllocatable {
// Provided methods
fn set_allocator(&mut self, _allocator: Arc<RwLock<BumpAllocator>>) { ... }
fn get_allocator(&self) -> Option<Arc<RwLock<BumpAllocator>>> { ... }
}pub trait PersistentlyAllocatable {
// Provided methods
fn set_allocator(&mut self, _allocator: Arc<RwLock<BumpAllocator>>) { ... }
fn get_allocator(&self) -> Option<Arc<RwLock<BumpAllocator>>> { ... }
}