Macro attribute
macro_rules! attribute {
($($key:ident)+ = $value:expr) => { ... };
($key:literal = $value:expr) => { ... };
($($key:ident)+) => { ... };
}Available on crate feature
telemetry only.Expand description
Constructs a single attribute KeyValue pair.