autocommit 2022-02-11 02:28:11 CET
This commit is contained in:
parent
83c3fb99f9
commit
9b8e1ac29f
63 changed files with 690 additions and 122 deletions
|
|
@ -1,4 +1,5 @@
|
|||
use crate::client::Client;
|
||||
use crate::leaks::Tracker;
|
||||
use crate::object::Object;
|
||||
use crate::wire::wl_callback::*;
|
||||
use crate::wire::WlCallbackId;
|
||||
|
|
@ -8,6 +9,7 @@ use thiserror::Error;
|
|||
pub struct WlCallback {
|
||||
client: Rc<Client>,
|
||||
id: WlCallbackId,
|
||||
pub tracker: Tracker<Self>,
|
||||
}
|
||||
|
||||
impl WlCallback {
|
||||
|
|
@ -15,6 +17,7 @@ impl WlCallback {
|
|||
Self {
|
||||
client: client.clone(),
|
||||
id,
|
||||
tracker: Default::default(),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue