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§
- borrow
- A module for working with borrowed data.
- boxed
- The
Box<T>
type for heap allocation. - collections
- Collection types.
- io
- Traits, helpers, and type definitions for core I/O functionality.
- rc
- Single-threaded reference-counting pointers. ‘Rc’ stands for ‘Reference Counted’.
- string
- A UTF-8–encoded, growable string.
- sync
- Useful synchronization primitives.
- vec
- A contiguous growable array type with heap-allocated contents, written
Vec<T>
.