pointers
This crate provide two traits for generic coding:
-
[Pointer] trait:
- raw pointers:
*const T,*mut T,NonNull<T>, - owned:
Box<T>, - multiple-ownership:
Rc<T>,Arc<T>- WaitGroupZeroGuard: see the doc in
crossfirecrate
- raw pointers:
-
[SmartPointer]: type that has
new()method
Feature Flags
default: only the traits.