Structs§
- Unsafe
Pinned Experimental - This type provides a way to entirely opt-out of typical aliasing rules;
specifically,
&mut UnsafePinned<T>
is not guaranteed to be a unique pointer. This also subsumes the effects ofUnsafeCell
, i.e.,&UnsafePinned<T>
may point to data that is being mutated.