Available on crate feature
std
only.Expand description
Custom std
module.
Modules§
- Utilities for dynamic typing or type reflection.
- A module for working with borrowed data.
- The
Box<T>
type for heap allocation. - Shareable mutable containers.
- Utilities for comparing and ordering values.
- Traits for conversions between types.
- Utilities for formatting and printing
String
s. - Generic hashing support.
- Composable external iteration.
- Primitive traits and types representing basic properties of types.
- Basic functions for dealing with memory.
- Overloadable operators.
- Manually manage memory through raw pointers.
- Single-threaded reference-counting pointers. ‘Rc’ stands for ‘Reference Counted’.
- Utilities for the slice primitive type.
- A UTF-8–encoded, growable string.
- Useful synchronization primitives.
- A contiguous growable array type with heap-allocated contents, written
Vec<T>
.
Macros§
- Creates a
String
using interpolation of runtime expressions. - Creates a
Vec
containing the arguments.