maybe_dangling/lib.rs
1#![doc = include_str!("../README.md")]
2#![no_std]
3#![deny(unsafe_code)]
4#![cfg_attr(feature = "nightly-dropck_eyepatch", feature(dropck_eyepatch))]
5
6pub use self::maybe_dangling::MaybeDangling;
7mod maybe_dangling;
8
9#[allow(deprecated)]
10pub use manually_drop::ManuallyDrop;
11mod manually_drop;
12
13#[doc(hidden)]
14/** Not part of the public API */
15pub mod ඞ {
16 pub use ::core;
17}