We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b85b54 commit 2b44138Copy full SHA for 2b44138
6 files changed
src/data/arc.rs
@@ -0,0 +1 @@
1
+
src/data/boxed.rs
src/data/mod.rs
@@ -0,0 +1,4 @@
+pub mod arc;
2
+pub mod boxed;
3
+pub mod rc;
4
+pub mod vec;
src/data/rc.rs
src/data/vec/mod.rs
src/lib.rs
@@ -358,6 +358,8 @@ macro_rules! assert_unsafe_precondition {
358
};
359
}
360
361
+#[doc(hidden)] pub mod data;
362
363
/// All traits provided by this crate.
364
pub mod traits;
365
0 commit comments