Expand description
This module provides a trait and some auxiliary types to help abstract and work with non-null pointers.
Structs§
- ArcRef
- A type that represents
&'a Arc<T>
. - BoxRef
- A type that represents
&'a Box<T>
. - WeakRef
- A type that represents
&'a Weak<T>
.
Traits§
- NonNull
Ptr - A trait that abstracts non-null pointers.