Union std::mem::ManuallyDrop 1.20.0
[−]
[src]
A wrapper to inhibit compiler from automatically calling T
’s destructor.
This wrapper is 0-cost.
Examples
This wrapper helps with explicitly documenting the drop order dependencies between fields of the type:
use std::mem::ManuallyDrop; struct Peach; struct Banana; struct Melon; struct FruitBox { // Immediately clear there’s something non-trivial going on with these fields. peach: ManuallyDrop<Peach>, melon: Melon, // Field that’s independent of the other two. banana: ManuallyDrop<Banana>, } impl Drop for FruitBox { fn drop(&mut self) { unsafe { // Explicit ordering in which field destructors are run specified in the intuitive // location – the destructor of the structure containing the fields. // Moreover, one can now reorder fields within the struct however much they want. ManuallyDrop::drop(&mut self.peach); ManuallyDrop::drop(&mut self.banana); } // After destructor for `FruitBox` runs (this function), the destructor for Melon gets // invoked in the usual manner, as it is not wrapped in `ManuallyDrop`. } }Run
Methods
impl<T> ManuallyDrop<T>
[src]
[−]
impl<T> ManuallyDrop<T>
pub fn new(value: T) -> ManuallyDrop<T>
[src]
[−]
pub fn new(value: T) -> ManuallyDrop<T>
Wrap a value to be manually dropped.
Examples
use std::mem::ManuallyDrop; ManuallyDrop::new(Box::new(()));Run
pub fn into_inner(slot: ManuallyDrop<T>) -> T
[src]
[−]
pub fn into_inner(slot: ManuallyDrop<T>) -> T
Extract the value from the ManuallyDrop container.
Examples
use std::mem::ManuallyDrop; let x = ManuallyDrop::new(Box::new(())); let _: Box<()> = ManuallyDrop::into_inner(x);Run
pub unsafe fn drop(slot: &mut ManuallyDrop<T>)
[src]
[−]
pub unsafe fn drop(slot: &mut ManuallyDrop<T>)
Manually drops the contained value.
Safety
This function runs the destructor of the contained value and thus the wrapped value now represents uninitialized data. It is up to the user of this method to ensure the uninitialized data is not actually used.
Trait Implementations
impl<T> Copy for ManuallyDrop<T> where
T: Copy,
[src]
impl<T> Copy for ManuallyDrop<T> where
T: Copy,
impl<T> DerefMut for ManuallyDrop<T>
[src]
[+]
impl<T> DerefMut for ManuallyDrop<T>
impl<T> Debug for ManuallyDrop<T> where
T: Debug,
[src]
[+]
impl<T> Debug for ManuallyDrop<T> where
T: Debug,
impl<T> Ord for ManuallyDrop<T> where
T: Ord,
1.22.0[src]
[+]
impl<T> Ord for ManuallyDrop<T> where
T: Ord,
1.22.0
[src]impl<T> Hash for ManuallyDrop<T> where
T: Hash,
1.22.0[src]
[+]
impl<T> Hash for ManuallyDrop<T> where
T: Hash,
1.22.0
[src]impl<T> PartialEq<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialEq<T>,
1.22.0[src]
[+]
impl<T> PartialEq<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialEq<T>,
1.22.0
[src]impl<T> Deref for ManuallyDrop<T>
[src]
[+]
impl<T> Deref for ManuallyDrop<T>
impl<T> Default for ManuallyDrop<T> where
T: Default,
1.22.0[src]
[+]
impl<T> Default for ManuallyDrop<T> where
T: Default,
1.22.0
[src]impl<T> Clone for ManuallyDrop<T> where
T: Clone,
1.22.0[src]
[+]
impl<T> Clone for ManuallyDrop<T> where
T: Clone,
1.22.0
[src]impl<T> PartialOrd<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialOrd<T>,
1.22.0[src]
[+]
impl<T> PartialOrd<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialOrd<T>,
1.22.0
[src]impl<T> Eq for ManuallyDrop<T> where
T: Eq,
1.22.0[src]
impl<T> Eq for ManuallyDrop<T> where
T: Eq,
1.22.0
[src]Auto Trait Implementations
impl<T> Send for ManuallyDrop<T> where
T: Send,
impl<T> Send for ManuallyDrop<T> where
T: Send,
impl<T> Sync for ManuallyDrop<T> where
T: Sync,
impl<T> Sync for ManuallyDrop<T> where
T: Sync,