Struct transaction_pool::Options[][src]

pub struct Options {
    pub max_count: usize,
    pub max_per_sender: usize,
    pub max_mem_usage: usize,
}

Transaction Pool options.

Fields

Maximal number of transactions in the pool.

Maximal number of transactions from single sender.

Maximal memory usage.

Trait Implementations

impl Clone for Options
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Options
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Options
[src]

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

This method tests for !=.

impl Default for Options
[src]

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

Auto Trait Implementations

impl Send for Options

impl Sync for Options