Struct rustc_ap_proc_macro::TokenStream1.15.0 [] [src]

pub struct TokenStream(_);

The main type provided by this crate, representing an abstract stream of tokens.

This is both the input and output of #[proc_macro_derive] definitions. Currently it's required to be a list of valid Rust items, but this restriction may be lifted in the future.

The API of this type is intentionally bare-bones, but it'll be expanded over time!

Methods

impl TokenStream
[src]

[src]

🔬 This is a nightly-only experimental API. (proc_macro #38356)

Returns an empty TokenStream.

[src]

🔬 This is a nightly-only experimental API. (proc_macro #38356)

Checks if this TokenStream is empty.

Trait Implementations

impl Clone for TokenStream
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TokenStream
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for TokenStream
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

impl Display for TokenStream
[src]

[src]

Formats the value using the given formatter. Read more

impl From<TokenTree> for TokenStream
[src]

[src]

Performs the conversion.

impl From<TokenNode> for TokenStream
[src]

[src]

Performs the conversion.

impl<T: Into<TokenStream>> FromIterator<T> for TokenStream
[src]

[src]

Creates a value from an iterator. Read more

impl IntoIterator for TokenStream
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Important traits for TokenTreeIter
[src]

Creates an iterator from a value. Read more

Auto Trait Implementations

impl !Send for TokenStream

impl !Sync for TokenStream