Struct transaction_pool::NoopListener[][src]

pub struct NoopListener;

A no-op implementation of Listener.

Trait Implementations

impl Debug for NoopListener
[src]

Formats the value using the given formatter. Read more

impl<T> Listener<T> for NoopListener
[src]

The transaction has been successfuly added to the pool. If second argument is Some the transaction has took place of some other transaction which was already in pool. NOTE: You won't be notified about drop of old transaction separately. Read more

The transaction was rejected from the pool. It means that it was too cheap to replace any transaction already in the pool. Read more

The transaction was pushed out from the pool because of the limit.

The transaction was marked as invalid by executor.

The transaction has been canceled.

The transaction has been culled from the pool.

Auto Trait Implementations