Expand description
This crate provides an Unique implementation
without using any unstable code that would require
nightly.
Look at the Unique definition for more info.
Structsยง
- Unique
- A wrapper around a raw non-null
*mut Tthat indicates that the possessor of this wrapper owns the referent. Useful for building abstractions likeBox<T>,Vec<T>,String, andHashMap<K, V>.