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