Skip to content
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

format!() ignores width while formatting Debug #83361

Closed
Ekleog opened this issue Mar 22, 2021 · 3 comments
Closed

format!() ignores width while formatting Debug #83361

Ekleog opened this issue Mar 22, 2021 · 3 comments
Labels
A-fmt Area: `core::fmt` C-bug Category: This is a bug. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.

Comments

@Ekleog
Copy link

Ekleog commented Mar 22, 2021

Related: #55584

fn main() {
    // The code I was trying to get working
    println!("[{text:width$}]", text = "foo", width = 10);
    println!("[{text:width$?}]", text = "foo", width = 10);
    
    // A reduced reproducer
    println!("[{:10}]", "foo");
    println!("[{:10?}]", "foo");
}

(playground)
shows as result

[foo       ]
["foo"]
[foo       ]
["foo"]

I understand from #55584 that this might be “working as intended”, though I'm not really sure I understand why.

If there are technical reasons why width-setting can't work, would it be possible to error out at compile-time (well… lint and in the next edition error) when hitting such a construct? I must say that it was my first time attempting to get dynamic width working, and I was persuaded I did something wrong until I just tried removing Debug and all of a sudden everything worked.

And if there are practical reasons why one would not want that, would it be possible to update the documentation to make this behavior explicit? :)

@Ekleog Ekleog added the C-bug Category: This is a bug. label Mar 22, 2021
@camelid camelid added A-fmt Area: `core::fmt` T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. labels Mar 22, 2021
@osa1
Copy link
Contributor

osa1 commented Mar 23, 2021

This is a duplicate of #55584. I think it makes sense to close this and have all the relevant discussion in one place.

@Ekleog
Copy link
Author

Ekleog commented Mar 23, 2021

Well, precision and width are not the same flag, and I'm thinking it might make sense to have the behavior differ between them :) Now, if people think the behavior must be the same (I must say I still don't really get why #55584 would be the good behavior) then let's close this, but I can't think of any use case for width doing anything different between Display and Debug

@Enselic
Copy link
Member

Enselic commented Dec 17, 2023

Triage: While #55584 is not a literal duplicate, the underlying principles are the same, so let's close as duplicate.

@Enselic Enselic closed this as not planned Won't fix, can't repro, duplicate, stale Dec 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-fmt Area: `core::fmt` C-bug Category: This is a bug. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

4 participants