[][src]Enum grin_servers::common::types::Error

pub enum Error {
    Core(Error),
    LibTx(Error),
    Store(Error),
    Chain(Error),
    P2P(Error),
    API(Error),
    Cuckoo(Error),
    Pool(PoolError),
    Keychain(Error),
    ArgumentError(String),
    WalletComm(String),
    IOError(Error),
    Configuration(String),
    General(String),
}

Error type wrapping underlying module errors.

Variants

Core(Error)

Error originating from the core implementation.

LibTx(Error)

Error originating from the libtx implementation.

Store(Error)

Error originating from the db storage.

Chain(Error)

Error originating from the blockchain implementation.

P2P(Error)

Error originating from the peer-to-peer network.

API(Error)

Error originating from HTTP API calls.

Cuckoo(Error)

Error originating from the cuckoo miner

Pool(PoolError)

Error originating from the transaction pool.

Keychain(Error)

Error originating from the keychain.

ArgumentError(String)

Invalid Arguments.

WalletComm(String)

Wallet communication error

IOError(Error)

Error originating from some I/O operation (likely a file on disk).

Configuration(String)

Configuration error

General(String)

General error

Trait Implementations

impl Debug for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<PoolError> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,