webrender::glyph_cache

Type Alias GlyphKeyCache

Source
pub type GlyphKeyCache = ResourceClassCache<GlyphKey, GlyphCacheEntry, GlyphKeyCacheInfo>;

Aliased Type§

struct GlyphKeyCache {
    resources: HashMap<GlyphKey, GlyphCacheEntry, BuildHasherDefault<FxHasher>>,
    pub user_data: GlyphKeyCacheInfo,
}

Fields§

§resources: HashMap<GlyphKey, GlyphCacheEntry, BuildHasherDefault<FxHasher>>§user_data: GlyphKeyCacheInfo

Implementations

Source§

impl ResourceClassCache<GlyphKey, GlyphCacheEntry, GlyphKeyCacheInfo>

Source

pub fn eviction_notice(&self) -> &EvictionNotice

Source

fn clear_glyphs(&mut self)

Source

pub fn add_glyph(&mut self, key: GlyphKey, value: GlyphCacheEntry)

Source

fn clear_evicted(&mut self, texture_cache: &TextureCache)

Source§

impl<K, V, U> ResourceClassCache<K, V, U>
where K: Clone + Hash + Eq + Debug, U: Default,

Source

pub fn new() -> Self

Source

pub fn get(&self, key: &K) -> &V

Source

pub fn try_get(&self, key: &K) -> Option<&V>

Source

pub fn insert(&mut self, key: K, value: V)

Source

pub fn remove(&mut self, key: &K) -> Option<V>

Source

pub fn get_mut(&mut self, key: &K) -> &mut V

Source

pub fn try_get_mut(&mut self, key: &K) -> Option<&mut V>

Source

pub fn entry(&mut self, key: K) -> Entry<'_, K, V>

Source

pub fn iter(&self) -> Iter<'_, K, V>

Source

pub fn iter_mut(&mut self) -> IterMut<'_, K, V>

Source

pub fn is_empty(&mut self) -> bool

Source

pub fn clear(&mut self)

Source

pub fn retain<F>(&mut self, f: F)
where F: FnMut(&K, &mut V) -> bool,

Trait Implementations

Source§

impl<K, V, U> Serialize for ResourceClassCache<K, V, U>
where K: Serialize + Hash + Eq, V: Serialize, U: Serialize + Default,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more