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 Debug for LitByteStr
impl Debug 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 Hash for LitByteStr
impl Hash for LitByteStr
source§impl Parse for LitByteStr
impl Parse for LitByteStr
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl PartialEq for LitByteStr
impl PartialEq for LitByteStr
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 Eq for LitByteStr
impl Token for LitByteStr
Auto Trait Implementations§
impl Freeze for LitByteStr
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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.