pub type DefaultInPlaceFn = for<'mem> unsafe fn(target: PtrUninit<'mem>) -> PtrMut<'mem>;
Function to set a value to its default in-place
The target parameter has the correct layout and alignment, but points to uninitialized memory. The function returns the same pointer wrapped in an PtrMut.
target
PtrMut