[][src]Struct garando_syntax::tokenstream::TokenStream

pub struct TokenStream { /* fields omitted */ }

Token Streams

A TokenStream is an abstract sequence of tokens, organized into TokenTrees. The goal is for procedural macros to work with TokenStreams and TokenTrees instead of a representation of the abstract syntax tree. Today's TokenTrees can still contain AST via Token::Interpolated for back-compat.

Implementations

impl TokenStream[src]

pub fn empty() -> TokenStream[src]

pub fn is_empty(&self) -> bool[src]

pub fn concat(streams: Vec<TokenStream>) -> TokenStream[src]

pub fn trees(&self) -> Cursor[src]

pub fn into_trees(self) -> Cursor[src]

pub fn eq_unspanned(&self, other: &TokenStream) -> bool[src]

Compares two TokenStreams, checking equality without regarding span information.

Trait Implementations

impl Clone for TokenStream[src]

impl Debug for TokenStream[src]

impl<'de> Deserialize<'de> for TokenStream[src]

impl Display for TokenStream[src]

impl Eq for TokenStream[src]

impl From<ThinTokenStream> for TokenStream[src]

impl From<Token> for TokenStream[src]

impl From<TokenStream> for ThinTokenStream[src]

impl From<TokenTree> for TokenStream[src]

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

impl Hash for TokenStream[src]

impl PartialEq<TokenStream> for TokenStream[src]

impl Serialize for TokenStream[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.