async-xml

A crate based on tokio and quick-xml for deserializing XML data asynchronously. Includes derive-macros for deserializing things.

Example

```rust use asyncxml::fromstr; use asyncxmlderive::FromXml;

[tokio::main]

async fn main() { let report: Report = from_str(r#"text"#) .await .unwrap(); println!("deserialized: {:?}", report); // prints "Report { id: "b", data: Some(ReportData { data: "text" }) }" }

[derive(Debug, PartialEq, FromXml)]

[fromxml(tagname = "report")]

pub struct Report { #[fromxml(attribute)] pub id: String, #[fromxml(child)] pub data: Option, }

[derive(Debug, PartialEq, FromXml)]

[fromxml(tagname = "data")]

pub struct ReportData { #[from_xml(value)] pub data: String, } ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the fork by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.