13 releases
Uses old Rust 2015
0.3.5 | Jan 10, 2019 |
---|---|
0.3.4 | Jan 10, 2019 |
0.3.2 | Sep 23, 2018 |
0.2.4 | Sep 9, 2018 |
0.1.1 | Sep 8, 2018 |
#2136 in Encoding
664 downloads per month
Used in 2 crates
(via spirv-builder)
27KB
782 lines
RawString
and RawStr
are the equivalents of String
and
str
, or OsString
and OsStr
, but without any guarantees
about the encoding.
They are useful in all places where you would otherwise use
Vec<u8>
and [u8]
to represent your strings.