Enum ethcore::error::ImportError [] [src]

pub enum ImportError {
    AlreadyInChain,
    AlreadyQueued,
    KnownBad,
}

Import to the block queue result

Variants

Already in the block chain.

Already in the block queue.

Already marked as bad from a previous import (could mean parent is bad).

Trait Implementations

impl Debug for ImportError
[src]

Formats the value using the given formatter.

impl Clone for ImportError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ImportError
[src]

impl PartialEq for ImportError
[src]

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

This method tests for !=.

impl Display for ImportError
[src]

Formats the value using the given formatter.

impl BinaryConvertable for ImportError where ImportError: Copy