pub trait FromAssetBlobAsync: LogicalAssetData {
type Error: From<IOError>;
// Required method
fn from_asset_blob_async<'a, Blob: AssetBlobAsync + 'a>(
blob: Blob,
) -> impl Future<Output = Result<Self, Self::Error>>;
}Required Associated Types§
Required Methods§
fn from_asset_blob_async<'a, Blob: AssetBlobAsync + 'a>( blob: Blob, ) -> impl Future<Output = Result<Self, Self::Error>>
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.