Struct jobsys::ScopedJobHandle[][src]

pub struct ScopedJobHandle<'scope, T> { /* fields omitted */ }

Handle which represents an allocated job.

Trait Implementations

impl<'scope, T: Debug> Debug for ScopedJobHandle<'scope, T>[src]

impl<'scope, T: Default> Default for ScopedJobHandle<'scope, T>[src]

impl<'scope, T: Eq> Eq for ScopedJobHandle<'scope, T>[src]

impl<'scope, T: Hash> Hash for ScopedJobHandle<'scope, T>[src]

impl<'scope, T: PartialEq> PartialEq<ScopedJobHandle<'scope, T>> for ScopedJobHandle<'scope, T>[src]

impl<'scope, T> StructuralEq for ScopedJobHandle<'scope, T>[src]

impl<'scope, T> StructuralPartialEq for ScopedJobHandle<'scope, T>[src]

Auto Trait Implementations

impl<'scope, T> RefUnwindSafe for ScopedJobHandle<'scope, T> where
    T: RefUnwindSafe

impl<'scope, T> Send for ScopedJobHandle<'scope, T> where
    T: Send

impl<'scope, T> Sync for ScopedJobHandle<'scope, T> where
    T: Sync

impl<'scope, T> Unpin for ScopedJobHandle<'scope, T> where
    T: Unpin

impl<'scope, T> !UnwindSafe for ScopedJobHandle<'scope, T>

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,