Trait CacheCombined

Source
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§

Source

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.

Implementors§

Source§

impl<'a> CacheCombined<'a> for AnyCache<'a>