We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
impl<T> From<T> for ManuallyDrop<T>
1 parent b38c598 commit 401f75aCopy full SHA for 401f75a
library/core/src/mem/manually_drop.rs
@@ -276,11 +276,3 @@ impl<T: ?Sized> DerefMut for ManuallyDrop<T> {
276
277
#[unstable(feature = "deref_pure_trait", issue = "87121")]
278
unsafe impl<T: ?Sized> DerefPure for ManuallyDrop<T> {}
279
-
280
-#[stable(feature = "from_wrapper_impls", since = "CURRENT_RUSTC_VERSION")]
281
-impl<T> From<T> for ManuallyDrop<T> {
282
- #[inline(always)]
283
- fn from(value: T) -> Self {
284
- Self::new(value)
285
- }
286
-}
0 commit comments