macro_rules! b_str { ($str:literal) => { ... }; }
Creates a new BStr from a string literal.
BStr
b_str! converts the supplied string literal to byte string, so non-ASCII characters can be included.
b_str!
const MY_BSTR: &BStr = b_str!("My awesome BStr!");