Enum amethyst_assets::ProcessingState[][src]

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

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

Variants

Asset is not fully loaded yet, need to wait longer

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

Auto Trait Implementations

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

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