pub struct Tokens {
pub inner: TokenStream,
}Expand description
Tokens is a wrapper around proc_macro2 ::TokenStream.
It is designed to facilitate the parsing and manipulation of token streams
within procedural macros.
§Examples
Creating a new Tokens instance from a token stream :
use macro_tools ::exposed :: *;
let ts: proc_macro2 ::TokenStream = qt! { let x = 10; };
let tokens = tokens ::Tokens ::new( ts );Fields§
§inner: TokenStreamproc_macro2 ::TokenStream
Implementations§
Trait Implementations§
Source§impl ToTokens for Tokens
impl ToTokens for Tokens
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,
Auto Trait Implementations§
impl Freeze for Tokens
impl RefUnwindSafe for Tokens
impl !Send for Tokens
impl !Sync for Tokens
impl Unpin for Tokens
impl UnwindSafe for Tokens
Blanket Implementations§
Source§impl<S> AssignWithType for S
impl<S> AssignWithType for S
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.