pub fn try_from_byte_slice(input: &[u8]) -> Result<&Path, Utf8Error>
Expand description
Given input
bytes, produce a Path
from them ignoring encoding entirely if on Unix.
On Windows, the input is required to be valid UTF-8, which is guaranteed if we wrote it before. There are some potential Git versions and Windows installations which produce malformed UTF-16 if certain emojis are in the path. It’s as rare as it sounds, but possible.