Struct ethcore::verification::queue::Config[][src]

pub struct Config {
    pub max_queue_size: usize,
    pub max_mem_use: usize,
    pub verifier_settings: VerifierSettings,
}

Verification queue configuration

Fields

Maximum number of items to keep in unverified queue. When the limit is reached, is_full returns true.

Maximum heap memory to use. When the limit is reached, is_full returns true.

Settings for the number of verifiers and adaptation strategy.

Trait Implementations

impl Debug for Config
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Config
[src]

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

This method tests for !=.

impl Clone for Config
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Config
[src]

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

Auto Trait Implementations

impl Send for Config

impl Sync for Config