Open ijackson opened 3 months ago
Change the output when the user requests debug printing of a tuple struct in named fields syntax.
Previously we output _0: (for example), which isn't really right: Rust permits 0:, and the field is actually called 0.
_0:
0:
0
This is a behavioural change, but I don't think Debug output is regarded as semver-relevant, so this shouldn't be a considered breaking change.
Change the output when the user requests debug printing of a tuple struct in named fields syntax.
Previously we output
_0:
(for example), which isn't really right: Rust permits0:
, and the field is actually called0
.This is a behavioural change, but I don't think Debug output is regarded as semver-relevant, so this shouldn't be a considered breaking change.