Struct syn::buffer::TokenBuffer
source · pub struct TokenBuffer { /* private fields */ }Expand description
A buffer that can be efficiently traversed multiple times, unlike
TokenStream which requires a deep copy in order to traverse more than
once.
This type is available only if Syn is built with the "parsing" feature.
Implementations§
source§impl TokenBuffer
impl TokenBuffer
sourcepub fn new(stream: TokenStream) -> Self
pub fn new(stream: TokenStream) -> Self
Creates a TokenBuffer containing all the tokens from the input
proc_macro::TokenStream.
This method is available only if Syn is built with both the "parsing" and
"proc-macro" features.
sourcepub fn new2(stream: TokenStream) -> Self
pub fn new2(stream: TokenStream) -> Self
Creates a TokenBuffer containing all the tokens from the input
proc_macro2::TokenStream.