use async_xml::from_str;
use async_xml_derive::FromXml;
#[tokio::test]
async fn test() {
let xml = r#"test"#;
let de: Report = from_str(xml).await.unwrap();
let expected = Report {
id: "b".into(),
data: vec![
ReportData {
id: "a".into(),
data: "test".into(),
},
ReportData {
id: "3".into(),
data: "".into(),
},
],
};
assert_eq!(de, expected);
}
#[derive(Debug, PartialEq, FromXml)]
#[async_xml(rename = "report")]
pub struct Report {
#[async_xml(attribute)]
pub id: String,
#[async_xml(child)]
pub data: Vec,
}
#[derive(Debug, PartialEq, FromXml)]
#[async_xml(rename = "data")]
pub struct ReportData {
#[async_xml(attribute)]
pub id: String,
#[async_xml(value, default)]
pub data: String,
}