use crateStringMap;
use ;
/*
impl<T> Index<&str,T> for StringMap {
type Output = T;
fn index(&self, key: &str) -> &Self::Output {
self.get::<T>(key).unwrap()
}
}
*/
/*
impl IndexMut<&str> for StringMap {
fn index_mut(&mut self, key: &str) -> &mut Self::Output {
&mut self.index(key)
}
}
*/