[][src]Enum rustc_ap_syntax::token::Nonterminal

pub enum Nonterminal {
    NtItem(P<Item>),
    NtBlock(P<Block>),
    NtStmt(Stmt),
    NtPat(P<Pat>),
    NtExpr(P<Expr>),
    NtTy(P<Ty>),
    NtIdent(Identbool),
    NtLifetime(Ident),
    NtLiteral(P<Expr>),
    NtMeta(P<AttrItem>),
    NtPath(Path),
    NtVis(Visibility),
    NtTT(TokenTree),
    NtTraitItem(P<AssocItem>),
    NtImplItem(P<AssocItem>),
    NtForeignItem(P<ForeignItem>),
}

For interpolation during macro expansion.

Variants

NtItem(P<Item>)
NtBlock(P<Block>)
NtStmt(Stmt)
NtPat(P<Pat>)
NtExpr(P<Expr>)
NtTy(P<Ty>)
NtIdent(Identbool)
NtLifetime(Ident)
NtLiteral(P<Expr>)
NtMeta(P<AttrItem>)

Stuff inside brackets for attributes

NtPath(Path)
NtVis(Visibility)
NtTT(TokenTree)
NtTraitItem(P<AssocItem>)
NtImplItem(P<AssocItem>)
NtForeignItem(P<ForeignItem>)

Trait Implementations

impl Clone for Nonterminal[src]

impl Debug for Nonterminal[src]

impl Decodable for Nonterminal[src]

impl Encodable for Nonterminal[src]

impl<CTX> HashStable<CTX> for Nonterminal where
    CTX: HashStableContext
[src]

impl PartialEq<Nonterminal> for Nonterminal[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<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<T> Erased for T[src]

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

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

impl<E> SpecializationError for E[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.