Skip to content

Commit 2b44138

Browse files
committed
add framing for stdlib replacement types
1 parent 0b85b54 commit 2b44138

6 files changed

Lines changed: 10 additions & 0 deletions

File tree

src/data/arc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/data/boxed.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/data/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pub mod arc;
2+
pub mod boxed;
3+
pub mod rc;
4+
pub mod vec;

src/data/rc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/data/vec/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,8 @@ macro_rules! assert_unsafe_precondition {
358358
};
359359
}
360360

361+
#[doc(hidden)] pub mod data;
362+
361363
/// All traits provided by this crate.
362364
pub mod traits;
363365

0 commit comments

Comments
 (0)