Trait reth_transaction_pool::pool::ParkedOrd

source ·
pub trait ParkedOrd:
    Ord
    + Clone
    + From<Arc<ValidPoolTransaction<Self::Transaction>>>
    + Into<Arc<ValidPoolTransaction<Self::Transaction>>>
    + Deref<Target = Arc<ValidPoolTransaction<Self::Transaction>>> {
    type Transaction: PoolTransaction;
}
Expand description

Helper trait used for custom Ord wrappers around a transaction.

This is effectively a wrapper for Arc<ValidPoolTransaction> with custom Ord implementation.

Required Associated Types§

source

type Transaction: PoolTransaction

The wrapper transaction type.

Object Safety§

This trait is not object safe.

Implementors§