pub trait SyncAssetKey<T: Clone + Sync + Send + 'static>: Sync + Send + Debug {
    // Provided method
    fn load(&self, _assets: AssetCache) -> T { ... }
}

Provided Methods§

source

fn load(&self, _assets: AssetCache) -> T

Implementors§