pub enum AssetLoadResult {
Error(String),
Data(Box<dyn Any + Send + Sync>),
Yield(Meta, Vec<(String, String)>),
}Variants§
Error(String)
Data(Box<dyn Any + Send + Sync>)
Yield(Meta, Vec<(String, String)>)
(meta, [(key, path to load)])
Auto Trait Implementations§
impl Freeze for AssetLoadResult
impl !RefUnwindSafe for AssetLoadResult
impl Send for AssetLoadResult
impl Sync for AssetLoadResult
impl Unpin for AssetLoadResult
impl UnsafeUnpin for AssetLoadResult
impl !UnwindSafe for AssetLoadResult
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