pub struct ReadonlyIni { /* private fields */ }Implementations§
Source§impl ReadonlyIni
impl ReadonlyIni
pub fn section( &self, name: Option<&str>, ) -> Option<&ParsedDocument<ReadonlyProperties>>
pub fn sections(&self) -> &Map<SectionKey, ParsedDocument<ReadonlyProperties>>
pub fn get_property( &self, section_name: Option<&str>, key: &str, ) -> Option<&ParsedPropertyDocument>
Trait Implementations§
Source§impl From<ReadonlyIni> for Ini
impl From<ReadonlyIni> for Ini
Source§fn from(readonly_ini: ReadonlyIni) -> Self
fn from(readonly_ini: ReadonlyIni) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReadonlyIni
impl RefUnwindSafe for ReadonlyIni
impl Send for ReadonlyIni
impl Sync for ReadonlyIni
impl Unpin for ReadonlyIni
impl UnwindSafe for ReadonlyIni
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