pub struct GlyphCacheStats {
pub size: usize,
pub capacity: usize,
pub hits: u64,
pub misses: u64,
}Expand description
Glyph cache statistics
Fields§
§size: usize§capacity: usize§hits: u64§misses: u64Implementations§
Trait Implementations§
Source§impl Clone for GlyphCacheStats
impl Clone for GlyphCacheStats
Source§fn clone(&self) -> GlyphCacheStats
fn clone(&self) -> GlyphCacheStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GlyphCacheStats
impl RefUnwindSafe for GlyphCacheStats
impl Send for GlyphCacheStats
impl Sync for GlyphCacheStats
impl Unpin for GlyphCacheStats
impl UnsafeUnpin for GlyphCacheStats
impl UnwindSafe for GlyphCacheStats
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