pub unsafe fn raw_init<T>(slot: *mut T, init: impl PinInit<T>)Expand description
Initializes slot with an initializer.
ยงSafety
slotis a valid pointer to uninitialized memory.slotwill not move until it is dropped, i.e. it will be pinned. IfinitimplementsInit<T, E>, this requirement is cancelled and it may be moved.