::core::cfg_select! {
not(feature = "acknowledge-unnecessary-manually-drop") => {
#[deprecated(
since = "0.1.3",
note = "you do not need to use this type anymore, \
as you can directly use the one from the stdlib."
)]
pub type ManuallyDrop<T> = ::core::mem::ManuallyDrop<T>;
},
_ => {
#[doc(no_inline)]
pub use ::core::mem::ManuallyDrop;
},
}