pub struct IniFileOwned { /* private fields */ }Implementations§
Source§impl IniFileOwned
impl IniFileOwned
pub fn get_section(&self, section_name: &str) -> Option<&OwnedSection>
pub const fn sections(&self) -> &HashMap<Box<str>, OwnedSection>
pub fn format(&self) -> String
Source§impl IniFileOwned
impl IniFileOwned
pub fn get_section_mut( &mut self, section_name: &str, ) -> Option<&mut OwnedSection>
pub fn section_entry( &mut self, section_name: Box<str>, ) -> Entry<'_, Box<str>, OwnedSection>
pub fn insert_section(&mut self, name: Box<str>, section: OwnedSection)
Trait Implementations§
Source§impl Debug for IniFileOwned
impl Debug for IniFileOwned
Source§impl Default for IniFileOwned
impl Default for IniFileOwned
Source§fn default() -> IniFileOwned
fn default() -> IniFileOwned
Returns the “default value” for a type. Read more
Source§impl<'a> IntoIterator for &'a IniFileOwned
impl<'a> IntoIterator for &'a IniFileOwned
Auto Trait Implementations§
impl Freeze for IniFileOwned
impl RefUnwindSafe for IniFileOwned
impl Send for IniFileOwned
impl Sync for IniFileOwned
impl Unpin for IniFileOwned
impl UnwindSafe for IniFileOwned
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