pub struct Error(pub ErrorKind, pub State);
Expand description
The Error type.
This struct is made of three things:
ErrorKind
which is used to determine the type of the error.- a backtrace, generated when the error is created.
- an error chain, used for the implementation of
Error::cause()
.
Tuple Fields§
§0: ErrorKind
The kind of the error.
1: State
Contains the error chain and the backtrace.
Implementations§
Source§impl Error
impl Error
Sourcepub fn from_kind(kind: ErrorKind) -> Error
pub fn from_kind(kind: ErrorKind) -> Error
Constructs an error from a kind, and generates a backtrace.
Sourcepub fn with_chain<__E, __K>(error: __E, kind: __K) -> Self
pub fn with_chain<__E, __K>(error: __E, kind: __K) -> Self
Constructs a chained error from another error and a kind, and generates a backtrace.
Sourcepub fn iter(&self) -> ErrorChainIter<'_>
pub fn iter(&self) -> ErrorChainIter<'_>
Iterates over the error chain.
Methods from Deref<Target = ErrorKind>§
Sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
A string describing the error kind.
Trait Implementations§
Source§impl ChainedError for Error
impl ChainedError for Error
Source§fn from_kind(kind: Self::ErrorKind) -> Self
fn from_kind(kind: Self::ErrorKind) -> Self
Constructs an error from a kind, and generates a backtrace.
Source§fn with_chain<__E, __K>(error: __E, kind: __K) -> Self
fn with_chain<__E, __K>(error: __E, kind: __K) -> Self
Constructs a chained error from another error and a kind, and generates a backtrace.
Source§fn iter(&self) -> ErrorChainIter<'_>
fn iter(&self) -> ErrorChainIter<'_>
Iterates over the error chain.
Source§impl Error for Error
impl Error for Error
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
Source§fn from(err: ParseIntError) -> Self
fn from(err: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl !Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more