This crate provides a BString
and BStr
types that are conventionally UTF-8
for Rust. They differ from the standard library's String
and str
types in
that they are not required to be valid UTF-8.
THIS CRATE IS A WORK IN PROGRESS.
https://docs.rs/bstr
Add this to your Cargo.toml
:
toml
[dependencies]
bstr = "0.1"
and this to your crate root:
rust
extern crate bstr;
This project is licensed under either of
at your option.