#![allow(missing_docs)]
use core::fmt::{Debug, Display};
pub trait Error: Debug + Display {
fn description(&self) -> &str {
"description() is deprecated; use Display"
}
fn cause(&self) -> Option<&dyn Error> {
self.source()
}
fn source(&self) -> Option<&(dyn Error + 'static)> {
None
}
}
macro_rules! impl_error {
($($e:path),*) => {
$(
impl Error for $e {}
)*
}
}
impl_error![
core::str::ParseBoolError, core::str::Utf8Error, core::num::ParseIntError, core::num::ParseFloatError, core::char::DecodeUtf16Error, core::fmt::Error, core::cell::BorrowMutError, core::cell::BorrowError, core::char::ParseCharError ];
#[cfg(feature = "futures")]
impl_error![
core::num::TryFromIntError, core::array::TryFromSliceError, core::char::CharTryFromError ];