pub trait IniConfig<T = HashMap<String, String>>: AbstractConfig<T> {
// Provided methods
fn load(target: Option<String>) -> Result<T, Error>
where T: Default,
HashMap<String, String>: Into<T>,
Self: Sized { ... }
fn load_with_override(
target: Option<String>,
excluded_keys: &HashSet<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.