Module prelude
Source - vec
- A contiguous growable array type with heap-allocated contents, written
Vec<T>.
- format
- Creates a
String using interpolation of runtime expressions. - vec
- Creates a
Vec containing the arguments.
- Box
- A pointer type that uniquely owns a heap allocation of type
T. - IoSlice
- A buffer type used with
Write::write_vectored. - String
- A UTF-8–encoded, growable string.
- Vec
- A contiguous growable array type, written as
Vec<T>, short for ‘vector’.