aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/de.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/de.rs b/src/de.rs
index f65492d..49bc78b 100644
--- a/src/de.rs
+++ b/src/de.rs
@@ -1769,6 +1769,13 @@ impl Error {
#[doc(hidden)]
pub fn add_key_context(&mut self, key: &str) {
self.inner.key.insert(0, key.to_string());
+ }
+
+}
+
+impl std::convert::From<Error> for std::io::Error {
+ fn from(e: Error) -> Self {
+ return std::io::Error::new(std::io::ErrorKind::InvalidData, e.to_string())
}
}