Trait ExecutableTxIterator
pub trait ExecutableTxIterator<Evm>:
Iterator<Item = Result<Self::Tx, Self::Error>>
+ Send
+ 'staticwhere
Evm: ConfigureEvm,{
type Tx: ExecutableTxFor<Evm> + Clone + Send + 'static;
type Error: Error + Send + Sync + 'static;
}
Available on crate feature
evm
only.Expand description
Iterator over executable transactions.
Required Associated Types§
type Tx: ExecutableTxFor<Evm> + Clone + Send + 'static
type Tx: ExecutableTxFor<Evm> + Clone + Send + 'static
The executable transaction type iterator yields.