ExecutableTxIterator

Trait ExecutableTxIterator 

pub trait ExecutableTxIterator<Evm>:
    Iterator<Item = Result<Self::Tx, Self::Error>>
    + Send
    + 'static
where 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

The executable transaction type iterator yields.

type Error: Error + Send + Sync + 'static

Errors that may occur while recovering or decoding transactions.

Implementors§

§

impl<Evm, Tx, Err, T> ExecutableTxIterator<Evm> for T
where Evm: ConfigureEvm, Tx: ExecutableTxFor<Evm> + Clone + Send + 'static, Err: Error + Send + Sync + 'static, T: Iterator<Item = Result<Tx, Err>> + Send + 'static,

§

type Tx = Tx

§

type Error = Err