I like the idea of explicit `Ref` smart pointer more than gtk-rs approach. I think it is better because: 1) When reading the code, you immediately see that it is just a reference, and it's obvious that `.clone()` will only create a new reference 2) It seems that GObject subclassing would be easier this way (compared to current gtk-rs) However, I see that there has been no commits since 2018. Why? Are there any fundamental issues in this project that can't be resolved?
I like the idea of explicit
Refsmart pointer more than gtk-rs approach. I think it is better because:When reading the code, you immediately see that it is just a reference, and it's obvious that
.clone()will only create a new referenceIt seems that GObject subclassing would be easier this way (compared to current gtk-rs)
However, I see that there has been no commits since 2018. Why? Are there any fundamental issues in this project that can't be resolved?