pub struct RenderStatsSnapshot {
pub raster_cache_entries: usize,
pub glyph_path_entries: usize,
pub raster_cache_hits: u64,
pub raster_cache_misses: u64,
pub rasterizations: u64,
pub glyph_path_hits: u64,
pub glyph_path_misses: u64,
}Fields§
§raster_cache_entries: usize§glyph_path_entries: usize§raster_cache_hits: u64§raster_cache_misses: u64§rasterizations: u64§glyph_path_hits: u64§glyph_path_misses: u64Trait Implementations§
Source§impl Clone for RenderStatsSnapshot
impl Clone for RenderStatsSnapshot
Source§fn clone(&self) -> RenderStatsSnapshot
fn clone(&self) -> RenderStatsSnapshot
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 moreSource§impl Debug for RenderStatsSnapshot
impl Debug for RenderStatsSnapshot
Source§impl Default for RenderStatsSnapshot
impl Default for RenderStatsSnapshot
Source§fn default() -> RenderStatsSnapshot
fn default() -> RenderStatsSnapshot
Returns the “default value” for a type. Read more
Source§impl PartialEq for RenderStatsSnapshot
impl PartialEq for RenderStatsSnapshot
impl Copy for RenderStatsSnapshot
impl Eq for RenderStatsSnapshot
impl StructuralPartialEq for RenderStatsSnapshot
Auto Trait Implementations§
impl Freeze for RenderStatsSnapshot
impl RefUnwindSafe for RenderStatsSnapshot
impl Send for RenderStatsSnapshot
impl Sync for RenderStatsSnapshot
impl Unpin for RenderStatsSnapshot
impl UnsafeUnpin for RenderStatsSnapshot
impl UnwindSafe for RenderStatsSnapshot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.