Sign in
android
/
platform
/
external
/
rust
/
crates
/
tracing-core
/
be6752c81763942489f8e5c1cf39389ac9259aed
/
.
/
src
/
parent.rs
blob: cb34b376ccab6bd14ba2b1b4091cf7512218a12e [
file
] [
log
] [
blame
]
use
crate
::
span
::
Id
;
#[
derive
(
Debug
)]
pub
(
crate
)
enum
Parent
{
/// The new span will be a root span.
Root
,
/// The new span will be rooted in the current span.
Current
,
/// The new span has an explicitly-specified parent.
Explicit
(
Id
),
}