Enum ethcore::account_provider::SignError[][src]

pub enum SignError {
    NotUnlocked,
    NotFound,
    Hardware(HardwareError),
    SStore(SSError),
}

Signing error

Variants

Account is not unlocked

Account does not exist.

Low-level hardware device error.

Low-level error from store

Trait Implementations

impl Debug for SignError
[src]

Formats the value using the given formatter. Read more

impl Display for SignError
[src]

Formats the value using the given formatter. Read more

impl From<HardwareError> for SignError
[src]

Performs the conversion.

impl From<SSError> for SignError
[src]

Performs the conversion.

impl From<AccountsError> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for SignError

impl Sync for SignError