winit_runtime/executor/
event.rs

1/*
2 * Created on Thu Aug 17 2023
3 *
4 * Copyright (c) storycraft. Licensed under the MIT Licence.
5 */
6
7use async_task::Runnable;
8
9#[derive(Debug)]
10#[non_exhaustive]
11pub enum ExecutorEvent {
12    Wake,
13    PollTask(Runnable),
14    Exit,
15}