We use several derive macros like Serialize, Deserialize, or macros like async_trait. Is there any way to see what the macros desugar a given object into?
You can use cargo expand. You need to use a nightly compiler for it.
We use several derive macros like Serialize, Deserialize, or macros like async_trait. Is there any way to see what the macros desugar a given object into?
You can use cargo expand. You need to use a nightly compiler for it.