Trait arc_swap::RefCnt [−][src]
pub unsafe trait RefCnt: Clone { type Base; fn into_ptr(me: Self) -> *mut Self::Base; fn as_ptr(me: &Self) -> *mut Self::Base; unsafe fn from_ptr(ptr: *const Self::Base) -> Self; fn inc(me: &Self) { ... } unsafe fn dec(ptr: *const Self::Base) { ... } }
Expand description
A trait describing smart reference counted pointers.
Note that in a way Option<Arc<T>>
is also a smart reference counted pointer, just one that
can hold NULL.
The trait is unsafe, because a wrong implementation will break the
ArcSwapAny
implementation and lead to UB.
This is not actually expected for downstream crate to implement, this is just means to reuse
code for Arc
and Option<Arc>
variants. However, it is theoretically possible (if you have
your own Arc
implementation).
It is also implemented for Rc
, but that is not considered very useful (because the
ArcSwapAny
is not Send
or Sync
, therefore there’s very little advantage for it to be
atomic).
Aside from the obvious properties (like that incrementing and decrementing a reference count
cancel each out and that having less references tracked than how many things actually point to
the value is fine as long as the count doesn’t drop to 0), it also must satisfy that if two
pointers have the same value, they point to the same object. This is specifically not true for
ZSTs, but it is true for Arc
s of ZSTs, because they have the reference counts just after the
value. It would be fine to point to a type-erased version of the same object, though (if one
could use this trait with unsized types in the first place).
Furthermore, the type should be Pin (eg. if the type is cloned or moved, it should still point/deref to the same place in memory).
Associated Types
Required methods
fn as_ptr(me: &Self) -> *mut Self::Base
[src]
fn as_ptr(me: &Self) -> *mut Self::Base
[src]Provides a view into the smart pointer as a raw pointer.
This must not affect the reference count ‒ the pointer is only borrowed.
unsafe fn from_ptr(ptr: *const Self::Base) -> Self
[src]
unsafe fn from_ptr(ptr: *const Self::Base) -> Self
[src]Converts a raw pointer back into the smart pointer, without affecting the reference count.
This is only called on values previously returned by into_ptr
.
However, it is not guaranteed to be 1:1 relation ‒ from_ptr
may be called more times than
into_ptr
temporarily provided the reference count never drops under 1 during that time
(the implementation sometimes owes a reference). These extra pointers will either be
converted back using into_ptr
or forgotten.
Provided methods
Implementations on Foreign Types
impl<T> RefCnt for Arc<T>
[src]
impl<T> RefCnt for Arc<T>
[src]impl<T> RefCnt for Rc<T>
[src]
impl<T> RefCnt for Rc<T>
[src]impl<T: RefCnt> RefCnt for Option<T>
[src]
impl<T: RefCnt> RefCnt for Option<T>
[src]