Crate dynamic_arena

Crate dynamic_arena 

Source
Expand description

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.
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 Aliases§

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