serde_closure
serde_closure copied to clipboard
Serialisable closures for Rust.
Hey mate, I think I might be doing something wrong. Suppose I have the following minimal example: ``` use serde_closure::*; fn main() { let closure = Fn!(|x: i32| x +...
_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...
Currently this crate doesn't necessarily correctly handle macro invocations that expand to code that includes captured variables. Doing this correctly requires eagerly evaluating macro invocations, see https://github.com/rust-lang/rfcs/pull/2320 Currently this crate...
Hello, I am trying to do it. You wrote: > you either need to specify the precise type you're deserializing without naming it (which is possible but not particularly practical)...