alloy_rpc_types

Enum ConversionError

source
pub enum ConversionError {
Show 22 variants Eip2718Error(Eip2718Error), SignatureError(SignatureError), MissingSignature, MissingYParity, InvalidSignature, MissingChainId, MissingGasPrice, MissingAccessList, MissingMaxFeePerGas, MissingMaxPriorityFeePerGas, MissingMaxFeePerBlobGas, MissingTo, MissingBlobVersionedHashes, MissingAuthorizationList, MissingFullTransactions, BaseFeePerGasConversion(TryFromIntError), GasLimitConversion(TryFromIntError), GasUsedConversion(TryFromIntError), MissingBlockNumber, BlobGasUsedConversion(TryFromIntError), ExcessBlobGasConversion(TryFromIntError), Custom(String),
}
Available on crate feature eth only.
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)

§

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.

§

MissingAuthorizationList

Missing authorizationList field for EIP-7702 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<(), Error>

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

impl Display for ConversionError

source§

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

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

impl Error for ConversionError

Available on crate feature std only.
source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns 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(err: Eip2718Error) -> ConversionError

Converts to this type from the input type.
source§

impl From<SignatureError> for ConversionError

source§

fn from(err: SignatureError) -> ConversionError

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

source§

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>,

source§

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>,

source§

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.
source§

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

source§

fn vzip(self) -> V