[][src]Struct pea2pea::NodeConfig

pub struct NodeConfig {
    pub name: Option<String>,
    pub desired_listening_port: Option<u16>,
    pub allow_random_port: bool,
    pub conn_read_buffer_size: usize,
    pub conn_inbound_queue_depth: usize,
    pub outbound_message_queue_depth: usize,
    pub invalid_message_penalty_secs: u64,
    pub max_allowed_failures: u8,
}

The node's configuration.

Fields

name: Option<String>

The name/identifier of the node.

desired_listening_port: Option<u16>

The desired listening port of the node.

allow_random_port: bool

Allow listening on a different port if desired_listening_port is unavailable.

conn_read_buffer_size: usize

The size of a per-connection buffer for inbound messages.

conn_inbound_queue_depth: usize

The depth of per-connection queues used to process inbound messages.

outbound_message_queue_depth: usize

The depth of per-connection queues used to send outbound messages.

invalid_message_penalty_secs: u64

The delay on the next read from a node that provided an invalid message.

max_allowed_failures: u8

The per-connection number of failures over which the connection is closed.

Trait Implementations

impl Clone for NodeConfig[src]

impl Debug for NodeConfig[src]

impl Default for NodeConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.