1
0
Fork 0
forked from wry/wry

config: add async tasks and polling infrastructure

This commit is contained in:
Julian Orth 2024-03-05 18:28:15 +01:00
parent 7fb68561e8
commit d4d76c0ef3
13 changed files with 613 additions and 13 deletions

View file

@ -1,6 +1,7 @@
pub mod client;
pub mod ipc;
mod logging;
pub(crate) mod string_error;
use {
crate::video::Mode,
@ -58,3 +59,6 @@ impl WireMode {
}
}
}
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub struct PollableId(pub u64);