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)]

[async_xml(rename = "report")]

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

[derive(Debug, PartialEq, FromXml)]

[async_xml(rename = "data")]

pub struct ReportData { #[async_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.