Struct crossbeam::epoch::Owned [] [src]

pub struct Owned<T> { /* fields omitted */ }

Like Box<T>: an owned, heap-allocated data value of type T.

Methods

impl<T> Owned<T>
[src]

Move t to a new heap allocation.

Move data out of the owned box, deallocating the box.

Trait Implementations

impl<T: Debug> Debug for Owned<T>
[src]

Formats the value using the given formatter.

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

The resulting type after dereferencing

The method called to dereference a value

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

The method called to mutably dereference a value