Update rxml to 0.11.0
This commit is contained in:
parent
2097b9685f
commit
84de007640
6 changed files with 19 additions and 18 deletions
|
|
@ -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>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue