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) -> Self
pub fn from_kind(kind: ErrorKind) -> Self
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 with_boxed_chain<__K>(error: Box<dyn Error + Send>, kind: __K) -> Error
pub fn with_boxed_chain<__K>(error: Box<dyn Error + Send>, kind: __K) -> Error
Constructs a chained error from another boxed error and a kind, and generates a backtrace
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 display_chain<'a>(&'a self) -> DisplayChain<'a, Self>
fn display_chain<'a>(&'a self) -> DisplayChain<'a, Self>
Returns an object which implements
Display
for printing the full
context of this error. Read moreSource§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<'a> From<PoisonError<MutexGuard<'a, Process>>> for Error
impl<'a> From<PoisonError<MutexGuard<'a, Process>>> for Error
Source§fn from(err: PoisonError<MutexGuard<'a, Process>>) -> Error
fn from(err: PoisonError<MutexGuard<'a, Process>>) -> Error
Converts to this type from the input type.
Source§impl<'a> From<PoisonError<MutexGuard<'a, Thread>>> for Error
impl<'a> From<PoisonError<MutexGuard<'a, Thread>>> for Error
Source§fn from(err: PoisonError<MutexGuard<'a, Thread>>) -> Error
fn from(err: PoisonError<MutexGuard<'a, Thread>>) -> Error
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