pub enum ConversionError {
Show 21 variants Eip2718Error(Eip2718Error), SignatureError(SignatureError), MissingSignature, MissingYParity, InvalidSignature, MissingChainId, MissingGasPrice, MissingAccessList, MissingMaxFeePerGas, MissingMaxPriorityFeePerGas, MissingMaxFeePerBlobGas, MissingTo, MissingBlobVersionedHashes, MissingFullTransactions, BaseFeePerGasConversion(TryFromIntError), GasLimitConversion(TryFromIntError), GasUsedConversion(TryFromIntError), MissingBlockNumber, BlobGasUsedConversion(TryFromIntError), ExcessBlobGasConversion(TryFromIntError), Custom(String),
}
Expand description

Error variants when converting from crate::Transaction to [alloy_consensus::Signed] transaction.

Variants§

§

Eip2718Error(Eip2718Error)

Error during EIP-2718 transaction coding.

§

SignatureError(SignatureError)

[alloy_primitives::SignatureError].

§

MissingSignature

Missing signature for transaction.

§

MissingYParity

Missing y parity in signature.

§

InvalidSignature

Invalid signature

§

MissingChainId

Missing chainId field for EIP-1559 transaction.

§

MissingGasPrice

Missing gasPrice field for Legacy transaction.

§

MissingAccessList

Missing accessList field for EIP-2930 transaction.

§

MissingMaxFeePerGas

Missing maxFeePerGas field for EIP-1559 transaction.

§

MissingMaxPriorityFeePerGas

Missing maxPriorityFeePerGas field for EIP-1559 transaction.

§

MissingMaxFeePerBlobGas

Missing maxFeePerBlobGas field for EIP-1559 transaction.

§

MissingTo

Missing to field for EIP-4844 transaction.

§

MissingBlobVersionedHashes

Missing blobVersionedHashes field for EIP-4844 transaction.

§

MissingFullTransactions

Missing full transactions required for block decoding

§

BaseFeePerGasConversion(TryFromIntError)

Base fee per gas integer conversion error

§

GasLimitConversion(TryFromIntError)

Gas limit integer conversion error

§

GasUsedConversion(TryFromIntError)

Gas used integer conversion error

§

MissingBlockNumber

Missing block number

§

BlobGasUsedConversion(TryFromIntError)

Blob gas used integer conversion error

§

ExcessBlobGasConversion(TryFromIntError)

Excess blob gas integer conversion error

§

Custom(String)

A custom Conversion Error that doesn’t fit other categories.

Trait Implementations§

source§

impl Debug for ConversionError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for ConversionError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for ConversionError

source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Eip2718Error> for ConversionError

source§

fn from(source: Eip2718Error) -> Self

Converts to this type from the input type.
source§

impl From<SignatureError> for ConversionError

source§

fn from(source: SignatureError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 32 bytes

Size for each variant:

  • Eip2718Error: 24 bytes
  • SignatureError: 24 bytes
  • MissingSignature: 0 bytes
  • MissingYParity: 0 bytes
  • InvalidSignature: 0 bytes
  • MissingChainId: 0 bytes
  • MissingGasPrice: 0 bytes
  • MissingAccessList: 0 bytes
  • MissingMaxFeePerGas: 0 bytes
  • MissingMaxPriorityFeePerGas: 0 bytes
  • MissingMaxFeePerBlobGas: 0 bytes
  • MissingTo: 0 bytes
  • MissingBlobVersionedHashes: 0 bytes
  • MissingFullTransactions: 0 bytes
  • BaseFeePerGasConversion: 0 bytes
  • GasLimitConversion: 0 bytes
  • GasUsedConversion: 0 bytes
  • MissingBlockNumber: 0 bytes
  • BlobGasUsedConversion: 0 bytes
  • ExcessBlobGasConversion: 0 bytes
  • Custom: 24 bytes