Expand description
Compatibility layer for no_std compilations.
Modules
- A hash map implemented with quadratic probing and SIMD lookup.
- A contiguous growable array type with heap-allocated contents, written
Vec<T>.
Macros
- Creates a
Veccontaining the arguments.
Structs
- A pointer type that uniquely owns a heap allocation of type
T. - A hash map implemented with quadratic probing and SIMD lookup.
- A UTF-8–encoded, growable string.
- A contiguous growable array type, written as
Vec<T>, short for ‘vector’.
Traits
- A trait for converting a value to a
String.
Type Definitions
- Default hasher for
HashMap.