Struct transaction_pool::Status [−][src]
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
stalled: usize
Number of stalled transactions.
pending: usize
Number of pending (ready) transactions.
future: usize
Number of future (not ready) transactions.
Trait Implementations
impl Default for Status[src]
impl Default for Statusimpl Debug for Status[src]
impl Debug for Statusfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Status[src]
impl Clone for Statusfn clone(&self) -> Status[src]
fn clone(&self) -> StatusReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for Status[src]
impl PartialEq for Statusfn eq(&self, other: &Status) -> bool[src]
fn eq(&self, other: &Status) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Status) -> bool[src]
fn ne(&self, other: &Status) -> boolThis method tests for !=.
impl Eq for Status[src]
impl Eq for Status