Enum ethers_signers::TrezorError
source · pub enum TrezorError {
TrezorError(Error),
FeaturesError,
DataError,
HexError(FromHexError),
SemVerError(Error),
UnsupportedFirmwareVersion(String),
NoENSSupport,
CacheError(String),
}
Expand description
Error when using the Trezor transport
Variants§
TrezorError(Error)
Underlying Trezor transport error
FeaturesError
DataError
HexError(FromHexError)
Error when converting from a hex string
SemVerError(Error)
Error when converting a semver requirement
UnsupportedFirmwareVersion(String)
Error when signing EIP712 struct with not compatible Trezor ETH app
NoENSSupport
CacheError(String)
Trait Implementations§
source§impl Debug for TrezorError
impl Debug for TrezorError
source§impl Display for TrezorError
impl Display for TrezorError
source§impl Error for TrezorError
impl Error for TrezorError
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()
source§impl From<Error> for TrezorError
impl From<Error> for TrezorError
source§impl From<Error> for TrezorError
impl From<Error> for TrezorError
source§impl From<FromHexError> for TrezorError
impl From<FromHexError> for TrezorError
source§fn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.