1个不稳定版本
0.13.0 | 2021年8月25日 |
---|
#8 in #quick-xml
在 2 个crate中使用
81KB
1.5K SLoC
minidom
这是什么?
这是一个基于quick-xml的最小化DOM库,专门针对XMPP有用的XML子集。
lib.rs
:
基于quick-xml构建的最小化DOM crate。
此库导出代表DOM树的Element
结构体。
示例
使用 cargo run --example articles
运行。位于 examples/articles.rs
。
extern crate minidom;
use minidom::Element;
const DATA: &'static str = r#"<articles xmlns="article">
<article>
<title>10 Terrible Bugs You Would NEVER Believe Happened</title>
<body>
Rust fixed them all. <3
</body>
</article>
<article>
<title>BREAKING NEWS: Physical Bug Jumps Out Of Programmer's Screen</title>
<body>
Just kidding!
</body>
</article>
</articles>"#;
const ARTICLE_NS: &'static str = "article";
#[derive(Debug)]
pub struct Article {
title: String,
body: String,
}
fn main() {
let root: Element = DATA.parse().unwrap();
let mut articles: Vec<Article> = Vec::new();
for child in root.children() {
if child.is("article", ARTICLE_NS) {
let title = child.get_child("title", ARTICLE_NS).unwrap().text();
let body = child.get_child("body", ARTICLE_NS).unwrap().text();
articles.push(Article {
title: title,
body: body.trim().to_owned(),
});
}
}
println!("{:?}", articles);
}
用法
要使用 minidom
,请将以下内容添加到您的 Cargo.toml
中的 dependencies
minidom = "*"
依赖项
~1.5MB
~21K SLoC