pub struct IniFile {
pub sections: HashMap<String, Section>,
}Expand description
Represents an INI file with sections and key-value pairs.
Fields§
§sections: HashMap<String, Section>The sections of the INI file, each containing key-value pairs.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IniFile
impl RefUnwindSafe for IniFile
impl Send for IniFile
impl Sync for IniFile
impl Unpin for IniFile
impl UnwindSafe for IniFile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more