Enum fuels_signers::wallet::WalletError
source · pub enum WalletError {
Hex(FromHexError),
Parsing(TryFromSliceError),
NoProvider,
KeystoreError(KeystoreError),
FuelCrypto(Error),
}
Expand description
Error thrown by the Wallet module
Variants§
Hex(FromHexError)
Error propagated from the hex crate.
Parsing(TryFromSliceError)
Error propagated by parsing of a slice
NoProvider
KeystoreError(KeystoreError)
Keystore error
FuelCrypto(Error)
Trait Implementations§
source§impl Debug for WalletError
impl Debug for WalletError
source§impl Display for WalletError
impl Display for WalletError
source§impl Error for WalletError
impl Error for WalletError
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 WalletError
impl From<Error> for WalletError
source§impl From<FromHexError> for WalletError
impl From<FromHexError> for WalletError
source§fn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.
source§impl From<KeystoreError> for WalletError
impl From<KeystoreError> for WalletError
source§fn from(source: KeystoreError) -> Self
fn from(source: KeystoreError) -> Self
Converts to this type from the input type.
source§impl From<TryFromSliceError> for WalletError
impl From<TryFromSliceError> for WalletError
source§fn from(source: TryFromSliceError) -> Self
fn from(source: TryFromSliceError) -> Self
Converts to this type from the input type.
source§impl From<WalletError> for Error
impl From<WalletError> for Error
source§fn from(e: WalletError) -> Self
fn from(e: WalletError) -> Self
Converts to this type from the input type.