micromegas_tracing/metrics/
events.rs

1use crate::prelude::*;
2
3/// static metadata about metric events
4#[derive(Debug)]
5pub struct StaticMetricMetadata {
6    pub lod: Verbosity,
7    pub name: &'static str,
8    pub unit: &'static str,
9    pub target: &'static str,
10    pub file: &'static str,
11    pub line: u32,
12}