Expand description
Prelude of common useful imports.
This should include only things which are in the normal std prelude.
Structs
- A pointer type that uniquely owns a heap allocation of typeT.
- A helper struct for reverse ordering.
- A contiguous growable array type, written asVec<T>, short for ‘vector’.
Traits
- A common trait for the ability to explicitly duplicate an object.
- Trait for equality comparisons which are equivalence relations.
- Conversion into anIterator.
- Trait for equality comparisons.
- A generalization ofCloneto borrowed data.
Derive Macros
- Derive macro generating an impl of the traitClone.
- Derive macro generating an impl of the traitEq.