Expand description
Implements dynamically typed arenas, where any type of item can be allocated.
Structs§
- Dynamic
Arena - An arena allocator where any type of object can be allocated.
- NonSend
- Marker type that indiates everything in the
DynamicArenaisn’t nesicarrilySend. - Sendable
- Marker type that indicates you expect everything in the
DynamicArenato beSend
Traits§
- Send
Ability - Marker trait that indicates whether or a
DynamicArenamay be sent across threads
Type Aliases§
- Dynamic
Send Arena - An alias for an arena allocator which requires that everything is
Send + 'a.