dial9-macro 0.3.6

Proc-macro crate that provides the dial9_tokio_telemetry::main attribute macro
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
---
source: dial9-macro/src/lib.rs
expression: output
---
#[allow(unused)]
fn main() {
    let __dial9_rt = ::dial9_tokio_telemetry::TracedRuntime::new(my_config());
    __dial9_rt
        .block_on(async move {
            let _ = 42;
        })
}