pub trait IniConfig<T = HashMap<String, String>>: AbstractConfig<T> {
// Provided method
fn load(target: Option<String>) -> Result<T, Error>
where T: Default,
HashMap<String, String>: Into<T>,
Self: Sized { ... }
}
Expand description
Indicates that structure can be initialized from INI file.