Struct syn::LitByteStr
source · pub struct LitByteStr { /* private fields */ }
Expand description
A byte string literal: b"foo"
.
Implementations§
Trait Implementations§
source§impl Clone for LitByteStr
impl Clone for LitByteStr
source§impl From<LitByteStr> for Lit
impl From<LitByteStr> for Lit
source§fn from(e: LitByteStr) -> Lit
fn from(e: LitByteStr) -> Lit
Converts to this type from the input type.
source§impl Parse for LitByteStr
impl Parse for LitByteStr
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl ToTokens for LitByteStr
impl ToTokens for LitByteStr
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Token for LitByteStr
Auto Trait Implementations§
impl RefUnwindSafe for LitByteStr
impl !Send for LitByteStr
impl !Sync for LitByteStr
impl Unpin for LitByteStr
impl UnwindSafe for LitByteStr
Blanket Implementations§
source§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.