pub struct EguiPretextRendererStats {Show 14 fields
pub static_svg_textures: usize,
pub shaped_text_textures: usize,
pub texture_cache_hits: u64,
pub texture_cache_misses: u64,
pub texture_uploads: u64,
pub texture_upload_bytes: u64,
pub atlas_hits: u64,
pub atlas_misses: u64,
pub atlas_pages: usize,
pub atlas_entries: usize,
pub warmup_queue_depth: usize,
pub mesh_flushes: u64,
pub glyph_quads: u64,
pub render: RenderStatsSnapshot,
}Fields§
§static_svg_textures: usize§shaped_text_textures: usize§texture_cache_hits: u64§texture_cache_misses: u64§texture_uploads: u64§texture_upload_bytes: u64§atlas_hits: u64§atlas_misses: u64§atlas_pages: usize§atlas_entries: usize§warmup_queue_depth: usize§mesh_flushes: u64§glyph_quads: u64§render: RenderStatsSnapshotTrait Implementations§
Source§impl Clone for EguiPretextRendererStats
impl Clone for EguiPretextRendererStats
Source§fn clone(&self) -> EguiPretextRendererStats
fn clone(&self) -> EguiPretextRendererStats
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 EguiPretextRendererStats
impl Debug for EguiPretextRendererStats
Source§impl Default for EguiPretextRendererStats
impl Default for EguiPretextRendererStats
Source§fn default() -> EguiPretextRendererStats
fn default() -> EguiPretextRendererStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for EguiPretextRendererStats
impl PartialEq for EguiPretextRendererStats
impl Copy for EguiPretextRendererStats
impl Eq for EguiPretextRendererStats
impl StructuralPartialEq for EguiPretextRendererStats
Auto Trait Implementations§
impl Freeze for EguiPretextRendererStats
impl RefUnwindSafe for EguiPretextRendererStats
impl Send for EguiPretextRendererStats
impl Sync for EguiPretextRendererStats
impl Unpin for EguiPretextRendererStats
impl UnsafeUnpin for EguiPretextRendererStats
impl UnwindSafe for EguiPretextRendererStats
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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().