Structs§
- Initializing
Slice 🔒 - Ownership of a collection of values stored in a non-owned
[MaybeUninit<T>]
, some of which are not yet initialized. This is sort of like aVec
that doesn’t own its allocation. Its responsibility is to provide cleanup on unwind by dropping the values that are initialized, unless disarmed by forgetting.
Traits§
- Copy
Spec 🔒 - Private specialization trait used by CloneToUninit, as per the dev guide.