pub trait IUnitModel_ResourceHandleMethods: IUnitModel_ResourceHandle {
// Provided methods
fn dispose(self) { ... }
fn load_async(self, result: impl Into<AssetTable_Result>) { ... }
fn is_loading(self) -> bool { ... }
fn release(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn load_async(self, result: impl Into<AssetTable_Result>)
fn load_async(self, result: impl Into<AssetTable_Result>)
LoadAsync(crate::app::assettable::AssetTable_Result) overload
Sourcefn is_loading(self) -> bool
fn is_loading(self) -> bool
IsLoading() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IUnitModel_ResourceHandle> IUnitModel_ResourceHandleMethods for __T
Available on crate feature
app-unitmodel only.