Type Alias tokio::runtime::driver::IoDriver

source ·
pub(crate) type IoDriver = Driver;

Aliased Type§

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.