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§