Merge pull request #162 from skade/std-error

Have serde::de::Error require std::error::Error
This commit is contained in:
Erick Tryzelaar
2015-12-08 14:10:45 -05:00
8 changed files with 131 additions and 1 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
//! Generic deserialization framework.
use std::error;
pub mod impls;
pub mod value;
@@ -7,7 +9,7 @@ pub mod value;
/// `Error` is a trait that allows a `Deserialize` to generically create a
/// `Deserializer` error.
pub trait Error: Sized {
pub trait Error: Sized + error::Error {
/// Raised when there is general error when deserializing a type.
fn syntax(msg: &str) -> Self;
+23
View File
@@ -11,6 +11,8 @@ use std::collections::{
hash_set,
};
use std::hash::Hash;
use std::error;
use std::fmt;
use std::vec;
use std::marker::PhantomData;
@@ -50,6 +52,27 @@ impl de::Error for Error {
fn missing_field(field: &'static str) -> Self { Error::MissingField(field) }
}
impl fmt::Display for Error {
fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {
match *self {
Error::SyntaxError => formatter.write_str("SyntaxError"),
Error::EndOfStreamError => formatter.write_str("EndOfStreamError"),
Error::UnknownFieldError(ref field) => formatter.write_str(format!("Unknown field: {}", field).as_ref()),
Error::MissingFieldError(ref field) => formatter.write_str(format!("Missing field: {}", field).as_ref()),
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
"Serde Deserialization Error"
}
fn cause(&self) -> Option<&error::Error> {
None
}
}
///////////////////////////////////////////////////////////////////////////////
/// This trait converts primitive types into a deserializer.