pub enum ErrorKind {
Show 20 variants LibTX(ErrorKind), Impls(ErrorKind), LibWallet(ErrorKindString), Keychain(Error), Transaction(Error), Secp, FileWallet(&'static str), IO, Format, Node(ErrorKind), Hyper, Uri, DuplicateTransactionId, WalletSeedExists(String), WalletSeedDoesntExist, Encryption, Mnemonic, ArgumentError(String), ListenerError, GenericError(String),
}
Expand description

Wallet errors, mostly wrappers around underlying crypto or I/O errors.

Variants

LibTX(ErrorKind)

LibTX Error

Impls(ErrorKind)

Impls error

LibWallet(ErrorKindString)

LibWallet Error

Keychain(Error)

Keychain error

Transaction(Error)

Transaction Error

Secp

Secp Error

FileWallet(&'static str)

Filewallet error

IO

Error when formatting json

Format

Error when formatting json

Node(ErrorKind)

Error when contacting a node through its API

Hyper

Error originating from hyper.

Uri

Error originating from hyper uri parsing.

DuplicateTransactionId

Attempt to use duplicate transaction id in separate transactions

WalletSeedExists(String)

Wallet seed already exists

WalletSeedDoesntExist

Wallet seed doesn’t exist

Encryption

Enc/Decryption Error

Mnemonic

BIP 39 word list

ArgumentError(String)

Command line argument error

ListenerError

Other

GenericError(String)

Other

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Returns the “name” of the error. Read more

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more

Provides context for this failure. Read more

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Converts a reference to Self into a dynamic trait object of Fail.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Clone this value, and then immediately put it into a Box behind a trait object of this trait. Read more

Returns the address of self. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Clone this value, and then immediately put it into a Box behind a trait object of this trait. Read more

Returns the address of self. Read more

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Given ptr, which was obtained from a prior call to Self::borrow(), return a value with the same nominal lifetime which is guaranteed to survive mutations to Self. Read more

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more