Crate rustc_arena[][src]

Expand description

The arena, a fast but limited type of allocator.

Arenas are a type of allocator that destroy the objects within, all at once, once the arena itself is destroyed. They do not support deallocation of individual objects while the arena itself is still alive. The benefit of an arena is very fast allocation; just a pointer bump.

This crate implements several kinds of arena.

Macros

Structs

An arena which can be used to allocate any type.

Calls the destructor for an object when dropped.

An arena that can hold objects of only one type.

Constants

Traits

Functions