pub type DefaultInPlaceFn = for<'mem> unsafe fn(target: OpaqueUninit<'mem>) -> Opaque<'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 Opaque.
target
Opaque