ranfdev
ranfdev
Nesting multiple writable types is still not supported. So, `Rc` is now supported, but `Mutex` isn't supported at all (as before).
I guess there's still one problem: the setter on the wrapper type accepts the inner type, that is, `i32`, not `MyInt(i32)`. CC: @YaLTeR
I can rebase, but I don't think this is ready to be merged. There are still some unresolved things, as pointed out by the unresolved comments
If anyone can provide a working implementation, I will gladly accept it and merge it.
The generic constant `SIGNAL_NUMBER` enables us to `impl SignalProxy` multiple times. That means we can have two different functions, `SignalProxy::emit(&self, data)` and `SignalProxy::emit(&self, data, additional_parameter_specific_for_this_signal)`. Without the generic constant we...
> Wouldn't it make sense to make this a `const SIGNAL_NAME: &str` instead of the counter and an associated constant then? I'd like to do that, but generic strings constants...
Try running `meson install -C your_build_dir`
async-std integrates pretty well with gtk-rs and it's glib MainLoop. To use Tokio I would have to manually start a Tokio runtime. I'm not sure how the Tokio runtime and...
I want to polish it a bit more before trying to get an approval for Gnome Circle.
The problem is, i may work with user generated html files. A user may write ```{{``` in the file and read other files on my system. That's a security issue....