[−][src]Function lib::io::get_args
pub fn get_args() -> HashMap<String, String>
Parse the command line arguments for key / value pairs and present them as HashMap<String, String>
The following argument formats are recognised:
--key value
-key value
--key=value
-key=value
key=value
Example
for (key, val) in driscoll::io::get_args() { println!("Found this parameter: {} = {}", key, val); }