std::mem::ManuallyDrop

Union std::mem::ManuallyDrop

pub union ManuallyDrop<T> {
    // some fields omitted
}
???? This is a nightly-only experimental API. (manually_drop #40673)

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`.
    }
}

Methods

impl<T> ManuallyDrop<T> [src]

???? This is a nightly-only experimental API. (manually_drop #40673)

Wrap a value to be manually dropped.

Examples

use std::mem::ManuallyDrop;
ManuallyDrop::new(Box::new(()));

???? This is a nightly-only experimental API. (manually_drop #40673)

Extract the value from the ManuallyDrop container.

Examples

use std::mem::ManuallyDrop;
let x = ManuallyDrop::new(Box::new(()));
let _: Box<()> = ManuallyDrop::into_inner(x);

???? This is a nightly-only experimental API. (manually_drop #40673)

Manually drops the contained value.

Unsafety

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> [src]

The method called to mutably dereference a value

impl<T> Debug for ManuallyDrop<T> where
    T: Debug
[src]

Formats the value using the given formatter.

impl<T> Deref for ManuallyDrop<T> [src]

The resulting type after dereferencing

The method called to dereference a value

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/mem/union.ManuallyDrop.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部