#[test]
fn test_decimal() {
#[derive(Debug, serde::Deserialize)]
struct A {
a: rust_decimal::Decimal,
}
let s = r#"<root><a>100.2</a></root>"#;
let x = quick_xml::de::from_str::<A>(s).unwrap();
println!("{:#?}", x);
}
called `Result::unwrap()` on an `Err` value: Custom("invalid type: map, expected a Decimal type representing a fixed-point number")