Struct exonum::node::MemoryPoolConfig [] [src]

pub struct MemoryPoolConfig {
    pub tx_pool_capacity: usize,
    pub events_pool_capacity: EventsPoolCapacity,
}

Memory pool configuration parameters.

Fields

Maximum number of uncommitted transactions.

Sets the maximum number of messages that can be buffered on the event loop's notification channel before a send will fail.

Trait Implementations

impl Clone for MemoryPoolConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MemoryPoolConfig
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for MemoryPoolConfig
[src]

[src]

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

Auto Trait Implementations