Expand description
Prelude of common useful imports.
This should include only things which are in the normal std prelude.
Structs§
- Box
- A pointer type that uniquely owns a heap allocation of type
T
. - Reverse
- A helper struct for reverse ordering.
- Vec
- A contiguous growable array type, written as
Vec<T>
, short for ‘vector’.
Traits§
- Clone
- A common trait that allows explicit creation of a duplicate value.
- Eq
- Trait for comparisons corresponding to equivalence relations.
- Partial
Eq - Trait for comparisons using the equality operator.