rust-lang / rust-lang/rust-clippy
Useless format!/to_string in argument of function accepting fmt::Display
Open
Nobody has claimed this yet.
A-lint
- Dominant language
- Rust
- Stars
- 13.5k
- Forks
- 2.2k
- Avg merge
- 2d 10h
- Merged PRs (30d)
- 32
Description
What it does
Detects the use of format!() and .to_string() in arguments to a function expecting impl fmt::Display.
(Possible duplicate of #3021, #3156)
Lint Name
useless_format
Category
perf, pedantic
Advantage
- Remove useless allocation
Drawbacks
- May be hard to implement?
Example
fn foo(_: impl std::fmt::Display) {}
foo("xyz".to_string());
foo(format!("{} {}", 1, 2));
Could be written as:
fn foo(_: impl std::fmt::Display) {}
foo("xyz");
foo(format_args!("{} {}", 1, 2));
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reviewing related issues #3021 and #3156, then examine existing Clippy lint implementations for similar formatting or performance checks. Done means the useless_format lint detects format! and to_string() passed to functions accepting fmt::Display and supports the examples described here.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100