1
0
mirror of https://gitlab.com/xmpp-rs/xmpp-rs.git synced 2024-07-03 03:40:36 +02:00

error: Implement fmt::Display and error::Error.

This commit is contained in:
Emmanuel Gil Peyrot 2017-06-17 03:36:12 +01:00
parent 6f69f2d7d9
commit 17798190cf

View File

@ -8,6 +8,8 @@ use std::convert::From;
use std::io;
use std::num;
use std::string;
use std::fmt;
use std::error;
use base64;
use minidom;
@ -26,6 +28,36 @@ pub enum Error {
ChronoParseError(chrono::ParseError),
}
impl fmt::Display for Error {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::ParseError(s) => write!(fmt, "{}", s),
Error::IoError(ref e) => write!(fmt, "{}", e),
Error::XMLError(ref e) => write!(fmt, "{}", e),
Error::Base64Error(ref e) => write!(fmt, "{}", e),
Error::ParseIntError(ref e) => write!(fmt, "{}", e),
Error::ParseStringError(ref e) => write!(fmt, "{}", e),
Error::JidParseError(_) => write!(fmt, "JID parse error"),
Error::ChronoParseError(ref e) => write!(fmt, "{}", e),
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
match *self {
Error::ParseError(s) => s,
Error::IoError(ref e) => e.description(),
Error::XMLError(ref e) => e.description(),
Error::Base64Error(ref e) => e.description(),
Error::ParseIntError(ref e) => e.description(),
Error::ParseStringError(ref e) => e.description(),
Error::JidParseError(_) => "JID parse error",
Error::ChronoParseError(ref e) => e.description(),
}
}
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Error {
Error::IoError(err)