Struct ethcore::error::BlockImportError
[−]
pub struct BlockImportError(pub BlockImportErrorKind, _);
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()
.
Methods
impl BlockImportError
impl BlockImportError
pub fn from_kind(kind: BlockImportErrorKind) -> BlockImportError
pub fn from_kind(kind: BlockImportErrorKind) -> BlockImportError
Constructs an error from a kind, and generates a backtrace.
pub fn with_chain<E, K>(error: E, kind: K) -> BlockImportError where
E: Error + Send + 'static,
K: Into<BlockImportErrorKind>,
pub fn with_chain<E, K>(error: E, kind: K) -> BlockImportError where
E: Error + Send + 'static,
K: Into<BlockImportErrorKind>,
Constructs a chained error from another error and a kind, and generates a backtrace.
pub fn with_boxed_chain<K>(
error: Box<Error + Send>,
kind: K
) -> BlockImportError where
K: Into<BlockImportErrorKind>,
pub fn with_boxed_chain<K>(
error: Box<Error + Send>,
kind: K
) -> BlockImportError where
K: Into<BlockImportErrorKind>,
Construct a chained error from another boxed error and a kind, and generates a backtrace
pub fn kind(&self) -> &BlockImportErrorKind
pub fn kind(&self) -> &BlockImportErrorKind
Returns the kind of the error.
ⓘImportant traits for Iter<'a>pub fn iter(&self) -> Iter
pub fn iter(&self) -> Iter
Iterates over the error chain.
pub fn backtrace(&self) -> Option<&Backtrace>
pub fn backtrace(&self) -> Option<&Backtrace>
Returns the backtrace associated with this error.
pub fn chain_err<F, EK>(self, error: F) -> BlockImportError where
F: FnOnce() -> EK,
EK: Into<BlockImportErrorKind>,
pub fn chain_err<F, EK>(self, error: F) -> BlockImportError where
F: FnOnce() -> EK,
EK: Into<BlockImportErrorKind>,
Extends the error chain with a new entry.
Methods from Deref<Target = BlockImportErrorKind>
pub fn description(&self) -> &str
pub fn description(&self) -> &str
A string describing the error kind.
Trait Implementations
impl Debug for BlockImportError
impl Debug for BlockImportError
fn fmt(&self, __arg_0: &mut Formatter) -> Result
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl ChainedError for BlockImportError
impl ChainedError for BlockImportError
type ErrorKind = BlockImportErrorKind
Associated kind type.
fn new(kind: BlockImportErrorKind, state: State) -> BlockImportError
fn new(kind: BlockImportErrorKind, state: State) -> BlockImportError
fn from_kind(kind: Self::ErrorKind) -> Self
fn from_kind(kind: Self::ErrorKind) -> Self
Constructs an error from a kind, and generates a backtrace.
fn 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.
fn kind(&self) -> &Self::ErrorKind
fn kind(&self) -> &Self::ErrorKind
Returns the kind of the error.
ⓘImportant traits for Iter<'a>fn iter(&self) -> Iter
fn iter(&self) -> Iter
Iterates over the error chain.
fn chain_err<F, EK>(self, error: F) -> Self where
F: FnOnce() -> EK,
EK: Into<BlockImportErrorKind>,
fn chain_err<F, EK>(self, error: F) -> Self where
F: FnOnce() -> EK,
EK: Into<BlockImportErrorKind>,
Extends the error chain with a new entry.
fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns the backtrace associated with this error.
fn extract_backtrace(e: &(Error + Send + 'static)) -> Option<Arc<Backtrace>>
fn extract_backtrace(e: &(Error + Send + 'static)) -> Option<Arc<Backtrace>>
fn display_chain(&'a self) -> DisplayChain<'a, Self>
[src]
fn display_chain(&'a self) -> DisplayChain<'a, Self>
Returns an object which implements Display
for printing the full context of this error. Read more
impl Error for BlockImportError
impl Error for BlockImportError
fn description(&self) -> &str
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl Display for BlockImportError
impl Display for BlockImportError
impl From<ImportError> for BlockImportError
impl From<ImportError> for BlockImportError
Import error
fn from(e: ImportError) -> Self
fn from(e: ImportError) -> Self
Performs the conversion.
impl From<BlockError> for BlockImportError
impl From<BlockError> for BlockImportError
Block error
fn from(e: BlockError) -> Self
fn from(e: BlockError) -> Self
Performs the conversion.
impl From<DecoderError> for BlockImportError
impl From<DecoderError> for BlockImportError
Rlp decoding error
fn from(e: DecoderError) -> Self
fn from(e: DecoderError) -> Self
Performs the conversion.
impl From<BlockImportErrorKind> for BlockImportError
impl From<BlockImportErrorKind> for BlockImportError
fn from(e: BlockImportErrorKind) -> Self
fn from(e: BlockImportErrorKind) -> Self
Performs the conversion.
impl<'a> From<&'a str> for BlockImportError
impl<'a> From<&'a str> for BlockImportError
impl From<String> for BlockImportError
impl From<String> for BlockImportError
impl Deref for BlockImportError
impl Deref for BlockImportError
type Target = BlockImportErrorKind
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target
fn deref(&self) -> &Self::Target
Dereferences the value.
impl From<BlockImportError> for BlockImportErrorKind
impl From<BlockImportError> for BlockImportErrorKind
fn from(e: BlockImportError) -> Self
fn from(e: BlockImportError) -> Self
Performs the conversion.
impl From<Error> for BlockImportError
[src]
impl From<Error> for BlockImportError
impl From<BlockImportError> for Error
[src]
impl From<BlockImportError> for Error
fn from(err: BlockImportError) -> Error
[src]
fn from(err: BlockImportError) -> Error
Performs the conversion.
Auto Trait Implementations
impl Send for BlockImportError
impl Send for BlockImportError
impl !Sync for BlockImportError
impl !Sync for BlockImportError