use async_xml::{ from_str, util::{XmlAttribute, XmlNode}, }; use async_xml_derive::FromXml; #[tokio::test] async fn test_children() { let xml = r#" text this is important! some random text whatever "#; let de: Test = from_str(xml).await.unwrap(); let expected = Test { text: "text".into(), required: "this is important!".into(), useless: XmlNode { name: "useless".into(), children: vec![ XmlNode { name: "child".into(), attributes: vec![XmlAttribute { name: "attribute".into(), value: "something".into(), }], ..Default::default() }, XmlNode { name: "child".into(), text: Some("some random text whatever".into()), ..Default::default() }, ], ..Default::default() }, }; assert_eq!(de, expected); } #[derive(Debug, PartialEq, FromXml)] pub struct Test { #[async_xml(value)] text: String, #[async_xml(child)] required: String, #[async_xml(child)] useless: XmlNode, }