os_str_bytes 7.1.1

Lossless functionality for platform-native strings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if_conversions! {
    #[cfg(target_os = "uefi")]
    use std::os::uefi as os;
    #[cfg(windows)]
    use std::os::windows as os;
}

pub(super) mod convert_io;

if_conversions! {
    pub(super) mod convert;

    if_raw_str! {
        pub(super) mod raw;
    }
}