struct GlyphCacheEntry {
atlas_slot: AtlasSlot,
serial: u64,
}Expand description
Internal cache entry storing atlas slot and access time.
Fields§
§atlas_slot: AtlasSlotAtlas slot information for blitting.
serial: u64Frame serial when last accessed (for LRU eviction).
Auto Trait Implementations§
impl Freeze for GlyphCacheEntry
impl RefUnwindSafe for GlyphCacheEntry
impl Send for GlyphCacheEntry
impl Sync for GlyphCacheEntry
impl Unpin for GlyphCacheEntry
impl UnsafeUnpin for GlyphCacheEntry
impl UnwindSafe for GlyphCacheEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more