[][src]Struct quote::Tokens

pub struct Tokens { /* fields omitted */ }

Tokens produced by a quote! invocation.

Methods

impl Tokens[src]

pub fn new() -> Self[src]

Empty tokens.

pub fn append<U>(&mut self, token: U) where
    U: Into<TokenTree>, 
[src]

For use by ToTokens implementations.

Appends the token specified to this list of tokens.

pub fn append_all<T, I>(&mut self, iter: I) where
    T: ToTokens,
    I: IntoIterator<Item = T>, 
[src]

For use by ToTokens implementations.

struct X;

impl ToTokens for X {
    fn to_tokens(&self, tokens: &mut Tokens) {
        tokens.append_all(&[true, false]);
    }
}

let tokens = quote!(#X);
assert_eq!(tokens.to_string(), "true false");

pub fn append_separated<T, I, U>(&mut self, iter: I, op: U) where
    T: ToTokens,
    I: IntoIterator<Item = T>,
    U: ToTokens
[src]

For use by ToTokens implementations.

Appends all of the items in the iterator I, separated by the tokens U.

pub fn append_terminated<T, I, U>(&mut self, iter: I, term: U) where
    T: ToTokens,
    I: IntoIterator<Item = T>,
    U: ToTokens
[src]

For use by ToTokens implementations.

Appends all tokens in the iterator I, appending U after each element, including after the last element of the iterator.

Trait Implementations

impl ToTokens for Tokens[src]

impl Default for Tokens[src]

impl Clone for Tokens[src]

impl PartialEq<Tokens> for Tokens[src]

impl IntoIterator for Tokens[src]

Allows a Tokens to be passed to Tokens::append_all.

type Item = TokenTree

The type of the elements being iterated over.

type IntoIter = IntoIter

Which kind of iterator are we turning this into?

impl From<Tokens> for TokenStream[src]

impl From<Tokens> for TokenStream[src]

impl<'a> Hash for Tokens[src]

impl Debug for Tokens[src]

impl Display for Tokens[src]

Auto Trait Implementations

impl !Send for Tokens

impl Unpin for Tokens

impl !Sync for Tokens

impl UnwindSafe for Tokens

impl RefUnwindSafe for Tokens

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

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.

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

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

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