search for: e0392

Displaying 2 results from an estimated 2 matches for "e0392".

Did you mean: 20392
2019 Aug 05
1
Re: [PATCH 1/2] Rust bindings: Add Event structs, Clarify Handle lifetime
...ns will live. Then, Rust compiler will infer > that the callbacks have 'static lifetime. It is > not convenient for users. > --- My initial idea was to split the Handle -> Handle<'a> change in an own patch, to make it easier to review; unfortunately, doing this hits error E0392: https://doc.rust-lang.org/error-index.html#E0392 So either this change goes together with other changes (like in this patch), or it uses PhantomData just to remove it after adding the callbacks. :-/ I guess we can keep this patch as it is; please describe a bit more the addition of events, mentio...
2019 Aug 05
3
Re: [PATCH] Rust bindings: Implement Event features
I fixed based on comments. I'll send these two patches to this mailing list. - Fix Handle -> Handle<'a> - Add events Regards, Hiroyuki 2019年8月1日(木) 0:01 Pino Toscano <ptoscano@redhat.com>: > Hi Hiroyuki, > > On Tuesday, 30 July 2019 07:51:37 CEST Hiroyuki Katsura wrote: > > This patch includes: > > > > - Event callback handlers > > -