1//! This module contains functionality specific to to the measureme integration with rustc
2
3pub const QUERY_EVENT_KIND: &str = "Query";
4
5pub const GENERIC_ACTIVITY_EVENT_KIND: &str = "GenericActivity";
6
7pub const INCREMENTAL_LOAD_RESULT_EVENT_KIND: &str = "IncrementalLoadResult";
8
9pub const INCREMENTAL_RESULT_HASHING_EVENT_KIND: &str = "IncrementalResultHashing";
10
11pub const QUERY_BLOCKED_EVENT_KIND: &str = "QueryBlocked";
12
13pub const QUERY_CACHE_HIT_EVENT_KIND: &str = "QueryCacheHit";
14
15pub const ARTIFACT_SIZE_EVENT_KIND: &str = "ArtifactSize";
16