-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Precision for debug formatting works with empty tuple, but not other things (odd inconsistency) #43909
Comments
The reason for this, as for as code, is that In impl Debug for () {
fn fmt(&self, f: &mut Formatter) -> Result {
f.pad("()")
}
} impl Debug for str {
fn fmt(&self, f: &mut Formatter) -> Result {
f.write_char('"')?;
let mut from = 0;
for (i, c) in self.char_indices() {
let esc = c.escape_debug();
// If char needs escaping, flush backlog so far and write, else skip
if esc.len() != 1 {
f.write_str(&self[from..i])?;
for c in esc {
f.write_char(c)?;
}
from = i + c.len_utf8();
}
}
f.write_str(&self[from..])?;
f.write_char('"')
}
} That of course doesn't answer the question of what the intended behavior is; presumably the inconsistency isn't intended. |
I agree that this does not seem intentional. I would love a PR with a fix! |
Is the preferred solution to make I was hoping precision specifiers would work in debug formatting (though, my use case was a bit of a hack); but getting that to work is complicated and somewhat problematic. Either way, it is technically a breaking change, but presumably no one is really relying on it since it doesn't do anything useful. |
According to the
Do you have a sense of how complicated and problematic it would be to adhere to what the doc says? |
Just found this issue after encountering a similar problem: a type with
|
With the current rust version:
The test code produces:
So in over 7 years this issue has does not seem to have changed at all. "Fixing" the empty tuple so it always prints as "()" would seem simplest and it could be documented that debug accepts but does not respond to format modifiers. Alternatives are to make debug respond for all types (which sounds like a lot of work) or add a warning to clippy or the compiler when format modifiers are used with debug with suitable wording about uncertain behaviour. |
It may be intentional that precision doesn't work with debug formatting (only with display), but this inconsistency is odd.
I presume this is unintended (I can't imagine why it would be intentional)? Although any change may technically be breaking. Of course, if it is desired that precision doesn't work with debug, it doesn't really matter since there's no reason to use it.
The text was updated successfully, but these errors were encountered: