pub trait Get<K>: Map {
// Required method
fn get(&self, key: &K) -> Option<&Self::Item>;
}Expand description
Returns a reference to the value corresponding to the key.
pub trait Get<K>: Map {
// Required method
fn get(&self, key: &K) -> Option<&Self::Item>;
}Returns a reference to the value corresponding to the key.