Type Alias tokio::runtime::driver::ProcessDriver

source ·
type ProcessDriver = Driver;

Aliased Type§

struct ProcessDriver {
    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.