Skip to main content

parse_ini

Function parse_ini 

Source
pub fn parse_ini(text: &str) -> HashMap<String, HashMap<String, Option<String>>>
Expand description

Parses an INI string into a simple nested map structure: HashMap<section, HashMap<key, Option<value>>>.

Style/indentation are not preserved.