Struct ethcore::error::ImportError
source · [−]pub struct ImportError(pub ImportErrorKind, _);
Expand description
The Error type.
This tuple struct is made of two elements:
- an
ErrorKind
which is used to determine the type of the error. - An internal
State
, not meant for direct use outside oferror_chain
internals, containing:- a backtrace, generated when the error is created.
- an error chain, used for the implementation of
Error::cause()
.
Tuple Fields
0: ImportErrorKind
The kind of the error.
Implementations
sourceimpl ImportError
impl ImportError
sourcepub fn from_kind(kind: ImportErrorKind) -> ImportError
pub fn from_kind(kind: ImportErrorKind) -> ImportError
Constructs an error from a kind, and generates a backtrace.
sourcepub fn with_chain<E, K>(error: E, kind: K) -> ImportError where
E: Error + Send + 'static,
K: Into<ImportErrorKind>,
pub fn with_chain<E, K>(error: E, kind: K) -> ImportError where
E: Error + Send + 'static,
K: Into<ImportErrorKind>,
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) -> ImportError where
K: Into<ImportErrorKind>,
pub fn with_boxed_chain<K>(error: Box<dyn Error + Send>, kind: K) -> ImportError where
K: Into<ImportErrorKind>,
Construct a chained error from another boxed error and a kind, and generates a backtrace
sourcepub fn kind(&self) -> &ImportErrorKind
pub fn kind(&self) -> &ImportErrorKind
Returns the kind of the error.
sourcepub fn backtrace(&self) -> Option<&Backtrace>
pub fn backtrace(&self) -> Option<&Backtrace>
Returns the backtrace associated with this error.
sourcepub fn chain_err<F, EK>(self, error: F) -> ImportError where
F: FnOnce() -> EK,
EK: Into<ImportErrorKind>,
pub fn chain_err<F, EK>(self, error: F) -> ImportError where
F: FnOnce() -> EK,
EK: Into<ImportErrorKind>,
Extends the error chain with a new entry.
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
sourceimpl ChainedError for ImportError
impl ChainedError for ImportError
type ErrorKind = ImportErrorKind
type ErrorKind = ImportErrorKind
Associated kind type.
sourcefn from_kind(kind: Self::ErrorKind) -> Self
fn from_kind(kind: Self::ErrorKind) -> Self
Constructs an error from a kind, and generates a backtrace.
sourcefn with_chain<E, K>(error: E, kind: K) -> Self where
E: Error + Send + 'static,
K: Into<Self::ErrorKind>,
fn with_chain<E, K>(error: E, kind: K) -> Self where
E: Error + Send + 'static,
K: Into<Self::ErrorKind>,
Constructs a chained error from another error and a kind, and generates a backtrace.
sourcefn chain_err<F, EK>(self, error: F) -> Self where
F: FnOnce() -> EK,
EK: Into<ImportErrorKind>,
fn chain_err<F, EK>(self, error: F) -> Self where
F: FnOnce() -> EK,
EK: Into<ImportErrorKind>,
Extends the error chain with a new entry.
sourcefn display_chain(&'a self) -> DisplayChain<'a, Self>
fn display_chain(&'a self) -> DisplayChain<'a, Self>
Returns an object which implements Display
for printing the full
context of this error. Read more
sourceimpl Debug for ImportError
impl Debug for ImportError
sourceimpl Display for ImportError
impl Display for ImportError
sourceimpl Error for ImportError
impl Error for ImportError
sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourceimpl<'a> From<&'a str> for ImportError
impl<'a> From<&'a str> for ImportError
sourceimpl From<ImportError> for ImportErrorKind
impl From<ImportError> for ImportErrorKind
sourcefn from(e: ImportError) -> Self
fn from(e: ImportError) -> Self
Performs the conversion.
sourceimpl From<ImportError> for Error
impl From<ImportError> for Error
Error concerning block import.
sourcefn from(e: ImportError) -> Self
fn from(e: ImportError) -> Self
Performs the conversion.
sourceimpl From<ImportErrorKind> for ImportError
impl From<ImportErrorKind> for ImportError
sourcefn from(e: ImportErrorKind) -> Self
fn from(e: ImportErrorKind) -> Self
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for ImportError
impl Send for ImportError
impl !Sync for ImportError
impl Unpin for ImportError
impl !UnwindSafe for ImportError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more