Simple and safe type conversions that may fail in a controlled way under some circumstances. It is the reciprocal of `TryInto`.| doc.rust-lang.org
A value-to-value conversion that consumes the input value. The opposite of `From`.| doc.rust-lang.org
The 128-bit unsigned integer type.| doc.rust-lang.org
A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.| doc.rust-lang.org
String slices.| doc.rust-lang.org
The 64-bit signed integer type.| doc.rust-lang.org
The 8-bit unsigned integer type.| doc.rust-lang.org
A dynamically-sized view into a contiguous sequence, `[T]`.| doc.rust-lang.org
The 32-bit signed integer type.| doc.rust-lang.org
A UTF-8–encoded, growable string.| doc.rust-lang.org
An implementation of `Allocator` can allocate, grow, shrink, and deallocate arbitrary blocks of data described via `Layout`.| doc.rust-lang.org
A SIMD vector with the shape of `[T; N]` but the operations of `T`.| doc.rust-lang.org
The 32-bit unsigned integer type.| doc.rust-lang.org
A fixed-size array, denoted `[T; N]`, for the element type, `T`, and the non-negative compile-time constant size, `N`.| doc.rust-lang.org
Types whose values can be duplicated simply by copying bits.| doc.rust-lang.org
A contiguous growable array type, written as `Vec`, short for ‘vector’.| doc.rust-lang.org
A pointer type that uniquely owns a heap allocation of type `T`.| doc.rust-lang.org