reth_primitives_traits::tx_type

Trait FullTxType

Source
pub trait FullTxType: TxType + Compact { }
Expand description

Helper trait that unifies all behaviour required by transaction type ID to support full node operations.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> FullTxType for T
where T: TxType + Compact,