pub fn from_reader<R: BufRead, T: DeserializeOwned>(
reader: R,
) -> Result<T, ParseError>Expand description
Deserialize an ISO 20022 XML message from a buffered reader.
ยงErrors
Returns ParseError::Deserialize if the XML is malformed or does not
match the expected schema.