maybe-dangling 0.1.3-rc1

`ManuallyDrop<T>` and `MaybeDangling<T>` semantics in stable Rust as per https://github.com/rust-lang/rfcs/pull/3336
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]
#![no_std]
#![deny(unsafe_code)]
#![cfg_attr(feature = "nightly-dropck_eyepatch", feature(dropck_eyepatch))]

pub use self::maybe_dangling::MaybeDangling;
mod maybe_dangling;

#[allow(deprecated)]
pub use manually_drop::ManuallyDrop;
mod manually_drop;

#[doc(hidden)]
/** Not part of the public API */
pub mod  {
    pub use ::core;
}