unique_pointer/
lib.rs

1#![allow(unused)]
2#![feature(intra_doc_pointers)]
3pub mod traits;
4pub use traits::UniquePointee;
5pub mod unique_pointer;
6pub use unique_pointer::UniquePointer;
7pub mod refcounter;
8pub use refcounter::RefCounter;