Crate feanor_mempool
Source - dynsize
- Implementation of a memory pool supporting arbitrary allocations.
- fixedsize
- Implementation of a memory pool supporting only allocations of a fixed layout.
- AllocArc
- An
Arc pointing to an Allocator. As opposed to Arc<A>, the type AllocArc<A>
implements again Allocator. - AllocRc
- An
Rc pointing to an Allocator. As opposed to Rc<A>, the type AllocRc<A>
implements again Allocator.