You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds support `debug` attributes on structs an enum variants like this:
```rs
#[derive(Debug)]
#[debug("{name}={value:?}")]
struct Arg {
name: String,
value: String
}
```
Before the `debug` attribute could only be used on fields of a struct or variant.
Resolves#277
---------
Co-authored-by: tyranron <tyranron@gmail.com>
I.e. something like:
The text was updated successfully, but these errors were encountered: