Enum transaction_pool::Readiness[][src]

pub enum Readiness {
    Stale,
    Ready,
    Future,
}

Transaction readiness.

Variants

The transaction is stale (and should/will be removed from the pool).

The transaction is ready to be included in pending set.

The transaction is not yet ready.

Trait Implementations

impl Debug for Readiness
[src]

Formats the value using the given formatter. Read more

impl Clone for Readiness
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Readiness
[src]

impl PartialEq for Readiness
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Readiness
[src]

Auto Trait Implementations

impl Send for Readiness

impl Sync for Readiness