asdf-overlay-common 0.3.0

Asdf Overlay Ipc messages, client and server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use bincode::{Decode, Encode};

#[derive(Debug, Encode, Decode, Clone)]
pub enum ClientEvent {
    Window { hwnd: u32, event: WindowEvent },
}

#[derive(Debug, Encode, Decode, Clone)]
pub enum WindowEvent {
    Added,
    Resized { width: u32, height: u32 },
    Destroyed,
}