Expand description
A facade around all the types we need from the std
, core
, and alloc
crates. This avoids elaborate import wrangling having to happen in every
module.
Modules
A module for working with borrowed data.
A pointer type for heap allocation.
Collection types.
Traits, helpers, and type definitions for core I/O functionality.
Single-threaded reference-counting pointers. ‘Rc’ stands for ‘Reference Counted’.
A UTF-8–encoded, growable string.
Useful synchronization primitives.
A contiguous growable array type with heap-allocated contents, written
Vec<T>
.