Struct ethcore::client::BlockQueueInfo[][src]

pub struct BlockQueueInfo {
    pub unverified_queue_size: usize,
    pub verified_queue_size: usize,
    pub verifying_queue_size: usize,
    pub max_queue_size: usize,
    pub max_mem_use: usize,
    pub mem_used: usize,
}

Verification queue status

Fields

Number of queued items pending verification

Number of verified queued items pending import

Number of items being verified

Configured maximum number of items in the queue

Configured maximum number of bytes to use

Heap memory used in bytes

Methods

impl VerificationQueueInfo
[src]

The total size of the queues.

The size of the unverified and verifying queues.

Indicates that queue is full

Indicates that queue is empty

Trait Implementations

impl Clone for VerificationQueueInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VerificationQueueInfo
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for VerificationQueueInfo

impl Sync for VerificationQueueInfo