Trait opentelemetry::propagation::Extractor[][src]

pub trait Extractor {
    fn get(&self, key: &str) -> Option<&str>;
fn keys(&self) -> Vec<&str>; }
Expand description

Extractor provides an interface for removing fields from an underlying struct like HashMap

Required methods

Get a value from a key from the underlying data.

Collect all the keys from the underlying data.

Implementations on Foreign Types

Get a value for a key from the HashMap.

Collect all the keys from the HashMap.

Implementors