Michiel De Muynck
Michiel De Muynck
Currently, if you have a closure and you want to call it from JavaScript, you can do that very easily by just using the closure in `js!` as if it's...
The stdweb runtime handles regular closures (that only implement `Fn`) and mutable closures (that implement `FnMut`) the same way. The wrong way, for `FnMut`. It doesn't check that you're not...
You could already specify that no context selector should be generated, using `context(false)`. Now you can specify the name of the context selector, using `context(MySelectorTypeName)`. Helps with #188. I mean,...
# Motivation Currently, Snafu is designed to work with enums like ```rust enum MyEnum { VariantA { val1: Foo, val2: Bar }, VariantB { val1: Baz, val2: i32 }, }...