kangalio
kangalio
Auto-deref specialization can also be used to specialize on trait implementations. I'm using this a lot in a lib ([1](https://github.com/kangalioo/poise/blob/master/src/slash/argument/autocompletable.rs), [2](https://github.com/kangalioo/poise/blob/master/src/slash/argument/into_stream.rs), [3](https://github.com/kangalioo/poise/blob/master/src/slash/argument/slash_trait.rs)) and it would be awesome to abstract it...
The documentation states that the connection to the Midi device is kept open as long as the MidiInputConnection is kept alive. Hence the callback shouldn't be needed anymore once the...
Hi, you've said that the callbacks passed to MiniInput::connect "will never be called concurrently with itself". Now I'm wondering; what happens when the callback takes, say, two seconds to complete?...
I'd love to use cargo modules as a tool to optimize my project's module structure. When rendering items and their interdependencies, the output looks very messy:  If it were...
Rust's built in Debug derive adds `: Debug` bounds for all generics. This can be unnecessarily restrictive, so it would be great to be able to omit those bounds. ##...
Would work well in conjunction with #1: by default, all union fields are rendered with the fallback representation (`...`). You can override individual fields with `#[debug_stub="replacement"]`
Currently, tuple structs don't seem to be supported https://github.com/BonsaiDen/debug_stub_derive/blob/cc26c71e8d7e83051a90a9b9296eb63c617a854a/src/lib.rs#L188-L201
I've written a GUI application with PyQt5, which many people have already used successfully. It was packaged as a portable exe with PyInstaller, and it generelly works flawlessly. However, there's...
It's slightly annoying to have to depend on third-party crates just to be able to interact with fluent-rs itself. So far in my journey of exploring fluent, I have to...
In [`serenity::builder::CreateEmbed`](https://docs.rs/serenity/0.8.6/serenity/builder/struct.CreateEmbed.html#examples) it says ``` Refer to the documentation for ChannelId::send_message for a very in-depth example on how to use this. ``` However, the documentation for `ChannelId::send_message` doesn't have the...