standard_lib/collections/contiguous/vector/
mod.rs

1//! A module containing [`Vector`] and associtated types.
2//!
3//! Currently, the only other included type is [`IntoIter`] for owned iteration over an Vector, which
4//! is a re-export of [`array::IntoIter`](super::array::IntoIter). [`IterMut`](std::slice::IterMut)
5//! and [`Iter`](std::slice::Iter) from [`std::slice`] are used for borrowed iteration.
6//!
7//! [`Vector`] is also re-exported under the parent module.
8
9mod iter;
10mod vector;
11
12pub use iter::*;
13pub use vector::*;