1 //! Less used details of `CxxVector`. 2 //! 3 //! `CxxVector` itself is exposed at the crate root. 4 5 pub use crate::cxx_vector::{Iter, IterMut, VectorElement}; 6 #[doc(inline)] 7 pub use crate::Vector; 8 #[doc(no_inline)] 9 pub use cxx::CxxVector; 10