use NonNull;
/// Polyfill for NonNull::from_ref
/// # Safety
/// A reference cannot be null
pub Sized>
/// Dereferences a referenced NonNull pointer
/// # Safety
/// Caller must guarantee that the pointer will be a safe reference
pub Sized>
/// Dereferences an owned NonNull pointer
/// # Safety
/// Caller must guarantee that the pointer will be a safe reference, and the lifetime is correct
pub Sized>
/// Drops the data of NonNull pointer in place
/// # Safety
/// Caller must guarantee that the pointer can be safely dropped, and will not be accessed again
pub Sized>