raw-string 0.1.1

RawStr/RawString are like str/String, but without any guaranteed encoding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `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.

mod str;
mod string;

pub use str::*;
pub use string::*;