pub struct Error(pub ErrorKind, _);Expand description
The Error type.
This tuple struct is made of two elements:
- an 
ErrorKindwhich is used to determine the type of the error. - An internal 
State, not meant for direct use outside oferror_chaininternals, containing:- a backtrace, generated when the error is created.
 - an error chain, used for the implementation of 
Error::cause(). 
 
Tuple Fields§
§0: ErrorKindThe kind of the error.
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) -> Error
 
pub fn with_chain<E, K>(error: E, kind: K) -> Error
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
Construct a chained error from another boxed error and a kind, and generates a backtrace
Sourcepub fn backtrace(&self) -> Option<&Backtrace>
 
pub fn backtrace(&self) -> Option<&Backtrace>
Returns the backtrace associated with this error.
Sourcepub fn description(&self) -> &str
 
pub fn description(&self) -> &str
A short description of the error.
This method is identical to Error::description()
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 source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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