use std::fmt::{self, Display}; use serde::{ser, de}; pub type Result = std::result::Result; #[derive(Debug)] pub enum Error { Message(String), Io(std::io::Error), Eof, UnknownLength, SequenceTooLong(usize), } impl std::error::Error for Error {} impl Display for Error { fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result { match self { Error::Message(message) => formatter.write_str(message), Error::Io(io_error) => io_error.fmt(formatter), Error::Eof => formatter.write_str("unexpected end of input"), Error::UnknownLength => formatter.write_str("sequence had an unknown length"), Error::SequenceTooLong(length) => formatter.write_fmt( format_args!("sequence was longer than 2**32 - 1: {}", length)), } } } impl ser::Error for Error { fn custom(message: T) -> Self { Error::Message(message.to_string()) } } impl de::Error for Error { fn custom(message: T) -> Self { Error::Message(message.to_string()) } } pub trait MapError { /// Returns self if no error occurred, otherwise converts the error to a serde_blocktree error. fn map_error(self) -> Result; } impl MapError for std::io::Result { fn map_error(self) -> Result { self.or_else(|err| Result::Err(Error::Io(err))) } }