Trait e2rcore::interface::i_alloc::IAlloc [] [src]

pub trait IAlloc {
    fn newing<T>(&mut self) -> Result<Box<T>, &'static str>;
fn freeing<T>(&mut self, _: Box<T>) -> Result<(), &'static str>; }

Required Methods

Implementors