Expand description
Less used details of CxxVector.
CxxVector itself is exposed at the crate root.
Structs§
- CxxVector
- Binding to C++
std::vector<T, std::allocator<T>>. - Iter
- Iterator over elements of a
CxxVectorby shared reference. - IterMut
- Iterator over elements of a
CxxVectorby pinned mutable reference.
Traits§
- Vector
Element - Trait bound for types which may be used as the
Tinside of aCxxVector<T>in generic code.
Type Aliases§
- Vector
- Synonym for
CxxVector.