RS.CLIPPY.MANUAL_MAIN_SEPARATOR_STR
`&std::path::MAIN_SEPARATOR.to_string()` can be replaced by `std::path::MAIN_SEPARATOR_STR`
This checker is a Clippy lint created by The Rust Project Contributors. The documentation shown here is a copy of the original documentation for: manual_main_separator_str. Copyright ©2025 The Rust Team. All rights reserved.
What it does
Checks for references on std::path::MAIN_SEPARATOR.to_string() used
to build a &str.
Why is this bad?
There exists a std::path::MAIN_SEPARATOR_STR which does not require
an extra memory allocation.
Example
let s: &str = &std::path::MAIN_SEPARATOR.to_string();
Use instead:
let s: &str = std::path::MAIN_SEPARATOR_STR;