Update code_rust.json

Added a few more Rust words and commonly used patterns, including turbofish!
This commit is contained in:
Anthony 2021-02-04 06:50:45 -05:00
parent 4ee2ae20c2
commit 620d1b61bc

View file

@ -74,6 +74,24 @@
"vec![]",
"HashMap",
"String",
"String::from(\"monkeytype\")"
"String::from(\"monkeytype\")",
"collect::<Vec<i32>>()",
"box",
"lazy_static",
"iter()",
"filter(|x| x.is_ok())",
"<'a>",
"map",
"BTreeMap",
"VeqDeque",
"LinkedList",
"HashSet",
"&'static",
"..=",
"?",
"macro_rules!",
"{:?}",
"format!",
"unwrap()"
]
}