pub trait ExecutableTxIterator<Evm>:
    Iterator<Item = Result<Self::Tx, Self::Error>>
    + Send
    + 'staticwhere
    Evm: ConfigureEvm,{
    type Tx: ExecutableTxFor<Evm> + Clone + Send + Sync + 'static;
    type Error: Error + Send + Sync + 'static;
}Available on crate feature 
node-api only.Expand description
Iterator over executable transactions.