Struct ini::SectionSetter
source · pub struct SectionSetter<'a> { /* private fields */ }
Expand description
A setter which could be used to set key-value pair in a specified section
Implementations§
source§impl<'a> SectionSetter<'a>
impl<'a> SectionSetter<'a>
sourcepub fn set<'b, K, V>(
&'b mut self,
key: K,
value: V,
) -> &'b mut SectionSetter<'a>
pub fn set<'b, K, V>( &'b mut self, key: K, value: V, ) -> &'b mut SectionSetter<'a>
Set (replace) key-value pair in this section (all with the same name)
Examples found in repository?
examples/test.rs (line 9)
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
fn main() {
let mut conf = Ini::new();
conf.with_section(None::<String>).set("encoding", "utf-8");
conf.with_section(Some("User"))
.set("name", "Raspberry树莓")
.set("value", "Pi");
conf.with_section(Some("Library"))
.set("name", "Sun Yat-sen U")
.set("location", "Guangzhou=world\x0ahahaha");
conf.section_mut(Some("Library")).unwrap().insert("seats", "42");
println!("---------------------------------------");
println!("Writing to file {:?}\n", CONF_FILE_NAME);
conf.write_to(&mut stdout()).unwrap();
conf.write_to_file(CONF_FILE_NAME).unwrap();
println!("----------------------------------------");
println!("Reading from file {:?}", CONF_FILE_NAME);
let i = Ini::load_from_file(CONF_FILE_NAME).unwrap();
println!("Iterating");
let general_section_name = "__General__";
for (sec, prop) in i.iter() {
let section_name = sec.as_ref().unwrap_or(&general_section_name);
println!("-- Section: {:?} begins", section_name);
for (k, v) in prop.iter() {
println!("{}: {:?}", k, v);
}
}
println!();
let section = i.section(Some("User")).unwrap();
println!("name={}", section.get("name").unwrap());
println!("conf[User][name]={}", &i["User"]["name"]);
println!("General Section: {:?}", i.general_section());
}
sourcepub fn add<'b, K, V>(
&'b mut self,
key: K,
value: V,
) -> &'b mut SectionSetter<'a>
pub fn add<'b, K, V>( &'b mut self, key: K, value: V, ) -> &'b mut SectionSetter<'a>
Add (append) key-value pair in this section
sourcepub fn delete<'b, K>(&'b mut self, key: &K) -> &'b mut SectionSetter<'a>
pub fn delete<'b, K>(&'b mut self, key: &K) -> &'b mut SectionSetter<'a>
Delete the first entry in this section with key
Auto Trait Implementations§
impl<'a> Freeze for SectionSetter<'a>
impl<'a> RefUnwindSafe for SectionSetter<'a>
impl<'a> Send for SectionSetter<'a>
impl<'a> Sync for SectionSetter<'a>
impl<'a> Unpin for SectionSetter<'a>
impl<'a> !UnwindSafe for SectionSetter<'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