Crate simple_allocator_trait

Source
Expand description

This tiny crate defines a simple allocator interface.

It is used by Compact types in the compact crate to allocate space when decompacting from their compact form.

Structs§

DefaultHeap
An implementation of Allocator that allocates using the default heap allocator

Traits§

Allocator
A trait for all allocators that collections can be generic about