pub trait Allocable<T: Copy, AllocT: Allocator<T>> {
    fn new(m: &mut AllocT, init: T) -> Self;
    fn free(&mut self, m: &mut AllocT);
}

Required Methods

Implementors