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

pub struct ThinTokenStream(_);
🔬 This is a nightly-only experimental API. (rustc_private)

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.

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 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]

🔬 This is a nightly-only experimental API. (rustc_private)

deprecated in favor of rustc-serialize on crates.io

impl Decodable for ThinTokenStream
[src]

🔬 This is a nightly-only experimental API. (rustc_private)

deprecated in favor of rustc-serialize on crates.io

impl Hash for ThinTokenStream
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.