Skip to content

Commit 0867e6a

Browse files
authored
Fix: Path internal representation and conversions (#1625)
1 parent 93832b5 commit 0867e6a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/std_misc/path.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ between `Path` and `PathBuf` is similar to that of `str` and `String`:
1313
a `PathBuf` can be mutated in-place, and can be dereferenced to a `Path`.
1414

1515
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).
16+
instead is stored as an `OsString`. Therefore, converting a `Path` to a `&str`
17+
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.
1820

1921
```rust,editable
2022
use std::path::Path;

0 commit comments

Comments
 (0)