Zicklag
Zicklag
I have a similar need. I have a type such as `AtomicRef`, and there's a method to convert a borrow of `&'a UntypedStorage` to a `TypedStorage
For anybody else who needs it, I was able to accomplish what I needed using the `atomicell` crate. It has an unsafe method [`RefMut::into_split()`](https://docs.rs/atomicell/latest/atomicell/struct.RefMut.html#method.into_split) that allows you to get access...
Big thanks for pointing that out to me! That's a very easy foot-gun to miss. I'll look into a PR for `atomicell`.
I'm getting the same no-input issue on Chromium on Linux ( with a mouse ). Latest commit off of master: 8bcf2a7a7a3e4335. Also when running GTK I can't click any buttons,...
> Clicking the '+' icon above the timeline will add a layer if that's the problem (it's supposed to add a new layer by default but the code to do...
The source for the commandline tool is here: https://github.com/varlink/libvarlink. It doesn't look like there is a package, but you can build it easily enough by cloning the repo and running...
There is also a CLI implemented in Rust: https://github.com/varlink/rust/tree/master/varlink-cli. And Go: https://github.com/varlink/go-varlink-cmd
I was thinking about passing in an `Arc` to the `listen()` function that when set to `false` would shutdown the server. Pretty much like the [`ctrlc`](https://docs.rs) crate example. Would you...
As a related note, the reason I'm trying to figure this out is because I want to override the `Display` implementation of the Varlink errors. Right now I'm planning on...
The way I did it was I replaced the generated implementation with an `include!` so that it would include my implementation from another file. We could add an `alternative_display_impl` option...