in src/trace/span.rs [227:237]
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.debug_struct("AsyncSpan")
.field(
"data",
match self.obj {
Some(ref obj) => obj,
None => &"<none>",
},
)
.finish()
}