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]

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

impl Debug for Status
[src]

Formats the value using the given formatter. Read more

impl Clone for Status
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Status
[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 Status
[src]

Auto Trait Implementations

impl Send for Status

impl Sync for Status