logo
pub trait AssetBundle {
    fn clear(&self);
    fn evict(&self, key: String);
    fn load(&self, key: String) -> Box<dyn Future<Output = Bytes>>;
    fn load_string(
        &self,
        key: String,
        cache: bool
    ) -> Box<dyn Future<Output = String>>; }

Required Methods

Implementors