1
0
Fork 0
forked from wry/wry

autocommit 2022-01-02 20:11:25 CET

This commit is contained in:
Julian Orth 2022-01-02 20:11:25 +01:00
parent c21f231ce7
commit fc887b339e
29 changed files with 672 additions and 197 deletions

View file

@ -2,7 +2,7 @@ mod types;
use crate::client::{ClientError, DynEventFormatter};
use crate::object::{Interface, Object, ObjectId};
use crate::utils::buffd::WlParser;
use crate::utils::buffd::MsgParser;
use std::rc::Rc;
use types::*;
@ -24,7 +24,7 @@ impl WlCallback {
async fn handle_request_(
&self,
_request: u32,
_parser: WlParser<'_, '_>,
_parser: MsgParser<'_, '_>,
) -> Result<(), ClientError> {
unreachable!();
}