Expand description
Prelude for common traits used in combination with this crate which matches the behavior of the std prelude.
Macros§
- Creates a
String
using interpolation of runtime expressions.
Structs§
- A pointer type that uniquely owns a heap allocation of type
T
. - A UTF-8–encoded, growable string.
- A contiguous growable array type, written as
Vec<T>
, short for ‘vector’.
Traits§
- Iterator extension trait.
- Extensions to
Option<T>
. - Fallible
TryClone
trait. - Marker trait for types which are
Copy
. - Extend a collection with the contents of an iterator.
- Conversion from an
Iterator
within a custom allocatorA
. - A generalization of
TryClone
to borrowed data. - A trait for converting a value to a
String
.