pub trait RoutingMetadata:
Debug
+ Send
+ Sync {
// Required methods
fn group_key(&self) -> String;
fn encode(&self) -> String;
}Expand description
Caller-defined routing attached to a span, inherited by children, and read by
the exporter to route the resulting FinishedSpan.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".