1.20.0[−][src]Struct std::mem::ManuallyDrop
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 const fn new(value: T) -> ManuallyDrop<T>[src]
pub const 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>) -> Timpl<T> ManuallyDrop<T> where
T: ?Sized, [src]
impl<T> ManuallyDrop<T> where
T: ?Sized, pub unsafe fn drop(slot: &mut ManuallyDrop<T>)[src]
pub unsafe fn drop(slot: &mut ManuallyDrop<T>)Manually drops the contained value.
If you have ownership of the value, you can use ManuallyDrop::into_inner instead.
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> DerefMut for ManuallyDrop<T> where
T: ?Sized, [src]
impl<T> DerefMut for ManuallyDrop<T> where
T: ?Sized, fn deref_mut(&mut self) -> &mut <ManuallyDrop<T> as Deref>::Target[src]
fn deref_mut(&mut self) -> &mut <ManuallyDrop<T> as Deref>::TargetMutably dereferences the value.
impl<T> Default for ManuallyDrop<T> where
T: Default + ?Sized, [src]
impl<T> Default for ManuallyDrop<T> where
T: Default + ?Sized, fn default() -> ManuallyDrop<T>[src]
fn default() -> ManuallyDrop<T>Returns the "default value" for a type. Read more
impl<T> Hash for ManuallyDrop<T> where
T: Hash + ?Sized, [src]
impl<T> Hash for ManuallyDrop<T> where
T: Hash + ?Sized, fn hash<__HT>(&self, state: &mut __HT) where
__HT: Hasher, [src]
fn hash<__HT>(&self, state: &mut __HT) where
__HT: Hasher, Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl<T> Deref for ManuallyDrop<T> where
T: ?Sized, [src]
impl<T> Deref for ManuallyDrop<T> where
T: ?Sized, type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &<ManuallyDrop<T> as Deref>::Target[src]
fn deref(&self) -> &<ManuallyDrop<T> as Deref>::TargetDereferences the value.
impl<T> Debug for ManuallyDrop<T> where
T: Debug + ?Sized, [src]
impl<T> Debug for ManuallyDrop<T> where
T: Debug + ?Sized, fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<T> Clone for ManuallyDrop<T> where
T: Clone + ?Sized, [src]
impl<T> Clone for ManuallyDrop<T> where
T: Clone + ?Sized, fn clone(&self) -> ManuallyDrop<T>[src]
fn clone(&self) -> ManuallyDrop<T>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<T> PartialOrd<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialOrd<T> + ?Sized, [src]
impl<T> PartialOrd<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialOrd<T> + ?Sized, fn partial_cmp(&self, other: &ManuallyDrop<T>) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &ManuallyDrop<T>) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &ManuallyDrop<T>) -> bool[src]
fn lt(&self, other: &ManuallyDrop<T>) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &ManuallyDrop<T>) -> bool[src]
fn le(&self, other: &ManuallyDrop<T>) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &ManuallyDrop<T>) -> bool[src]
fn gt(&self, other: &ManuallyDrop<T>) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &ManuallyDrop<T>) -> bool[src]
fn ge(&self, other: &ManuallyDrop<T>) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<T> Ord for ManuallyDrop<T> where
T: Ord + ?Sized, [src]
impl<T> Ord for ManuallyDrop<T> where
T: Ord + ?Sized, fn cmp(&self, other: &ManuallyDrop<T>) -> Ordering[src]
fn cmp(&self, other: &ManuallyDrop<T>) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl<T> Eq for ManuallyDrop<T> where
T: Eq + ?Sized, [src]
impl<T> Eq for ManuallyDrop<T> where
T: Eq + ?Sized, impl<T> PartialEq<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialEq<T> + ?Sized, [src]
impl<T> PartialEq<ManuallyDrop<T>> for ManuallyDrop<T> where
T: PartialEq<T> + ?Sized, fn eq(&self, other: &ManuallyDrop<T>) -> bool[src]
fn eq(&self, other: &ManuallyDrop<T>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ManuallyDrop<T>) -> bool[src]
fn ne(&self, other: &ManuallyDrop<T>) -> boolThis method tests for !=.
impl<T> Copy for ManuallyDrop<T> where
T: Copy + ?Sized, [src]
impl<T> Copy for ManuallyDrop<T> where
T: Copy + ?Sized, Auto Trait Implementations
impl<T: ?Sized> Send for ManuallyDrop<T> where
T: Send,
impl<T: ?Sized> Send for ManuallyDrop<T> where
T: Send, impl<T: ?Sized> Sync for ManuallyDrop<T> where
T: Sync,
impl<T: ?Sized> Sync for ManuallyDrop<T> where
T: Sync, Blanket Implementations
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>Performs the conversion.
impl<T> From for T[src]
impl<T> From for Timpl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>Performs the conversion.
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, ⓘImportant traits for &'a mut Ifn borrow(&self) -> &T[src]
fn borrow(&self) -> &TImmutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, ⓘImportant traits for &'a mut Ifn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id #27745)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more