micromegas_tracing/spans/
events.rs

1use crate::prelude::*;
2
3#[derive(Debug)]
4pub struct SpanLocation {
5    pub lod: Verbosity,
6    pub target: &'static str,
7    pub module_path: &'static str,
8    pub file: &'static str,
9    pub line: u32,
10}
11
12#[derive(Debug)]
13pub struct SpanMetadata {
14    pub name: &'static str,
15    pub location: SpanLocation,
16}