bointer 0.2.0

Assorted pointer-related utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]

#[cfg(feature = "alloc")]
extern crate alloc;

pub use option::{AsRawMutPtr, AsRawPtr};
pub use repr_transparent::ReprTransparent;

#[cfg(feature = "derive")]
pub use bointer_derive::ReprTransparent;

mod option;
mod repr_transparent;