std/sys/os_str/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_op_in_unsafe_fn)]

cfg_if::cfg_if! {
    if #[cfg(any(
        target_os = "windows",
        target_os = "uefi",
    ))] {
        mod wtf8;
        pub use wtf8::{Buf, Slice};
    } else {
        mod bytes;
        pub use bytes::{Buf, Slice};
    }
}