ExecutableTxIterator

Trait ExecutableTxIterator 

Source
pub trait ExecutableTxIterator<Evm: ConfigureEvm>:
    Iterator<Item = Result<Self::Tx, Self::Error>>
    + Send
    + 'static {
    type Tx: ExecutableTxFor<Evm> + Clone + Send + 'static;
    type Error: Error + Send + Sync + 'static;
}
Expand description

Iterator over executable transactions.

Required Associated Types§

Source

type Tx: ExecutableTxFor<Evm> + Clone + Send + 'static

The executable transaction type iterator yields.

Source

type Error: Error + Send + Sync + 'static

Errors that may occur while recovering or decoding transactions.

Implementors§

Source§

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

Source§

type Tx = Tx

Source§

type Error = Err