Struct mio::EventLoopConfig [] [src]

pub struct EventLoopConfig {
    pub io_poll_timeout_ms: usize,
    pub notify_capacity: usize,
    pub messages_per_tick: usize,
    pub timer_tick_ms: u64,
    pub timer_wheel_size: usize,
    pub timer_capacity: usize,
}

Configure EventLoop runtime details

Fields

io_poll_timeout_ms: usize notify_capacity: usize messages_per_tick: usize timer_tick_ms: u64 timer_wheel_size: usize timer_capacity: usize

Trait Implementations

impl Debug for EventLoopConfig
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for EventLoopConfig
[src]

fn clone(&self) -> EventLoopConfig

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for EventLoopConfig
[src]

impl Default for EventLoopConfig
[src]

fn default() -> EventLoopConfig

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