Struct transaction_pool::Status [] [src]

pub struct Status {
    pub stalled: usize,
    pub pending: usize,
    pub future: usize,
}

A full queue status. To compute this status it is required to provide Ready. NOTE: To compute the status we need to visit each transaction in the pool.

Fields

Number of stalled transactions.

Number of pending (ready) transactions.

Number of future (not ready) transactions.

Trait Implementations

impl Default for Status
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Status
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Status
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for Status
[src]