Module checked

Module checked 

Source
Expand description

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.