pub enum IndyCryptoErrorKind {
InvalidState,
InvalidStructure,
InvalidParam(u32),
IOError,
ProofRejected,
RevocationAccumulatorIsFull,
InvalidRevocationAccumulatorIndex,
CredentialRevoked,
}Variants§
InvalidState
InvalidStructure
InvalidParam(u32)
IOError
ProofRejected
RevocationAccumulatorIsFull
InvalidRevocationAccumulatorIndex
CredentialRevoked
Trait Implementations§
Source§impl Clone for IndyCryptoErrorKind
impl Clone for IndyCryptoErrorKind
Source§fn clone(&self) -> IndyCryptoErrorKind
fn clone(&self) -> IndyCryptoErrorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IndyCryptoErrorKind
impl Debug for IndyCryptoErrorKind
Source§impl Display for IndyCryptoErrorKind
impl Display for IndyCryptoErrorKind
Source§impl Fail for IndyCryptoErrorKind
impl Fail for IndyCryptoErrorKind
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreSource§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<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.
Source§impl PartialEq for IndyCryptoErrorKind
impl PartialEq for IndyCryptoErrorKind
impl Copy for IndyCryptoErrorKind
impl Eq for IndyCryptoErrorKind
impl StructuralPartialEq for IndyCryptoErrorKind
Auto Trait Implementations§
impl Freeze for IndyCryptoErrorKind
impl RefUnwindSafe for IndyCryptoErrorKind
impl Send for IndyCryptoErrorKind
impl Sync for IndyCryptoErrorKind
impl Unpin for IndyCryptoErrorKind
impl UnwindSafe for IndyCryptoErrorKind
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