Trait Get

Source
pub trait Get {
    // Required method
    fn get(&self, key: &str) -> Option<&String>;
}

Required Methods§

Source

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

Implementations on Foreign Types§

Source§

impl Get for BTreeMap<String, String>

Source§

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

Source§

impl Get for HashMap<String, String>

Source§

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

Implementors§