mysqldump-quick-xml

Crates.iomysqldump-quick-xml
lib.rsmysqldump-quick-xml
version0.1.0
sourcesrc
created_at2019-03-23 18:39:59.259917
updated_at2019-03-23 18:39:59.259917
descriptionConvert from mysqldump in xml format to struct using quick-xml.
homepagehttps://github.com/kilork/mysqldump-quick-xml
repositoryhttps://github.com/kilork/mysqldump-quick-xml
max_upload_size
id123377
size7,653
Alexander Korolev (kilork)

documentation

README

mysqldump-quick-xml - A derive macro to convert from mysqldump in xml format to struct using quick-xml

Legal

Dual-licensed under MIT or the UNLICENSE.

Features

  1. Parse mysqldump in xml file format.

Usage

Add dependency to Cargo.toml:

[dependencies]
mysqldump-quick-xml = "0.1"

use mysqldump_quick_xml::MysqlDumpQuickXml;

#[derive(Debug, PartialEq, MysqlDumpQuickXml)]
struct Row {
    id: String,
    code: String,
}

fn main() {
    let xml = r##"
<?xml version="1.0"?>
<mysqldump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<database name="db">
<table_data name="table1">
    <row>
        <field name="id">1</field>
        <field name="code">sample 1</field>
    </row>
    <row>
        <field name="id">2</field>
        <field name="code">sample 2</field>
    </row>
</table_data>
</database>
</mysqldump>
        "##;

    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()
            }
        ]
    )
}
Commit count: 2

cargo fmt