String slices.| doc.rust-lang.org
A dynamically-sized view into a contiguous sequence, `[T]`.| doc.rust-lang.org
References, `&T` and `&mut T`.| doc.rust-lang.org
A single-threaded reference-counting pointer. ‘Rc’ stands for ‘Reference Counted’.| doc.rust-lang.org
A clone-on-write smart pointer.| doc.rust-lang.org
A pointer type that uniquely owns a heap allocation of type `T`.| doc.rust-lang.org
The `Option` type. See the module level documentation for more.| doc.rust-lang.org
A contiguous growable array type, written as `Vec`, short for ‘vector’.| doc.rust-lang.org
A UTF-8–encoded, growable string.| doc.rust-lang.org
Types for which it is safe to share references between threads.| doc.rust-lang.org