rust-ini:Rust中的INI文件解析器

时间:2024-05-22 17:35:28
【文件属性】:

文件名称:rust-ini:Rust中的INI文件解析器

文件大小:16KB

文件格式:ZIP

更新时间:2024-05-22 17:35:28

Rust

锈中的INI 是用于某些平台或软件的配置文件的非正式标准。 INI文件是简单的文本文件,具有由“节”和“属性”组成的基本结构。 这是的INI文件解析器。 [ dependencies ] rust-ini = " 0.17 " 用法 创建一个Ini配置文件。 extern crate ini; use ini :: Ini; fn main () { let mut conf = Ini :: new (); conf. with_section ( None :: < String> ) . set ( "encoding" , "utf-8" ); conf. with_section ( Some ( "User" )) . set ( "given_name" , "Tommy" ) . set (


【文件预览】:
rust-ini-master
----.gitignore(57B)
----src()
--------lib.rs(56KB)
----.travis.yml(351B)
----LICENSE(1KB)
----Cargo.toml(712B)
----examples()
--------test.rs(1KB)
----README.rst(3KB)
----rustfmt.toml(309B)

网友评论