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

pub enum Error {
    Core(Error),
    Store(Error),
    Chain(Error),
    P2P(Error),
    API(Error),
    Wallet(Error),
    Cuckoo(Error),
    Pool(PoolError),
    ArgumentError(String),
    IOError(Error),
}

Error type wrapping underlying module errors.

Variants

Core(Error)

Error originating from the core 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.

Wallet(Error)

Error originating from wallet API.

Cuckoo(Error)

Error originating from the cuckoo miner

Pool(PoolError)

Error originating from the transaction pool.

ArgumentError(String)

Invalid Arguments.

IOError(Error)

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

Trait Implementations

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]

impl Debug for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> Erased for T

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

impl<T> UnsafeAny for T where
    T: Any

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

impl<T> Same for T

type Output = T

Should always be Self