Have serde::de::Error require std::error::Error

This commit is contained in:
Florian Gilcher
2015-09-24 07:03:36 -07:00
parent a1bd0c1667
commit fc19895237
8 changed files with 131 additions and 1 deletions
+18
View File
@@ -1,4 +1,6 @@
use serde;
use std::fmt;
use std::error;
use serde::Serialize;
use serde::bytes::{ByteBuf, Bytes};
@@ -17,6 +19,22 @@ impl serde::de::Error for Error {
fn missing_field(_field: &'static str) -> Error { Error }
}
impl fmt::Display for Error {
fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {
formatter.write_str(format!("{:?}", self).as_ref())
}
}
impl error::Error for Error {
fn description(&self) -> &str {
"Serde Deserialization Error"
}
fn cause(&self) -> Option<&error::Error> {
None
}
}
///////////////////////////////////////////////////////////////////////////////
struct BytesSerializer {