| Crates.io | string_map |
| lib.rs | string_map |
| version | 0.4.1 |
| created_at | 2020-03-03 15:26:40.244315+00 |
| updated_at | 2020-03-09 16:59:15.693258+00 |
| description | Create a record to store any type of value |
| homepage | |
| repository | https://github.com/GalAster/dict-rs |
| max_upload_size | |
| id | 214950 |
| size | 5,738 |
Create a record to store any type of value
extern crate string_map;
use string_map::StringMap;
#[test]
fn main() {
let mut dict = StringMap::new();
dict.insert("number", 0);
dict.insert("string", "str");
dict.insert("boolean", true);
debug_assert_eq!(dict.get("number"), Some(&0));
debug_assert_eq!(dict.get_mut("string"), Some(&mut "str"));
debug_assert_eq!(dict.get_key_value("boolean"), Some(("boolean", &true)));
}