[−][src]Struct ini::ini::Ini
Ini struct
Implementations
impl Ini
[src]
pub fn new() -> Ini
[src]
Create an instance
pub fn with_section<S>(&mut self, section: Option<S>) -> SectionSetter<'_> where
S: Into<String>,
[src]
S: Into<String>,
Set with a specified section, None
is for the general section
pub fn general_section(&self) -> &Properties
[src]
Get the immmutable general section
pub fn general_section_mut(&mut self) -> &mut Properties
[src]
Get the mutable general section
pub fn section<S>(&self, name: Option<S>) -> Option<&Properties> where
S: Into<String>,
[src]
S: Into<String>,
Get a immutable section
pub fn section_mut<S>(&mut self, name: Option<S>) -> Option<&mut Properties> where
S: Into<String>,
[src]
S: Into<String>,
Get a mutable section
pub fn entry(
&mut self,
name: Option<String>
) -> Entry<'_, Option<String>, Properties>
[src]
&mut self,
name: Option<String>
) -> Entry<'_, Option<String>, Properties>
Get the entry
pub fn clear(&mut self)
[src]
Clear all entries
pub fn sections(&self) -> Keys<'_, Option<String>, Properties>
[src]
Iterate with sections
pub fn set_to<S>(&mut self, section: Option<S>, key: String, value: String) where
S: Into<String>,
[src]
S: Into<String>,
Set key-value to a section
pub fn get_from<'a, S>(
&'a self,
section: Option<S>,
key: &str
) -> Option<&'a str> where
S: Into<String>,
[src]
&'a self,
section: Option<S>,
key: &str
) -> Option<&'a str> where
S: Into<String>,
Get the value from a section with key
Example:
use ini::Ini; let input = "[sec]\nabc = def\n"; let ini = Ini::load_from_str(input).unwrap(); assert_eq!(ini.get_from(Some("sec"), "abc"), Some("def"));
pub fn get_from_or<'a, S>(
&'a self,
section: Option<S>,
key: &str,
default: &'a str
) -> &'a str where
S: Into<String>,
[src]
&'a self,
section: Option<S>,
key: &str,
default: &'a str
) -> &'a str where
S: Into<String>,
Get the value from a section with key, return the default value if it does not exist
Example:
use ini::Ini; let input = "[sec]\n"; let ini = Ini::load_from_str(input).unwrap(); assert_eq!(ini.get_from_or(Some("sec"), "key", "default"), "default");
pub fn get_from_mut<'a, S>(
&'a mut self,
section: Option<S>,
key: &str
) -> Option<&'a str> where
S: Into<String>,
[src]
&'a mut self,
section: Option<S>,
key: &str
) -> Option<&'a str> where
S: Into<String>,
Get the mutable from a section with key
pub fn delete<S>(&mut self, section: Option<S>) -> Option<Properties> where
S: Into<String>,
[src]
S: Into<String>,
Delete a section, return the properties if it exists
pub fn delete_from<S>(
&mut self,
section: Option<S>,
key: &str
) -> Option<String> where
S: Into<String>,
[src]
&mut self,
section: Option<S>,
key: &str
) -> Option<String> where
S: Into<String>,
impl Ini
[src]
pub fn write_to_file<P: AsRef<Path>>(&self, filename: P) -> Result<()>
[src]
Write to a file
pub fn write_to_file_policy<P: AsRef<Path>>(
&self,
filename: P,
policy: EscapePolicy
) -> Result<()>
[src]
&self,
filename: P,
policy: EscapePolicy
) -> Result<()>
Write to a file
pub fn write_to<W: Write>(&self, writer: &mut W) -> Result<()>
[src]
Write to a writer
pub fn write_to_policy<W: Write>(
&self,
writer: &mut W,
policy: EscapePolicy
) -> Result<()>
[src]
&self,
writer: &mut W,
policy: EscapePolicy
) -> Result<()>
Write to a writer
impl Ini
[src]
pub fn load_from_str(buf: &str) -> Result<Ini, ParseError>
[src]
Load from a string
pub fn load_from_str_noescape(buf: &str) -> Result<Ini, ParseError>
[src]
Load from a string, but do not interpret '' as an escape character
pub fn load_from_str_opt(buf: &str, opt: ParseOption) -> Result<Ini, ParseError>
[src]
Load from a string with options
pub fn read_from<R: Read>(reader: &mut R) -> Result<Ini, Error>
[src]
Load from a reader
pub fn read_from_noescape<R: Read>(reader: &mut R) -> Result<Ini, Error>
[src]
Load from a reader, but do not interpret '' as an escape character
pub fn read_from_opt<R: Read>(
reader: &mut R,
opt: ParseOption
) -> Result<Ini, Error>
[src]
reader: &mut R,
opt: ParseOption
) -> Result<Ini, Error>
Load from a reader with options
pub fn load_from_file<P: AsRef<Path>>(filename: P) -> Result<Ini, Error>
[src]
Load from a file
pub fn load_from_file_noescape<P: AsRef<Path>>(
filename: P
) -> Result<Ini, Error>
[src]
filename: P
) -> Result<Ini, Error>
Load from a file, but do not interpret '' as an escape character
pub fn load_from_file_opt<P: AsRef<Path>>(
filename: P,
opt: ParseOption
) -> Result<Ini, Error>
[src]
filename: P,
opt: ParseOption
) -> Result<Ini, Error>
Load from a file with options
impl<'a> Ini
[src]
pub fn iter(&'a self) -> SectionIterator<'a>ⓘNotable traits for SectionIterator<'a>
impl<'a> Iterator for SectionIterator<'a> type Item = (&'a Option<String>, &'a Properties);
[src]
Notable traits for SectionIterator<'a>
impl<'a> Iterator for SectionIterator<'a> type Item = (&'a Option<String>, &'a Properties);
Immutable iterate though sections
pub fn mut_iter(&'a mut self) -> SectionMutIterator<'a>ⓘNotable traits for SectionMutIterator<'a>
impl<'a> Iterator for SectionMutIterator<'a> type Item = (&'a Option<String>, &'a mut Properties);
[src]
Notable traits for SectionMutIterator<'a>
impl<'a> Iterator for SectionMutIterator<'a> type Item = (&'a Option<String>, &'a mut Properties);
Mutable iterate though sections
Deprecated! Use iter_mut
instead!
pub fn iter_mut(&'a mut self) -> SectionMutIterator<'a>ⓘNotable traits for SectionMutIterator<'a>
impl<'a> Iterator for SectionMutIterator<'a> type Item = (&'a Option<String>, &'a mut Properties);
[src]
Notable traits for SectionMutIterator<'a>
impl<'a> Iterator for SectionMutIterator<'a> type Item = (&'a Option<String>, &'a mut Properties);
Mutable iterate though sections
Trait Implementations
impl Clone for Ini
[src]
impl Default for Ini
[src]
impl<'q> Index<&'q Option<String>> for Ini
[src]
type Output = Properties
The returned type after indexing.
fn index<'a>(&'a self, index: &'q Option<String>) -> &'a Properties
[src]
impl<'q> Index<&'q str> for Ini
[src]
type Output = Properties
The returned type after indexing.
fn index<'a>(&'a self, index: &'q str) -> &'a Properties
[src]
impl<'i> IndexMut<&'i Option<String>> for Ini
[src]
fn index_mut<'a>(&'a mut self, index: &Option<String>) -> &'a mut Properties
[src]
impl<'q> IndexMut<&'q str> for Ini
[src]
fn index_mut<'a>(&'a mut self, index: &'q str) -> &'a mut Properties
[src]
impl<'a> IntoIterator for &'a Ini
[src]
type Item = (&'a Option<String>, &'a Properties)
The type of the elements being iterated over.
type IntoIter = SectionIterator<'a>
Which kind of iterator are we turning this into?
fn into_iter(self) -> SectionIterator<'a>ⓘNotable traits for SectionIterator<'a>
impl<'a> Iterator for SectionIterator<'a> type Item = (&'a Option<String>, &'a Properties);
[src]
Notable traits for SectionIterator<'a>
impl<'a> Iterator for SectionIterator<'a> type Item = (&'a Option<String>, &'a Properties);
impl<'a> IntoIterator for &'a mut Ini
[src]
type Item = (&'a Option<String>, &'a mut Properties)
The type of the elements being iterated over.
type IntoIter = SectionMutIterator<'a>
Which kind of iterator are we turning this into?
fn into_iter(self) -> SectionMutIterator<'a>ⓘNotable traits for SectionMutIterator<'a>
impl<'a> Iterator for SectionMutIterator<'a> type Item = (&'a Option<String>, &'a mut Properties);
[src]
Notable traits for SectionMutIterator<'a>
impl<'a> Iterator for SectionMutIterator<'a> type Item = (&'a Option<String>, &'a mut Properties);
impl IntoIterator for Ini
[src]
type Item = (Option<String>, Properties)
The type of the elements being iterated over.
type IntoIter = SectionIntoIter
Which kind of iterator are we turning this into?
fn into_iter(self) -> SectionIntoIterⓘNotable traits for SectionIntoIter
impl Iterator for SectionIntoIter type Item = (Option<String>, Properties);
[src]
Notable traits for SectionIntoIter
impl Iterator for SectionIntoIter type Item = (Option<String>, Properties);
Auto Trait Implementations
impl RefUnwindSafe for Ini
impl Send for Ini
impl Sync for Ini
impl Unpin for Ini
impl UnwindSafe for Ini
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator,
[src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,