opentelemetry::propagation

Trait Extractor

Source
pub trait Extractor {
    // Required methods
    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§

Source

fn get(&self, key: &str) -> Option<&str>

Get a value from a key from the underlying data.

Source

fn keys(&self) -> Vec<&str>

Collect all the keys from the underlying data.

Implementations on Foreign Types§

Source§

impl<S: BuildHasher> Extractor for HashMap<String, String, S>

Source§

fn get(&self, key: &str) -> Option<&str>

Get a value for a key from the HashMap.

Source§

fn keys(&self) -> Vec<&str>

Collect all the keys from the HashMap.

Implementors§