#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct StatusData {
pub tick_count: u32,
pub present_count: u32,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Response<'a> {
Ok,
Error(&'a str),
Bounds {
x: i32,
y: i32,
width: i32,
height: i32,
},
Exists(bool),
ChildCount(u16),
Status(StatusData),
DumpEnd,
}