Modules§
- owning_
ref - Functions to produce an
OwningRef<'_, T>
, a.k.a. aBox<T, NoopAllocator<'_>>
, from a mutably borrowedMaybeUninit<T>
orManuallyDrop<T>
. - owning_
slice - Functions to produce an
OwningSlice<'_, T>
, a.k.a. aVec<T, NoopAllocator<'_>>
, from mutably borrowedMaybeUninit<T>
s.
Structs§
- Noop
Allocator - An
Allocator
that does nothing.