Macro syn::Token
[−]
[src]
macro_rules! Token { (+) => { ... }; (+=) => { ... }; (&) => { ... }; (&&) => { ... }; (&=) => { ... }; (@) => { ... }; (!) => { ... }; (^) => { ... }; (^=) => { ... }; (:) => { ... }; (::) => { ... }; (,) => { ... }; (/) => { ... }; (/=) => { ... }; (.) => { ... }; (..) => { ... }; (...) => { ... }; (..=) => { ... }; (=) => { ... }; (==) => { ... }; (>=) => { ... }; (>) => { ... }; (<=) => { ... }; (<) => { ... }; (*=) => { ... }; (!=) => { ... }; (|) => { ... }; (|=) => { ... }; (||) => { ... }; (#) => { ... }; (?) => { ... }; (->) => { ... }; (<-) => { ... }; (%) => { ... }; (%=) => { ... }; (=>) => { ... }; (;) => { ... }; (<<) => { ... }; (<<=) => { ... }; (>>) => { ... }; (>>=) => { ... }; (*) => { ... }; (-) => { ... }; (-=) => { ... }; (_) => { ... }; (as) => { ... }; (async) => { ... }; (auto) => { ... }; (box) => { ... }; (break) => { ... }; (Self) => { ... }; (catch) => { ... }; (const) => { ... }; (continue) => { ... }; (crate) => { ... }; (default) => { ... }; (do) => { ... }; (dyn) => { ... }; (else) => { ... }; (enum) => { ... }; (extern) => { ... }; (fn) => { ... }; (for) => { ... }; (if) => { ... }; (impl) => { ... }; (in) => { ... }; (let) => { ... }; (loop) => { ... }; (macro) => { ... }; (match) => { ... }; (mod) => { ... }; (move) => { ... }; (mut) => { ... }; (pub) => { ... }; (ref) => { ... }; (return) => { ... }; (self) => { ... }; (static) => { ... }; (struct) => { ... }; (super) => { ... }; (trait) => { ... }; (type) => { ... }; (union) => { ... }; (unsafe) => { ... }; (use) => { ... }; (where) => { ... }; (while) => { ... }; (yield) => { ... }; }
A type-macro that expands to the name of the Rust type representation of a given token.
See the token module documentation for details and examples.