pub enum LoadStatus {
NotRequested,
Unresolved,
Loading,
Loaded,
Unloading,
DoesNotExist,
Error(Box<dyn Error>),
}Expand description
Asset loading status.
Variants§
NotRequested
There is no request for the asset to be loaded.
Unresolved
The asset is an indirect reference which has not been resolved yet.
Loading
The asset is being loaded.
Loaded
The asset is loaded.
Unloading
The asset is being unloaded.
DoesNotExist
The asset does not exist.
Error(Box<dyn Error>)
There was an error during loading / unloading of the asset.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadStatus
impl !RefUnwindSafe for LoadStatus
impl !Send for LoadStatus
impl !Sync for LoadStatus
impl Unpin for LoadStatus
impl !UnwindSafe for LoadStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more