pub enum AssetLoadState {
Idle = 0,
Loading = 1,
Ready = 2,
Failed = 3,
}Variants§
Trait Implementations§
Source§impl Clone for AssetLoadState
impl Clone for AssetLoadState
Source§fn clone(&self) -> AssetLoadState
fn clone(&self) -> AssetLoadState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AssetLoadState
Source§impl Debug for AssetLoadState
impl Debug for AssetLoadState
impl Eq for AssetLoadState
Source§impl PartialEq for AssetLoadState
impl PartialEq for AssetLoadState
impl StructuralPartialEq for AssetLoadState
Auto Trait Implementations§
impl Freeze for AssetLoadState
impl RefUnwindSafe for AssetLoadState
impl Send for AssetLoadState
impl Sync for AssetLoadState
impl Unpin for AssetLoadState
impl UnsafeUnpin for AssetLoadState
impl UnwindSafe for AssetLoadState
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