pub trait CacheCombined {
// Required method
fn load_and_combine<A: Asset + Concatenate>(
&self,
id: &str,
) -> Result<&Handle<A>, Error>;
}
Expand description
Extension to AssetCache to combine Ron files from filesystem and plugins
Required Methods§
fn load_and_combine<A: Asset + Concatenate>( &self, id: &str, ) -> Result<&Handle<A>, 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.