pub struct IniFile<'a> { /* private fields */ }
Implementations§
Source§impl<'a> IniFile<'a>
impl<'a> IniFile<'a>
pub fn get_section_mut<'b>(
&'b mut self,
section_name: &str,
) -> Option<&'b mut Section<'a>>where
'a: 'b,
pub fn section_entry<'b>(
&'b mut self,
section_name: &'a str,
) -> Entry<'b, &'a str, Section<'a>>where
'a: 'b,
pub fn insert_section(&mut self, name: &'a str, section: Section<'a>)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for IniFile<'a>
impl<'a> RefUnwindSafe for IniFile<'a>
impl<'a> Send for IniFile<'a>
impl<'a> Sync for IniFile<'a>
impl<'a> Unpin for IniFile<'a>
impl<'a> UnwindSafe for IniFile<'a>
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