Struct nodrop::NoDrop [] [src]

pub struct NoDrop<T>(_);

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

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> Drop for NoDrop<T>
[src]

A method called when the value goes out of scope. 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