1
0
Fork 0
forked from wry/wry

wire: generate trait for request handling

This commit is contained in:
Julian Orth 2024-04-08 17:37:35 +02:00
parent e3a1a0b30f
commit acb391335b
102 changed files with 1632 additions and 2086 deletions

View file

@ -5,11 +5,11 @@ use {
fixed::Fixed,
ifs::wl_seat::{wl_pointer::PendingScroll, SeatId},
leaks::Tracker,
object::Object,
object::{Object, Version},
wire::{jay_seat_events::*, JaySeatEventsId},
xkbcommon::ModifierState,
},
std::rc::Rc,
std::{convert::Infallible, rc::Rc},
};
pub struct JaySeatEvents {
@ -124,8 +124,13 @@ impl JaySeatEvents {
}
}
impl JaySeatEventsRequestHandler for JaySeatEvents {
type Error = Infallible;
}
object_base! {
self = JaySeatEvents;
version = Version(1);
}
impl Object for JaySeatEvents {