Enum ethcore::account_provider::SignError  
                   
                       [−]
                   
               [src]
pub enum SignError {
    NotUnlocked,
    NotFound,
    Hardware(HardwareError),
    SStore(SSError),
}Signing error
Variants
NotUnlockedAccount is not unlocked
NotFoundAccount does not exist.
Hardware(HardwareError)Low-level hardware device error.
SStore(SSError)Low-level error from store
Trait Implementations
impl Debug for SignError[src] 
impl Debug for SignErrorfn fmt(&self, __arg_0: &mut Formatter) -> Result[src] 
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for SignError[src] 
impl Display for SignErrorfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src] 
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl From<HardwareError> for SignError[src] 
impl From<HardwareError> for SignErrorimpl From<SSError> for SignError[src] 
impl From<SSError> for SignErrorimpl From<AccountsError> for Error[src] 
impl From<AccountsError> for Errorfn from(err: AccountsError) -> Error[src] 
fn from(err: AccountsError) -> ErrorPerforms the conversion.