diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/rust/rust-ini/examples | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/rust-ini/examples')
-rw-r--r-- | third_party/rust/rust-ini/examples/test.rs | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/third_party/rust/rust-ini/examples/test.rs b/third_party/rust/rust-ini/examples/test.rs new file mode 100644 index 0000000000..a0a62be729 --- /dev/null +++ b/third_party/rust/rust-ini/examples/test.rs @@ -0,0 +1,50 @@ +extern crate ini; + +use std::io::stdout; + +use ini::Ini; + +const CONF_FILE_NAME: &'static str = "test.ini"; + +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".into(), "42".into()); + + 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__".into(); + 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()); +} |