pub enum Error {
UnsupportedVersion,
UnsupportedInput,
UnimplementedMethod,
DeviceDisconnected,
DeviceNotFound,
DeviceDidNotSign,
Device(String),
}
Variants§
UnsupportedVersion
UnsupportedInput
UnimplementedMethod
DeviceDisconnected
DeviceNotFound
DeviceDidNotSign
Device(String)
Trait Implementations§
source§impl<T: Debug> From<BitcoinClientError<T>> for Error
impl<T: Debug> From<BitcoinClientError<T>> for Error
source§fn from(e: BitcoinClientError<T>) -> HWIError
fn from(e: BitcoinClientError<T>) -> HWIError
Converts to this type from the input type.
source§impl From<SpecterError> for Error
impl From<SpecterError> for Error
source§fn from(e: SpecterError) -> HWIError
fn from(e: SpecterError) -> HWIError
Converts to this type from the input type.
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