Struct openmw_cfg::Ini[][src]

pub struct Ini { /* fields omitted */ }
Expand description

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]

Set with a specified section, None is for the general section

pub fn with_general_section(&mut self) -> SectionSetter<'_>[src]

Set with general section, a simple wrapper of with_section(None::<String>)

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]

Get a immutable section

pub fn section_mut<S>(&mut self, name: Option<S>) -> Option<&mut Properties> where
    S: Into<String>, 
[src]

Get a mutable section

pub fn section_all<S>(
    &self,
    name: Option<S>
) -> impl Iterator<Item = &Properties> where
    S: Into<String>, 
[src]

Get all sections immutable with the same key

pub fn section_all_mut<S>(
    &mut self,
    name: Option<S>
) -> impl Iterator<Item = &mut Properties> where
    S: Into<String>, 
[src]

Get all sections mutable with the same key

pub fn entry(&mut self, name: Option<String>) -> SectionEntry<'_>[src]

Get the entry

pub fn clear(&mut self)[src]

Clear all entries

pub fn sections(&self) -> impl Iterator<Item = Option<&str>>[src]

Iterate with sections

pub fn set_to<S>(&mut self, section: Option<S>, key: String, value: String) where
    S: Into<String>, 
[src]

Set key-value to a section

pub fn get_from<S>(&'a self, section: Option<S>, key: &str) -> Option<&'a str> where
    S: Into<String>, 
[src]

Get the first value from the sections 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<S>(
    &'a self,
    section: Option<S>,
    key: &str,
    default: &'a str
) -> &'a str where
    S: Into<String>, 
[src]

Get the first value from the sections 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<S>(
    &'a mut self,
    section: Option<S>,
    key: &str
) -> Option<&'a mut str> where
    S: Into<String>, 
[src]

Get the first mutable value from the sections with key

pub fn delete<S>(&mut self, section: Option<S>) -> Option<Properties> where
    S: Into<String>, 
[src]

Delete the first section with key, 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]

Delete the key from the section, return the value if key exists or None

pub fn len(&self) -> usize[src]

Total sections count

pub fn is_empty(&self) -> bool[src]

Check if object coutains no section

impl Ini[src]

pub fn write_to_file<P>(&self, filename: P) -> Result<(), Error> where
    P: AsRef<Path>, 
[src]

Write to a file

pub fn write_to_file_policy<P>(
    &self,
    filename: P,
    policy: EscapePolicy
) -> Result<(), Error> where
    P: AsRef<Path>, 
[src]

Write to a file

pub fn write_to_file_opt<P>(
    &self,
    filename: P,
    opt: WriteOption
) -> Result<(), Error> where
    P: AsRef<Path>, 
[src]

Write to a file with options

pub fn write_to<W>(&self, writer: &mut W) -> Result<(), Error> where
    W: Write
[src]

Write to a writer

pub fn write_to_policy<W>(
    &self,
    writer: &mut W,
    policy: EscapePolicy
) -> Result<(), Error> where
    W: Write
[src]

Write to a writer

pub fn write_to_opt<W>(
    &self,
    writer: &mut W,
    opt: WriteOption
) -> Result<(), Error> where
    W: Write
[src]

Write to a writer with options

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>(reader: &mut R) -> Result<Ini, Error> where
    R: Read
[src]

Load from a reader

pub fn read_from_noescape<R>(reader: &mut R) -> Result<Ini, Error> where
    R: Read
[src]

Load from a reader, but do not interpret ’' as an escape character

pub fn read_from_opt<R>(reader: &mut R, opt: ParseOption) -> Result<Ini, Error> where
    R: Read
[src]

Load from a reader with options

pub fn load_from_file<P>(filename: P) -> Result<Ini, Error> where
    P: AsRef<Path>, 
[src]

Load from a file

pub fn load_from_file_noescape<P>(filename: P) -> Result<Ini, Error> where
    P: AsRef<Path>, 
[src]

Load from a file, but do not interpret ’' as an escape character

pub fn load_from_file_opt<P>(
    filename: P,
    opt: ParseOption
) -> Result<Ini, Error> where
    P: AsRef<Path>, 
[src]

Load from a file with options

impl<'a> Ini[src]

pub fn iter(&'a self) -> SectionIter<'a>[src]

Immutable iterate though sections

pub fn mut_iter(&'a mut self) -> SectionIterMut<'a>[src]

Mutable iterate though sections Deprecated! Use iter_mut instead!

pub fn iter_mut(&'a mut self) -> SectionIterMut<'a>[src]

Mutable iterate though sections

Trait Implementations

impl Clone for Ini[src]

pub fn clone(&self) -> Ini[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Ini[src]

pub fn default() -> Ini[src]

Returns the “default value” for a type. Read more

impl<'q> Index<&'q str> for Ini[src]

type Output = Properties

The returned type after indexing.

pub fn index(&'a self, index: &'q str) -> &'a Properties[src]

Performs the indexing (container[index]) operation. Read more

impl<S> Index<Option<S>> for Ini where
    S: Into<String>, 
[src]

type Output = Properties

The returned type after indexing.

pub fn index(&self, index: Option<S>) -> &Properties[src]

Performs the indexing (container[index]) operation. Read more

impl<'q> IndexMut<&'q str> for Ini[src]

pub fn index_mut(&'a mut self, index: &'q str) -> &'a mut Properties[src]

Performs the mutable indexing (container[index]) operation. Read more

impl<S> IndexMut<Option<S>> for Ini where
    S: Into<String>, 
[src]

pub fn index_mut(&mut self, index: Option<S>) -> &mut Properties[src]

Performs the mutable indexing (container[index]) operation. Read more

impl<'a> IntoIterator for &'a Ini[src]

type Item = (Option<&'a str>, &'a Properties)

The type of the elements being iterated over.

type IntoIter = SectionIter<'a>

Which kind of iterator are we turning this into?

pub fn into_iter(self) -> <&'a Ini as IntoIterator>::IntoIter[src]

Creates an iterator from a value. Read more

impl<'a> IntoIterator for &'a mut Ini[src]

type Item = (Option<&'a str>, &'a mut Properties)

The type of the elements being iterated over.

type IntoIter = SectionIterMut<'a>

Which kind of iterator are we turning this into?

pub fn into_iter(self) -> <&'a mut Ini as IntoIterator>::IntoIter[src]

Creates an iterator from a value. Read more

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V