Enum ledger_mob::Error
source · pub enum Error {
}
Expand description
Ledger MobileCoin API Error Type
Variants§
NoDevice
No device found
Transport(Error)
Ledger transport error
HidInit
HID Init Error
Io(Error)
Ledger IO Error
InvalidState(TxState, TxState)
Invalid transaction state
UnexpectedResponse
Unexpected APDU response
DigestMismatch
Mismatch in rolling transaction digest
Ring(Error)
Error signing ring
UserTimeout
Timeout waiting for user
RequestTimeout
Request timeout
Engine(u16)
Transaction engine error
UserDenied
User denied operation
InvalidKey
Invalid key in response
InvalidLength
Invalid length
Utf8
UTF8 encoding error
Apdu(ApduError)
APDU error
RingCt(Error)
Ring CT error
RingSigner(Error)
Ring signer error
Unknown
Unknown (TEMPORARY) TODO: remove once ledger_transport_tcp is updated / fixed
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more