By DeepSource
All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Security
Style
Type check
Calling the print! or write! macros with an empty format string has no effect.
print!
write!
Such statements are probably remnants of debugging. Remove them.
let mut buf = String::new(); write!(&mut buf, ""); print!(""); eprint!("");