Enum parables_testing::error::Error  [−][src]
pub enum Error {
    NoLinkerItem {
        item: String,
    },
    NoLinkerPath {
        path: String,
    },
    BadInputPos {
        position: usize,
        message: Cow<'static, str>,
    },
    Call {
        message: String,
    },
    Other {
        message: String,
    },
}Variants
NoLinkerItemFields of NoLinkerItem
                           item: String | 
NoLinkerPathFields of NoLinkerPath
                           path: String | 
BadInputPosFields of BadInputPos
                           position: usize | |
message: Cow<'static, str> | 
CallFields of Call
                           message: String | 
OtherFields of Other
                           message: String | 
Trait Implementations
impl From<Error> for Error[src] 
impl From<Error> for Errorimpl Debug for Error[src] 
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Error[src] 
impl PartialEq for Errorfn eq(&self, other: &Error) -> bool[src] 
fn eq(&self, other: &Error) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Error) -> bool[src] 
fn ne(&self, other: &Error) -> boolThis method tests for !=.
impl Fail for Error[src] 
impl Fail for Errorfn cause(&self) -> Option<&Fail>[src] 
fn cause(&self) -> Option<&Fail>Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
fn backtrace(&self) -> Option<&Backtrace>[src] 
fn backtrace(&self) -> Option<&Backtrace>Returns a reference to the Backtrace carried by this failure, if it carries one. Read more
fn context<D>(self, context: D) -> Context<D> where
    D: Display + Send + Sync + 'static, [src] 
fn context<D>(self, context: D) -> Context<D> where
    D: Display + Send + Sync + 'static, Provides context for this failure. Read more
fn compat(self) -> Compat<Self>[src] 
fn compat(self) -> Compat<Self>Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more
ⓘImportant traits for Causes<'f>fn causes(&self) -> Causes[src] 
fn causes(&self) -> CausesReturns a iterator over the causes of this Fail with itself as the first item and the root_cause as the final item. Read more
fn root_cause(&self) -> &(Fail + 'static)[src] 
fn root_cause(&self) -> &(Fail + 'static)Returns the "root cause" of this Fail - the last value in the cause chain which does not return an underlying cause. Read more
impl Display for Error[src] 
impl Display for Errorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<&'static str> for Error[src] 
impl From<&'static str> for Errorimpl From<String> for Error[src] 
impl From<String> for Errorimpl From<Error> for Error[src] 
impl From<Error> for Errorimpl From<DecodingError> for Error[src] 
impl From<DecodingError> for Errorfn from(_: DecodingError) -> Self[src] 
fn from(_: DecodingError) -> SelfPerforms the conversion.
impl From<Error> for TestCaseError[src] 
impl From<Error> for TestCaseErrorfn from(error: Error) -> TestCaseError[src] 
fn from(error: Error) -> TestCaseErrorPerforms the conversion.
impl From<NonceError> for Error[src] 
impl From<NonceError> for Errorfn from(_: NonceError) -> Self[src] 
fn from(_: NonceError) -> SelfPerforms the conversion.
impl From<BalanceError> for Error[src] 
impl From<BalanceError> for Errorfn from(_: BalanceError) -> Self[src] 
fn from(_: BalanceError) -> SelfPerforms the conversion.