Module collections
Available on crate feature
dep_bumpalo
only.Expand description
Collection types that allocate inside a Bump
arena.
Modules§
- string
- A UTF-8 encoded, growable string.
- vec
- A contiguous growable array type with heap-allocated contents, written
Vec<'bump, T>
.
Structs§
- String
- A UTF-8 encoded, growable string.
- Vec
- A contiguous growable array type, written
Vec<'bump, T>
but pronounced ‘vector’.
Enums§
- Collection
Alloc Err - Augments
AllocErr
with aCapacityOverflow
variant.
Traits§
- Collect
In - Extension trait for iterators, in order to allow allocator-parameterized collections to be constructed more easily.
- From
Iterator In - A trait for types that support being constructed from an iterator, parameterized by an allocator.