[][src]Struct hydrogen::Config

pub struct Config {
    pub addr: String,
    pub port: u16,
    pub max_threads: usize,
    pub pre_allocated: usize,
}

Configuration options for server

Fields

addr: String

Address to bind to

port: u16

Port to bind to

max_threads: usize

The number of threads to use for I/O handling. The lib itself makes use of 3 threads.

pre_allocated: usize

The amount of pre-allocated slab space for connections. This should be, roughly, the maximum amount of concurrent connections expected.

Auto Trait Implementations

impl Send for Config

impl Sync for Config

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.