pub type Vector<T> = CxxVector<T>;
Synonym for CxxVector.
CxxVector
To avoid confusion with Rust’s standard library vector you probably shouldn’t import this type with use. Instead, write cxx::Vector<T>, or import and use CxxVector.
use
cxx::Vector<T>