pub struct CompilerStats {
pub total_compilations: u64,
pub cache_hits: u64,
pub cache_misses: u64,
pub optimizations: u64,
pub validation_failures: u64,
}Expand description
Compiler statistics
Fields§
§total_compilations: u64Total compilations
cache_hits: u64Cache hits
cache_misses: u64Cache misses
optimizations: u64Optimizations performed
validation_failures: u64Validation failures
Trait Implementations§
Source§impl Clone for CompilerStats
impl Clone for CompilerStats
Source§fn clone(&self) -> CompilerStats
fn clone(&self) -> CompilerStats
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 CompilerStats
impl Debug for CompilerStats
Source§impl Default for CompilerStats
impl Default for CompilerStats
Source§fn default() -> CompilerStats
fn default() -> CompilerStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CompilerStats
impl RefUnwindSafe for CompilerStats
impl Send for CompilerStats
impl Sync for CompilerStats
impl Unpin for CompilerStats
impl UnsafeUnpin for CompilerStats
impl UnwindSafe for CompilerStats
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