unsaferef 0.1.0

An unsafe reference without explicit lifetime
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[doc(hidden)]
#[doc = include_str!("../README.md")]
mod test_readme {}

mod unsafe_ref;
pub use unsafe_ref::UnsafeRef;

#[cfg(feature="alloc")]
mod unsafe_cow;
#[cfg(feature="alloc")]
pub use unsafe_cow::UnsafeCow;