1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use core::fmt::Debug; /// Trait for [type constructors](https://en.wikipedia.org/wiki/Type_constructor) of /// reference-counting pointers. // // There are two conditions for types implementing this trait to be used in a safe way: // // 1. Always use the correct type `T`. // 2. Make sure that you use it wrapped in something that derives the correct auto-traits taking // into account the type of `T`. // // To elaborate on point 2: a `ArcK` will always implement `Send + Sync`, but that // is only safe if the actually type that `ArcK` holds is in fact `Send + Sync`. // This means that a safe wrapper around this type must make sure it does not implement // `Send + Sync` unless `T: Send + Sync`. This is holds true for `SharedPointer` since it has a // phantom field with `T`, thus the compiler will only make `SharedPointer<T>` implement // `Send + Sync` if `T: Send + Sync`. pub trait SharedPointerKind: Sized + Debug { fn new<T>(v: T) -> Self; fn from_box<T>(v: Box<T>) -> Self; unsafe fn deref<T>(&self) -> &T; unsafe fn try_unwrap<T>(self) -> Result<T, Self>; unsafe fn get_mut<T>(&mut self) -> Option<&mut T>; unsafe fn make_mut<T: Clone>(&mut self) -> &mut T; unsafe fn strong_count<T>(&self) -> usize; unsafe fn clone<T>(&self) -> Self; unsafe fn drop<T>(&mut self); } mod arc; mod rc; use alloc::boxed::Box; #[doc(inline)] pub use arc::ArcK; #[doc(inline)] pub use rc::RcK;