1
0
Fork 0
forked from wry/wry

autocommit 2022-02-05 18:14:24 CET

This commit is contained in:
Julian Orth 2022-02-05 18:14:24 +01:00
parent 2d8b3a200e
commit 3a4ae99b9a
71 changed files with 1626 additions and 1306 deletions

View file

@ -1,8 +1,7 @@
mod types;
use crate::client::{ClientError, DynEventFormatter};
use crate::object::{Interface, Object, ObjectId};
use crate::utils::buffd::MsgParser;
use crate::client::DynEventFormatter;
use crate::object::Object;
use std::rc::Rc;
use types::*;
@ -22,28 +21,16 @@ impl WlCallback {
pub fn done(self: &Rc<Self>) -> DynEventFormatter {
Box::new(Done { obj: self.clone() })
}
fn handle_request_(
&self,
_request: u32,
_parser: MsgParser<'_, '_>,
) -> Result<(), ClientError> {
unreachable!();
}
}
handle_request!(WlCallback);
object_base! {
WlCallback, WlCallbackError;
}
impl Object for WlCallback {
fn id(&self) -> ObjectId {
self.id.into()
}
fn interface(&self) -> Interface {
Interface::WlCallback
}
fn num_requests(&self) -> u32 {
0
}
}
simple_add_obj!(WlCallback);