blob: 11986561fc3a64aed32fb3f1228a9472412c4920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! 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";
pub const ARTIFACT_SIZE_EVENT_KIND: &str = "ArtifactSize";
|