Type Alias IoDriver

Source
pub(crate) type IoDriver = Driver;

Aliased Type§

pub(crate) struct IoDriver {
    signal_ready: bool,
    events: Events,
    poll: Poll,
}

Fields§

§signal_ready: bool

True when an event with the signal token is received

§events: Events

Reuse the mio::Events value across calls to poll.

§poll: Poll

The system event queue.