[][src]Struct gdnative::prelude::ThreadLocal

pub struct ThreadLocal(_);

Marker that indicates that a value can currently only be shared in the same thread.

Using this marker causes the type to be !Send + !Sync.

Trait Implementations

impl Clone for ThreadLocal[src]

impl Copy for ThreadLocal[src]

impl Debug for ThreadLocal[src]

impl Default for ThreadLocal[src]

impl Eq for ThreadLocal[src]

impl Hash for ThreadLocal[src]

impl LocalThreadAccess for ThreadLocal[src]

impl NonUniqueThreadAccess for ThreadLocal[src]

impl Ord for ThreadLocal[src]

impl PartialEq<ThreadLocal> for ThreadLocal[src]

impl PartialOrd<ThreadLocal> for ThreadLocal[src]

impl StructuralEq for ThreadLocal[src]

impl StructuralPartialEq for ThreadLocal[src]

impl ThreadAccess for ThreadLocal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.