Struct shipyard::borrow::NonSend[][src]

pub struct NonSend<T: ?Sized>(_);
This is supported on crate feature thread_local only.

Type used to access !Send storages.

Trait Implementations

impl<'a, T: 'static + Sync> AllStoragesBorrow<'a> for NonSend<ViewBorrower<T>>[src]

impl<'a, T: 'static + Sync> AllStoragesBorrow<'a> for NonSend<ViewMutBorrower<T>>[src]

impl<'a, T: 'static + Sync> AllStoragesBorrow<'a> for NonSend<UniqueViewBorrower<T>>[src]

impl<'a, T: 'static + Sync> AllStoragesBorrow<'a> for NonSend<UniqueViewMutBorrower<T>>[src]

impl<T: ?Sized> AsMut<T> for NonSend<T>[src]

impl<T: ?Sized> AsRef<T> for NonSend<T>[src]

impl<'a, T: 'static + Sync> Borrow<'a> for NonSend<ViewBorrower<T>>[src]

type View = NonSend<View<'a, T>>

impl<'a, T: 'static + Sync> Borrow<'a> for NonSend<ViewMutBorrower<T>>[src]

type View = NonSend<ViewMut<'a, T>>

impl<'a, T: 'static + Sync> Borrow<'a> for NonSend<UniqueViewBorrower<T>>[src]

type View = NonSend<UniqueView<'a, T>>

impl<'a, T: 'static + Sync> Borrow<'a> for NonSend<UniqueViewMutBorrower<T>>[src]

type View = NonSend<UniqueViewMut<'a, T>>

impl<'a, T: 'static + Sync> BorrowInfo for NonSend<View<'a, T>>[src]

impl<'a, T: 'static + Sync> BorrowInfo for NonSend<ViewMut<'a, T>>[src]

impl<'a, T: 'static + Sync> BorrowInfo for NonSend<UniqueView<'a, T>>[src]

impl<'a, T: 'static + Sync> BorrowInfo for NonSend<UniqueViewMut<'a, T>>[src]

impl<T: ?Sized> Deref for NonSend<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: ?Sized> DerefMut for NonSend<T>[src]

impl<T: 'static + Sync> IntoBorrow for NonSend<View<'_, T>>[src]

type Borrow = NonSend<ViewBorrower<T>>

Helper type almost allowing GAT on stable.

impl<T: 'static + Sync> IntoBorrow for NonSend<ViewMut<'_, T>>[src]

type Borrow = NonSend<ViewMutBorrower<T>>

Helper type almost allowing GAT on stable.

impl<T: 'static + Sync> IntoBorrow for NonSend<UniqueView<'_, T>>[src]

type Borrow = NonSend<UniqueViewBorrower<T>>

Helper type almost allowing GAT on stable.

impl<T: 'static + Sync> IntoBorrow for NonSend<UniqueViewMut<'_, T>>[src]

type Borrow = NonSend<UniqueViewMutBorrower<T>>

Helper type almost allowing GAT on stable.

Auto Trait Implementations

impl<T: ?Sized> RefUnwindSafe for NonSend<T> where
    T: RefUnwindSafe

impl<T: ?Sized> Send for NonSend<T> where
    T: Send

impl<T: ?Sized> Sync for NonSend<T> where
    T: Sync

impl<T: ?Sized> Unpin for NonSend<T> where
    T: Unpin

impl<T: ?Sized> UnwindSafe for NonSend<T> where
    T: UnwindSafe

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.