Struct syntax::tokenstream::ThinTokenStream[][src]

pub struct ThinTokenStream(_);

The TokenStream type is large enough to represent a single TokenTree without allocation. ThinTokenStream is smaller, but needs to allocate to represent a single TokenTree. We must use ThinTokenStream in TokenTree::Delimited to avoid infinite size due to recursion.

Trait Implementations

impl Debug for ThinTokenStream
[src]

Formats the value using the given formatter. Read more

impl Clone for ThinTokenStream
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<TokenStream> for ThinTokenStream
[src]

Performs the conversion.

impl From<ThinTokenStream> for TokenStream
[src]

Performs the conversion.

impl Eq for ThinTokenStream
[src]

impl PartialEq<ThinTokenStream> for ThinTokenStream
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Encodable for ThinTokenStream
[src]

impl Decodable for ThinTokenStream
[src]

Auto Trait Implementations