[][src]Crate dynamic_arena

Implements dynamically typed arenas, where any type of item can be allocated.

Structs

DynamicArena

An arena allocator where any type of object can be allocated.

Enums

NonSend

Marker type that indiates everything in the DynamicArena isn't nesicarrily Send.

Sendable

Marker type that indicates you expect everything in the DynamicArena to be Send

Traits

SendAbility

Marker trait that indicates whether or a DynamicArena may be sent across threads

Type Definitions

DynamicSendArena

An alias for an arena allocator which requires that everything is Send + 'a.