pub use crate*;
pub use crate*;
/// Dereference a pointer to the item it points
/// to in memory and borrow it mutably.
///
/// Safety assumptions:
/// - `ptr` absolutely *cannot* be null, otherwise the program will panic
/// or see undefined behavior.
pub unsafe
/// Dereference a pointer to the item it points
/// to in memory and borrow it.
///
/// Safety assumptions:
/// - `ptr` absolutely *cannot* be null, otherwise the program will panic
/// or see undefined behavior.
pub unsafe