Struct nodrop_union::NoDrop [] [src]

pub struct NoDrop<T>(_);

A type holding T that will not call its destructor on drop

The untagged unions implementation of NoDrop<T> is Copy where T: Copy, which was not possible in the stable implementation.

Methods

impl<T> NoDrop<T>
[src]

Create a new NoDrop.

Extract the inner value.

Once extracted, the value can of course drop again.

Trait Implementations

impl<T: Copy> Copy for NoDrop<T>
[src]

impl<T: Clone> Clone for NoDrop<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

The resulting type after dereferencing

The method called to dereference a value

impl<T> DerefMut for NoDrop<T>
[src]

The method called to mutably dereference a value