pub trait MakeSpan<B> {
    fn make_span(&mut self, request: &Request<B>) -> Span;
}
This is supported on crate feature trace only.
Expand description

Trait used to generate Spans from requests. Trace wraps all request handling in this span.

Required methods

Make a span from a request.

Implementations on Foreign Types

Implementors