pub struct JitStats {
pub compiled: u64,
pub declined: u64,
pub native_runs: u64,
}Expand description
How much work the JIT is taking, and how much it is declining.
Fields§
§compiled: u64Blocks translated to native code.
declined: u64Blocks the compiler declined; these run on the interpreter.
native_runs: u64Executions that ran as native code.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JitStats
impl RefUnwindSafe for JitStats
impl Send for JitStats
impl Sync for JitStats
impl Unpin for JitStats
impl UnsafeUnpin for JitStats
impl UnwindSafe for JitStats
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