Dual-licensed under MIT or the UNLICENSE.
Add dependency to Cargo.toml
:
```toml [dependencies] mysqldump-quick-xml = "0.1"
```
```rust use mysqldumpquickxml::MysqlDumpQuickXml;
struct Row { id: String, code: String, }
fn main() {
let xml = r##"
let rows = Row::from_str(xml);
assert_eq!(
rows,
vec![
Row {
id: "1".into(),
code: "sample 1".into()
},
Row {
id: "2".into(),
code: "sample 2".into()
}
]
)
} ```