A crate based on tokio
and quick-xml
for deserializing XML data asynchronously. Includes derive-macros for deserializing things.
```rust use asyncxml::fromstr; use asyncxmlderive::FromXml;
async fn main() {
let report: Report = from_str(r#"
pub struct Report {
#[asyncxml(attribute)]
pub id: String,
#[asyncxml(child)]
pub data: Option
pub struct ReportData { #[async_xml(value)] pub data: String, } ```
Licensed under either of
at your option.
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.