Boscop
Boscop
How to use it with rust-msvc? ``` D:\data\tmp\libusb-rs>cargo run --example list_devices Compiling libusb-sys v0.2.3 Compiling kernel32-sys v0.2.2 error: failed to run custom build command for `libusb-sys v0.2.3` process didn't exit...
The user data passed to `MidiInput::connect()` is not necessary because anything that the closure wants to reference can be captured. (It's only necessary in the underlying C lib because it...
How to identify when a midi input device got disconnected? When I open the ports as described [here](https://github.com/Boddlnagg/midir/issues/32#issuecomment-357895256). Is it possible to check the `MidiInputConnection` if the device was disconnected?...
I want to use this crate in my yew frontend, but I'm getting: > error: cannot produce proc-macro for `interpolate v0.1.1` as the target `wasm32-unknown-unknown` does not support these crate...
How can I replace this call: ```rust format!( "transform-origin: {:.3}% center; transform: translateX({:.3}%) scaleX({:.3});", percent, 100. - percent, self.zoom ) ``` with a call to `interpolate::s`? This doesn't work: ```rust...
In JS: ```js var x = 1; var a = "asd" var s = `a ${a + ` x${x + 1} y`} b`; console.log(s); // a asd x2 y b...
I think this crate has potential and I want to use it a lot.. Btw, I also think there should be a shorter way to concatenate strings in Rust than...
Please add the ability to get an `ElementRef` of an `ElementRef`'s parent (and any ancestor/sibling), so that one can call `.html()` (and other `ElementRef` methods) on the parent :)
> These are some usecases for this library: > * Creating a plugin system (without support for unloading). Does this mean using this crate when my plugins should support unloading...
Re: https://github.com/loyd/rscam/issues/10 > In the example Stepwise variant represents > { ∀k≥0,m≥0 | (min(320 + k*step.0, 640), min(240 + m*step.1, 360)) } It would be useful to have an iterator...