Update rxml to 0.11.0

This commit is contained in:
Jonas Schäfer 2024-05-23 18:12:09 +02:00
commit 84de007640
6 changed files with 19 additions and 18 deletions

View file

@ -71,5 +71,11 @@ impl From<rxml::error::XmlError> for Error {
}
}
impl From<rxml::strings::Error> for Error {
fn from(err: rxml::strings::Error) -> Error {
rxml::error::XmlError::from(err).into()
}
}
/// Our simplified Result type.
pub type Result<T> = ::std::result::Result<T, Error>;