| commit | c2c1e3bc25126332ab99c37d66755886f238e84a | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Thu Mar 25 00:53:32 2021 -0400 |
| committer | David Tolnay <dtolnay@gmail.com> | Thu Mar 25 00:55:24 2021 -0400 |
| tree | 5a946bfaa55a06947453bfc382bdbb27a3700f74 | |
| parent | c27a656c98ce5a37f6826ef55c5bed31d1e13d0f [diff] [blame] |
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;