Struct ByteStr
quote
pub struct ByteStr<'a>(pub &'a str);
Wrap a &str so it interpolates as a byte-string: b"abc".
&str
b"abc"
impl<'a> Debug for ByteStr<'a>
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a> ToTokens for ByteStr<'a>
fn to_tokens(&self, tokens: &mut Tokens)
Write self to the given Tokens. Read more
self
Tokens
impl<'a> Send for ByteStr<'a>
impl<'a> Sync for ByteStr<'a>