Module static_alloc::unsync[][src]

Expand description

An unsynchronized allocator.

Structs

Bump

A bump allocator whose storage capacity and alignment is given by T.

Chain

A Chain is a simple bump allocator, that draws it’s memory from another allocator. Chain allocators can be chained together using Chain::chain.

MemBump

A dynamically sized allocation block in which any type can be allocated.