Trait alloc_no_stdlib::Allocator
source · pub trait Allocator<T> {
type AllocatedMemory: AllocatedSlice<T>;
// Required methods
fn alloc_cell(&mut self, len: usize) -> Self::AllocatedMemory;
fn free_cell(&mut self, data: Self::AllocatedMemory);
}