Struct ethcore::error::ImportError  
                   
                       [−]
                   
               
pub struct ImportError(pub ImportErrorKind, _);
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(). 
 
Methods
impl ImportError
impl ImportErrorpub fn from_kind(kind: ImportErrorKind) -> ImportError
pub fn from_kind(kind: ImportErrorKind) -> ImportErrorConstructs an error from a kind, and generates a backtrace.
pub 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.
pub fn with_boxed_chain<K>(error: Box<Error + Send>, kind: K) -> ImportError where
    K: Into<ImportErrorKind>, 
pub fn with_boxed_chain<K>(error: Box<Error + Send>, kind: K) -> ImportError where
    K: Into<ImportErrorKind>, Construct a chained error from another boxed error and a kind, and generates a backtrace
pub fn kind(&self) -> &ImportErrorKind
pub fn kind(&self) -> &ImportErrorKindReturns the kind of the error.
ⓘImportant traits for Iter<'a>pub fn iter(&self) -> Iter
pub fn iter(&self) -> IterIterates 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) -> 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.
Methods from Deref<Target = ImportErrorKind>
pub fn description(&self) -> &str
pub fn description(&self) -> &strA string describing the error kind.
Trait Implementations
impl Debug for ImportError
impl Debug for ImportErrorfn fmt(&self, __arg_0: &mut Formatter) -> Result
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl ChainedError for ImportError
impl ChainedError for ImportErrortype ErrorKind = ImportErrorKind
Associated kind type.
fn new(kind: ImportErrorKind, state: State) -> ImportError
fn new(kind: ImportErrorKind, state: State) -> ImportErrorfn from_kind(kind: Self::ErrorKind) -> Self
fn from_kind(kind: Self::ErrorKind) -> SelfConstructs 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::ErrorKindReturns the kind of the error.
ⓘImportant traits for Iter<'a>fn iter(&self) -> Iter
fn iter(&self) -> IterIterates over the error chain.
fn 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.
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 ImportError
impl Error for ImportErrorfn description(&self) -> &str
fn description(&self) -> &strA 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 ImportError
impl Display for ImportErrorimpl From<ImportErrorKind> for ImportError
impl From<ImportErrorKind> for ImportErrorfn from(e: ImportErrorKind) -> Self
fn from(e: ImportErrorKind) -> SelfPerforms the conversion.
impl<'a> From<&'a str> for ImportError
impl<'a> From<&'a str> for ImportErrorimpl From<String> for ImportError
impl From<String> for ImportErrorimpl Deref for ImportError
impl Deref for ImportErrortype Target = ImportErrorKind
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target
fn deref(&self) -> &Self::TargetDereferences the value.
impl From<ImportError> for ImportErrorKind
impl From<ImportError> for ImportErrorKindfn from(e: ImportError) -> Self
fn from(e: ImportError) -> SelfPerforms the conversion.
impl From<ImportError> for BlockImportError
impl From<ImportError> for BlockImportErrorImport error
fn from(e: ImportError) -> Self
fn from(e: ImportError) -> SelfPerforms the conversion.
impl From<ImportError> for Error
impl From<ImportError> for ErrorError concerning block import.
fn from(e: ImportError) -> Self
fn from(e: ImportError) -> SelfPerforms the conversion.
Auto Trait Implementations
impl Send for ImportError
impl Send for ImportErrorimpl !Sync for ImportError
impl !Sync for ImportError