Struct exonum::node::EventsPoolCapacity [] [src]

pub struct EventsPoolCapacity {
    pub network_requests_capacity: usize,
    pub network_events_capacity: usize,
    pub internal_events_capacity: usize,
    pub api_requests_capacity: usize,
}

Events pool capacities.

Fields

Maximum number of queued outgoing network messages.

Maximum number of queued incoming network messages.

Maximum number of queued internal events.

Maximum number of queued requests from api.

Trait Implementations

impl Clone for EventsPoolCapacity
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for EventsPoolCapacity
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for EventsPoolCapacity
[src]

[src]

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

Auto Trait Implementations