pub trait AllocatorExt: 'static {
    // Required methods
    fn alloc(
        &self,
        size: usize,
        params: Option<&AllocationParams>
    ) -> Result<Memory, BoolError>;
    fn set_default(self);
}

Required Methods§

Implementors§