Parallel version of the standard iterator trait.| docs.rs
An iterator that supports “random access” to its data, meaning that you can split it at arbitrary indices and draw data from those points.| docs.rs
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
`IntoParallelIterator` implements the conversion to a `ParallelIterator`.| docs.rs
A finite heterogeneous sequence, `(T, U, ..)`.| doc.rust-lang.org
A contiguous growable array type, written as `Vec`, short for ‘vector’.| doc.rust-lang.org
`Result` is a type that represents either success (`Ok`) or failure (`Err`).| doc.rust-lang.org
References, `&T` and `&mut T`.| doc.rust-lang.org
Types that can be transferred across thread boundaries.| doc.rust-lang.org
Conversion into an `Iterator`.| doc.rust-lang.org
The `Option` type. See the module level documentation for more.| doc.rust-lang.org
Traits for writing parallel programs using an iterator-style interface| docs.rs