[][src]Enum amethyst_assets::ProcessingState

pub enum ProcessingState<A> where
    A: Asset
{ Loading(A::Data), Loaded(A), }

Returned by processor systems, describes the loading state of the asset.

Variants

Loading(A::Data)

Asset is not fully loaded yet, need to wait longer

Loaded(A)

Asset has finished loading, can now be inserted into storage and tracker notified

Auto Trait Implementations

impl<A> RefUnwindSafe for ProcessingState<A> where
    A: RefUnwindSafe,
    <A as Asset>::Data: RefUnwindSafe

impl<A> Send for ProcessingState<A> where
    <A as Asset>::Data: Send

impl<A> Sync for ProcessingState<A> where
    <A as Asset>::Data: Sync

impl<A> Unpin for ProcessingState<A> where
    A: Unpin,
    <A as Asset>::Data: Unpin

impl<A> UnwindSafe for ProcessingState<A> where
    A: UnwindSafe,
    <A as Asset>::Data: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any + Send + Sync

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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