use core::fmt;
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum Error<W> {
Write(W),
Message(&'static str)
}
impl<W: fmt::Display> fmt::Display for Error<W> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Error::Write(e) => write!(f, "write error: {}", e),
Error::Message(m) => write!(f, "{}", m)
}
}
}
#[cfg(feature = "std")]
impl<W: std::error::Error + 'static> std::error::Error for Error<W> {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Error::Write(e) => Some(e),
Error::Message(_) => None
}
}
}