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