2020-12-26 16:42:44 +01:00
|
|
|
use core::cell::UnsafeCell;
|
|
|
|
use core::mem::MaybeUninit;
|
|
|
|
use core::ptr;
|
|
|
|
|
|
|
|
pub(crate) struct UninitCell<T>(MaybeUninit<UnsafeCell<T>>);
|
|
|
|
impl<T> UninitCell<T> {
|
|
|
|
pub const fn uninit() -> Self {
|
|
|
|
Self(MaybeUninit::uninit())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn as_mut_ptr(&self) -> *mut T {
|
|
|
|
(*self.0.as_ptr()).get()
|
|
|
|
}
|
|
|
|
|
2021-10-18 00:55:43 +02:00
|
|
|
#[allow(clippy::mut_from_ref)]
|
2020-12-26 16:42:44 +01:00
|
|
|
pub unsafe fn as_mut(&self) -> &mut T {
|
|
|
|
&mut *self.as_mut_ptr()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn write(&self, val: T) {
|
|
|
|
ptr::write(self.as_mut_ptr(), val)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn drop_in_place(&self) {
|
|
|
|
ptr::drop_in_place(self.as_mut_ptr())
|
|
|
|
}
|
|
|
|
}
|