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