pub trait AllocatorImplExt: Sealed + ObjectSubclass {
    // Provided methods
    fn parent_alloc(
        &self,
        size: usize,
        params: Option<&AllocationParams>
    ) -> Result<Memory, BoolError> { ... }
    fn parent_free(&self, memory: Memory) { ... }
}

Provided Methods§

source

fn parent_alloc( &self, size: usize, params: Option<&AllocationParams> ) -> Result<Memory, BoolError>

source

fn parent_free(&self, memory: Memory)

Object Safety§

This trait is not object safe.

Implementors§