pub struct JitTelemetry {Show 15 fields
pub backedges: u64,
pub compile_attempts: u64,
pub compiled: u64,
pub rejected: u64,
pub entries: u64,
pub completed_iterations: u64,
pub side_exits: u64,
pub recording_starts: u64,
pub recording_completed: u64,
pub recording_aborts: u64,
pub trace_paths: u64,
pub branch_exits: u64,
pub type_exits: u64,
pub error_exits: u64,
pub disabled_loops: u64,
}Expand description
Per-program tracing-JIT counters. They make it possible to distinguish a cold loop, an unsupported trace, and a trace that is compiled but exits.
Fields§
§backedges: u64§compile_attempts: u64§compiled: u64§rejected: u64§entries: u64§completed_iterations: u64§side_exits: u64§recording_starts: u64§recording_completed: u64§recording_aborts: u64§trace_paths: u64§branch_exits: u64§type_exits: u64§error_exits: u64§disabled_loops: u64Trait Implementations§
Source§impl Clone for JitTelemetry
impl Clone for JitTelemetry
Source§fn clone(&self) -> JitTelemetry
fn clone(&self) -> JitTelemetry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for JitTelemetry
Source§impl Debug for JitTelemetry
impl Debug for JitTelemetry
Source§impl Default for JitTelemetry
impl Default for JitTelemetry
Source§fn default() -> JitTelemetry
fn default() -> JitTelemetry
Returns the “default value” for a type. Read more
impl Eq for JitTelemetry
Source§impl PartialEq for JitTelemetry
impl PartialEq for JitTelemetry
impl StructuralPartialEq for JitTelemetry
Auto Trait Implementations§
impl Freeze for JitTelemetry
impl RefUnwindSafe for JitTelemetry
impl Send for JitTelemetry
impl Sync for JitTelemetry
impl Unpin for JitTelemetry
impl UnsafeUnpin for JitTelemetry
impl UnwindSafe for JitTelemetry
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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 more