Struct thread_local::TableEntry[][src]

struct TableEntry<T: ?Sized + Send> {
    owner: AtomicUsize,
    data: UnsafeCell<Option<Box<T>>>,
}

Fields

Trait Implementations

impl<T: ?Sized + Send> Clone for TableEntry<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T: ?Sized> Send for TableEntry<T>

impl<T> !Sync for TableEntry<T>