Type Alias tokio::runtime::driver::SignalDriver

source ·
type SignalDriver = Driver;

Aliased Type§

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