[−][src]Enum proc_macro2::TokenTree
A single token or a delimited sequence of token trees (e.g. [1, (), ..]).
Variants
Group(Group)A token stream surrounded by bracket delimiters.
Ident(Ident)An identifier.
Punct(Punct)A single punctuation character (+, ,, $, etc.).
Literal(Literal)A literal character ('a'), string ("hello"), number (2.3), etc.
Methods
impl TokenTree[src]
impl TokenTreepub fn span(&self) -> Span[src]
pub fn span(&self) -> SpanReturns the span of this tree, delegating to the span method of
the contained token or a delimited stream.
pub fn set_span(&mut self, span: Span)[src]
pub fn set_span(&mut self, span: Span)Configures the span for only this token.
Note that if this token is a Group then this method will not configure
the span of each of the internal tokens, this will simply delegate to
the set_span method of each variant.
Trait Implementations
impl From<Group> for TokenTree[src]
impl From<Group> for TokenTreeimpl From<Ident> for TokenTree[src]
impl From<Ident> for TokenTreeimpl From<Punct> for TokenTree[src]
impl From<Punct> for TokenTreeimpl From<Literal> for TokenTree[src]
impl From<Literal> for TokenTreeimpl Clone for TokenTree[src]
impl Clone for TokenTreefn clone(&self) -> TokenTree[src]
fn clone(&self) -> TokenTreefn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Extend<TokenTree> for TokenStream[src]
impl Extend<TokenTree> for TokenStreamfn extend<I: IntoIterator<Item = TokenTree>>(&mut self, streams: I)[src]
fn extend<I: IntoIterator<Item = TokenTree>>(&mut self, streams: I)impl Display for TokenTree[src]
impl Display for TokenTreePrints the token tree as a string that is supposed to be losslessly
convertible back into the same token tree (modulo spans), except for
possibly TokenTree::Groups with Delimiter::None delimiters and negative
numeric literals.
impl Debug for TokenTree[src]
impl Debug for TokenTreePrints token tree in a form convenient for debugging.
impl FromIterator<TokenTree> for TokenStream[src]
impl FromIterator<TokenTree> for TokenStreamCollects a number of token trees into a single stream.
fn from_iter<I: IntoIterator<Item = TokenTree>>(streams: I) -> Self[src]
fn from_iter<I: IntoIterator<Item = TokenTree>>(streams: I) -> SelfAuto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToString for T where
T: Display + ?Sized, [src]
impl<T> ToString for T where
T: Display + ?Sized, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, impl<T> From for T[src]
impl<T> From for Timpl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeIdimpl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut T