pub enum SignerError {
KeypairPubkeyMismatch,
NotEnoughSigners,
TransactionError(TransactionError),
Custom(String),
PresignerError(PresignerError),
Connection(String),
InvalidInput(String),
NoDeviceFound,
Protocol(String),
UserCancel(String),
}
Variants
KeypairPubkeyMismatch
NotEnoughSigners
TransactionError(TransactionError)
Tuple Fields
Custom(String)
Tuple Fields
0: String
PresignerError(PresignerError)
Tuple Fields
Connection(String)
Tuple Fields
0: String
InvalidInput(String)
Tuple Fields
0: String
NoDeviceFound
Protocol(String)
Tuple Fields
0: String
UserCancel(String)
Tuple Fields
0: String
Trait Implementations
Performs the conversion.
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SignerError
impl Send for SignerError
impl Sync for SignerError
impl Unpin for SignerError
impl UnwindSafe for SignerError
Blanket Implementations
pub fn as_fail(&self) -> &(dyn Fail + 'static)
pub fn as_fail(&self) -> &(dyn Fail + 'static)
Converts a reference to Self
into a dynamic trait object of Fail
.
Mutably borrows from an owned value. Read more