pub trait EAllocatable {
    unsafe fn free(ptr: *mut Self) { ... }
}
Expand description

The item which can be placed into container EBox.

Provided Methods

The method to free the heap allocated by emalloc, should call efree at the end.

Safety

Implementors