pin-api 0.2.1

Experiment with Pin API.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Experiment with pinning self-referential structs.
#![cfg_attr(feature = "nightly", feature(fundamental, optin_builtin_traits, coerce_unsized, unsize))]
#![cfg_attr(not(feature = "std"), no_std)]

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

#[cfg(feature = "nightly")]
pub mod marker;
#[cfg(feature = "nightly")]
pub mod mem;
#[cfg(all(feature = "nightly", feature = "std"))]
pub mod boxed;