Our great sponsors
-
For people who want to see it in action: https://jrvidal.github.io/explaine.rs/
-
If such a service doesn't already exist, I guess the starting place would be to use the syn library. Instead of just dumping out tokens, the original source code would be annotated with explanations for each little bit of syntax. I'd have to think about how exactly to present that to increase comprehension.
-
SonarLint
Clean code begins in your IDE with SonarLint. Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
-
I am doing pingcap's talent plan recently, where you need to implement a custom Deserializer for REdis Serialization Protocol for the building block 3. What confuses me most is the implementation of `EnumAccess` and `VariantAccess`. One of my attempt looks like the following:
-
The only hack I know is this, where a custom Deserialize is implemented instead of using the serde_derive's Deserialize.