Crate dotini

Crate dotini 

Source

Structs§

INIParser
The INIParser struct is used to parse INI configuration files into a HashMap data structure for easy access to configuration values. To use the INIParser, we only need to create a new instance of the struct using either: INIParser::from_string or INIParser::from_file. the configuration values are stored in the output field of the struct
Ini
Ini is the main parser that does the job for us. takes some set of rules from ini.pest file.

Enums§

InIParseError
Possible error enum for dotini.
Rule

Type Aliases§

INIParserResult
Generic Result type for dotini.