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]
pub fn new(value: T) -> NoDrop<T>
[src]
Create a new NoDrop.
pub fn into_inner(self) -> T
[src]
Extract the inner value.
Once extracted, the value can of course drop again.
Trait Implementations
impl<T> Drop for NoDrop<T>
[src]
impl<T> Deref for NoDrop<T>
[src]
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T
[src]
Dereferences the value.