Expand description
Deserialization of ISO 20022 XML messages.
Thin wrappers around quick_xml::de that translate errors into
ParseError.
§Examples
let xml = r#"<AppHdr xmlns="urn:iso:std:iso:20022:tech:xsd:head.001.001.04">...</AppHdr>"#;
let _hdr: BusinessApplicationHeaderV04 = from_str(xml).unwrap();Functions§
- from_
reader - Deserialize an ISO 20022 XML message from a buffered reader.
- from_
str - Deserialize an ISO 20022 XML message from a string slice.