std/sys/os_str/
mod.rs

1#![forbid(unsafe_op_in_unsafe_fn)]
2
3cfg_if::cfg_if! {
4    if #[cfg(any(
5        target_os = "windows",
6        target_os = "uefi",
7    ))] {
8        mod wtf8;
9        pub use wtf8::{Buf, Slice};
10    } else {
11        mod bytes;
12        pub use bytes::{Buf, Slice};
13    }
14}