[][src]Module maybe_cell::checked

Data structure variants with run-time sanity checks for debugging

Structs

Maybe

Equivalent to an UnsafeCell<MaybeUninit<T>>, this cell may hold uninitialized data.

MaybeCopy

Equivalent to an UnsafeCell<MaybeUninit<T>>, this cell may hold uninitialized data. Unlike Maybe<T> this structure is suited for data types with no Drop implementation.