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

Provided Methods§

source

fn set_allocator(&mut self, _allocator: Arc<RwLock<BumpAllocator>>)

source

fn get_allocator(&self) -> Option<Arc<RwLock<BumpAllocator>>>

Implementations on Foreign Types§

source§

impl PersistentlyAllocatable for char

source§

impl PersistentlyAllocatable for i8

source§

impl PersistentlyAllocatable for i16

source§

impl PersistentlyAllocatable for i32

source§

impl PersistentlyAllocatable for i64

source§

impl PersistentlyAllocatable for i128

source§

impl PersistentlyAllocatable for isize

source§

impl PersistentlyAllocatable for u8

source§

impl PersistentlyAllocatable for u16

source§

impl PersistentlyAllocatable for u32

source§

impl PersistentlyAllocatable for u64

source§

impl PersistentlyAllocatable for u128

source§

impl PersistentlyAllocatable for usize

Implementors§