box_raw_ptr-0.1.8 has been yanked.
box_raw_ptr
box_raw_ptr is a Rust library providing safe wrappers for working with raw pointers, specifically *const T and *mut T. These wrappers ensure memory safety by encapsulating the raw pointers in safe abstractions and providing safe methods for working with them.
Description
box_raw_ptr is a Rust library that offers safe wrappers for working with raw pointers, specifically *const T and *mut T. These wrappers ensure memory safety by encapsulating the raw pointers within safe abstractions and providing methods that guarantee safe usage.
Features
- ConstRawPtr: A wrapper for
*const Tproviding methods for safely working with constant raw pointers. - MutRawPtr: A wrapper for
*mut Tproviding methods for safely working with mutable raw pointers.
Example
use ConstRawPtr;