Rust CompoundsRust SliceRust ArrayRust Vector Rust By ExampleRust by Example (RBE) is a collection of runnable examples that illustrate various Rust concepts and standard libraries.https://doc.rust-lang.org/rust-by-example/primitives/tuples.htmlArrays and SlicesAn array is a collection of objects of the same type T, stored in contiguous memory. Arrays are created using brackets[], and their length, which is known at compile time, is part of their type signature[T; length]. Slices are similar to arrays, but their length is not known at compile time.https://doc.rust-lang.org/rust-by-example/primitives/array.html