Trait opentelemetry::propagation::text_map_propagator::TextMapPropagator [−][src]
pub trait TextMapPropagator: Debug { fn inject_context(&self, cx: &Context, injector: &mut dyn Injector); fn extract_with_context(
&self,
cx: &Context,
extractor: &dyn Extractor
) -> Context; fn fields(&self) -> FieldIter<'_>ⓘ; fn inject(&self, injector: &mut dyn Injector) { ... } fn extract(&self, extractor: &dyn Extractor) -> Context { ... } }
Expand description
Methods to inject and extract a value as text into injectors and extractors that travel in-band across process boundaries.