#[repr(usize)]pub enum ErrorCode {
Show 20 variants
Success = 0,
CommonInvalidParam1 = 100,
CommonInvalidParam2 = 101,
CommonInvalidParam3 = 102,
CommonInvalidParam4 = 103,
CommonInvalidParam5 = 104,
CommonInvalidParam6 = 105,
CommonInvalidParam7 = 106,
CommonInvalidParam8 = 107,
CommonInvalidParam9 = 108,
CommonInvalidParam10 = 109,
CommonInvalidParam11 = 110,
CommonInvalidParam12 = 111,
CommonInvalidState = 112,
CommonInvalidStructure = 113,
CommonIOError = 114,
AnoncredsRevocationAccumulatorIsFull = 115,
AnoncredsInvalidRevocationAccumulatorIndex = 116,
AnoncredsCredentialRevoked = 117,
AnoncredsProofRejected = 118,
}Variants§
Success = 0
CommonInvalidParam1 = 100
CommonInvalidParam2 = 101
CommonInvalidParam3 = 102
CommonInvalidParam4 = 103
CommonInvalidParam5 = 104
CommonInvalidParam6 = 105
CommonInvalidParam7 = 106
CommonInvalidParam8 = 107
CommonInvalidParam9 = 108
CommonInvalidParam10 = 109
CommonInvalidParam11 = 110
CommonInvalidParam12 = 111
CommonInvalidState = 112
CommonInvalidStructure = 113
CommonIOError = 114
AnoncredsRevocationAccumulatorIsFull = 115
AnoncredsInvalidRevocationAccumulatorIndex = 116
AnoncredsCredentialRevoked = 117
AnoncredsProofRejected = 118
Trait Implementations§
Source§impl From<ErrorCode> for IndyCryptoErrorKind
impl From<ErrorCode> for IndyCryptoErrorKind
Source§fn from(err: ErrorCode) -> IndyCryptoErrorKind
fn from(err: ErrorCode) -> IndyCryptoErrorKind
Converts to this type from the input type.
Source§impl From<IndyCryptoError> for ErrorCode
impl From<IndyCryptoError> for ErrorCode
Source§fn from(err: IndyCryptoError) -> ErrorCode
fn from(err: IndyCryptoError) -> ErrorCode
Converts to this type from the input type.
Source§impl From<IndyCryptoErrorKind> for ErrorCode
impl From<IndyCryptoErrorKind> for ErrorCode
Source§fn from(code: IndyCryptoErrorKind) -> ErrorCode
fn from(code: IndyCryptoErrorKind) -> ErrorCode
Converts to this type from the input type.
impl Copy for ErrorCode
impl StructuralPartialEq for ErrorCode
Auto Trait Implementations§
impl Freeze for ErrorCode
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnwindSafe for ErrorCode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more