Crate unique[][src]

This crate provides an Unique implementation without using any unstable code that would require nightly.

Most of its documentation is directly copied from core::ptr::Unique.

Structs

Unique

A wrapper around a raw non-null *mut T that indicates that the possessor of this wrapper owns the referent. Useful for building abstractions like Box<T>, Vec<T>, String, and HashMap<K, V>.