mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 20:06:38 +00:00
15 lines
255 B
Rust
15 lines
255 B
Rust
#![allow(dead_code)]
|
|
pub mod event;
|
|
pub mod field;
|
|
mod metadata;
|
|
pub mod span;
|
|
pub mod subscriber;
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
pub(in crate::support) enum Parent {
|
|
ContextualRoot,
|
|
Contextual(String),
|
|
ExplicitRoot,
|
|
Explicit(String),
|
|
}
|