Enum indy_crypto::errors::IndyCryptoError [] [src]

pub enum IndyCryptoError {
    InvalidParam1(String),
    InvalidParam2(String),
    InvalidParam3(String),
    InvalidParam4(String),
    InvalidParam5(String),
    InvalidParam6(String),
    InvalidParam7(String),
    InvalidParam8(String),
    InvalidParam9(String),
    InvalidState(String),
    InvalidStructure(String),
    IOError(Error),
    AnoncredsRevocationAccumulatorIsFull(String),
    AnoncredsInvalidRevocationAccumulatorIndex(String),
    AnoncredsCredentialRevoked(String),
    AnoncredsProofRejected(String),
}

Variants

Trait Implementations

impl From<ErrorStack> for IndyCryptoError
[src]

[src]

Performs the conversion.

impl Debug for IndyCryptoError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for IndyCryptoError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for IndyCryptoError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl ToErrorCode for IndyCryptoError
[src]

impl From<Error> for IndyCryptoError
[src]

[src]

Performs the conversion.

Auto Trait Implementations