xref: /aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/cxx-1.0.120/src/memory.rs (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 //! Less used details of `UniquePtr` and `SharedPtr`.
2 //!
3 //! The pointer types themselves are exposed at the crate root.
4 
5 pub use crate::shared_ptr::SharedPtrTarget;
6 pub use crate::unique_ptr::UniquePtrTarget;
7 pub use crate::weak_ptr::WeakPtrTarget;
8 #[doc(no_inline)]
9 pub use cxx::{SharedPtr, UniquePtr};
10