No-inline documentation of CxxVector within cxx::vector module
diff --git a/src/vector.rs b/src/vector.rs
new file mode 100644
index 0000000..47eb60d
--- /dev/null
+++ b/src/vector.rs
@@ -0,0 +1,8 @@
+//! Less used details of `CxxVector` are exposed in this module. `CxxVector`
+//! itself is exposed at the crate root.
+
+pub use crate::cxx_vector::{Iter, IterMut};
+#[doc(no_inline)]
+pub use crate::CxxVector;
+#[doc(inline)]
+pub use crate::Vector;