Struct proc_macro2::TokenStream
[−]
[src]
pub struct TokenStream { /* fields omitted */ }
Methods
impl TokenStream
[src]
Trait Implementations
impl IntoIterator for TokenStream
[src]
type Item = TokenTree
The type of the elements being iterated over.
type IntoIter = IntoIter
Which kind of iterator are we turning this into?
ⓘImportant traits for IntoIterfn into_iter(self) -> IntoIter
[src]
ⓘImportant traits for IntoIter
Creates an iterator from a value. Read more
impl Clone for TokenStream
[src]
fn clone(&self) -> TokenStream
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl FromStr for TokenStream
[src]
type Err = LexError
The associated error which can be returned from parsing.
fn from_str(src: &str) -> Result<TokenStream, LexError>
[src]
Parses a string s
to return a value of this type. Read more
impl From<TokenStream> for TokenStream
[src]
fn from(inner: TokenStream) -> TokenStream
[src]
Performs the conversion.
impl From<TokenStream> for TokenStream
[src]
fn from(inner: TokenStream) -> TokenStream
[src]
Performs the conversion.
impl FromIterator<TokenTree> for TokenStream
[src]
fn from_iter<I: IntoIterator<Item = TokenTree>>(streams: I) -> Self
[src]
Creates a value from an iterator. Read more
impl Display for TokenStream
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more