We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93832b5 commit 0867e6aCopy full SHA for 0867e6a
src/std_misc/path.md
@@ -13,8 +13,10 @@ between `Path` and `PathBuf` is similar to that of `str` and `String`:
13
a `PathBuf` can be mutated in-place, and can be dereferenced to a `Path`.
14
15
Note that a `Path` is *not* internally represented as an UTF-8 string, but
16
-instead is stored as a vector of bytes (`Vec<u8>`). Therefore, converting a
17
-`Path` to a `&str` is *not* free and may fail (an `Option` is returned).
+instead is stored as an `OsString`. Therefore, converting a `Path` to a `&str`
+is *not* free and may fail (an `Option` is returned). However, a `Path` can be
18
+freely converted to an `OsString` or `&OsStr` using `into_os_string` and
19
+`as_os_str`, respectively.
20
21
```rust,editable
22
use std::path::Path;
0 commit comments