Trait light_ini::IniHandler[][src]

pub trait IniHandler {
    type Error: Debug;
    fn section(&mut self, name: &str) -> Result<(), Self::Error>;
fn option(&mut self, key: &str, value: &str) -> Result<(), Self::Error>; fn comment(&mut self, _: &str) -> Result<(), Self::Error> { ... } }
Expand description

Interface for the INI format handler

Associated Types

Required methods

Called when a section is found

Called when an option is found

Provided methods

Called for each comment

Implementors