15
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 26 Sep 2024
15 points (100.0% liked)
Rust Programming
8175 readers
22 users here now
founded 5 years ago
MODERATORS
As someone else said I think the shadowing works well here.
I do also wanna mention that depending on why you need this conversion, you could use
impl AsRef<std::path::Path>
for your function signature so it can accept&PathBuf
or&Path
. Then, just use that argument with e.g.p.as_ref()
to get a&Path
in the function body