measureme 12.0.3

Support crate for rustc's self-profiling feature
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! This module contains functionality specific to to the measureme integration with rustc

pub const QUERY_EVENT_KIND: &str = "Query";

pub const GENERIC_ACTIVITY_EVENT_KIND: &str = "GenericActivity";

pub const INCREMENTAL_LOAD_RESULT_EVENT_KIND: &str = "IncrementalLoadResult";

pub const INCREMENTAL_RESULT_HASHING_EVENT_KIND: &str = "IncrementalResultHashing";

pub const QUERY_BLOCKED_EVENT_KIND: &str = "QueryBlocked";

pub const QUERY_CACHE_HIT_EVENT_KIND: &str = "QueryCacheHit";

/// Aggregated count of query cache hits, stored as an integer event.
pub const QUERY_CACHE_HIT_COUNT_EVENT_KIND: &str = "QueryCacheHitCount";

pub const ARTIFACT_SIZE_EVENT_KIND: &str = "ArtifactSize";