aboutsummaryrefslogtreecommitdiff
path: root/src/memory.rs
blob: fd8df12a8bc52db5a9d675ef1667bd3caae489bc (plain)
1
2
3
4
5
6
7
8
9
//! Less used details of `UniquePtr` and `SharedPtr`.
//!
//! The pointer types themselves are exposed at the crate root.

pub use crate::shared_ptr::SharedPtrTarget;
pub use crate::unique_ptr::UniquePtrTarget;
pub use crate::weak_ptr::WeakPtrTarget;
#[doc(no_inline)]
pub use cxx::{SharedPtr, UniquePtr};