Expand description
A support library for macro authors when defining new macros.
This library, provided by the standard distribution, provides the types
consumed in the interfaces of procedurally defined macro definitions such as
function-like macros #[proc_macro], macro attributes #[proc_macro_attribute] and
custom derive attributes #[proc_macro_derive].
See the book for more.
Re-exports§
pub use diagnostic::Diagnostic;Experimental pub use diagnostic::Level;Experimental pub use diagnostic::MultiSpan;Experimental pub use to_tokens::ToTokens;Experimental pub use quote::HasIterator;Experimental pub use quote::RepInterp;Experimental pub use quote::ThereIsNoIteratorInRepetition;Experimental pub use quote::ext;Experimental pub use quote::quote;Experimental pub use quote::quote_span;Experimental
Modules§
- diagnostic 🔒
- escape 🔒
- to_
tokens 🔒 - token_
stream - Public implementation details for the
TokenStreamtype, such as iterators. - bridge 👻
Experimental - Internal interface for communicating between a
proc_macroclient (a proc macro crate) and aproc_macroserver (a compiler front-end). - quote 🔒👻
Experimental - Quasiquoter
- tracked
Experimental - Functionality for adding environment state to the build dependency info.
Macros§
- diagnostic_
method 🔒 - extend_
items 🔒 - float_
values 🔒 - integer_
values 🔒 - suffixed_
int_ 🔒literals - unsuffixed_
int_ 🔒literals - quote
Experimental quote!(..)accepts arbitrary tokens and expands into aTokenStreamdescribing the input. For example,quote!(a + b)will produce an expression, that, when evaluated, constructs theTokenStream[Ident("a"), Punct('+', Alone), Ident("b")].
Structs§
- Concat
Streams 🔒Helper - Non-generic helper for implementing
FromIterator<TokenStream>andExtend<TokenStream>with less monomorphization in calling crates. - Concat
Trees 🔒Helper - Non-generic helper for implementing
FromIterator<TokenTree>andExtend<TokenTree>with less monomorphization in calling crates. - Group
- A delimited token stream.
- Ident
- An identifier (
ident). - LexError
- Error returned from
TokenStream::from_str. - Literal
- A literal string (
"hello"), byte string (b"hello"), C string (c"hello"), character ('a'), byte character (b'a'), an integer or floating point number with or without a suffix (1,1u8,2.3,2.3f32). Boolean literals liketrueandfalsedo not belong here, they areIdents. - Punct
- A
Punctis a single punctuation character such as+,-or#. - Span
- A region of source code, along with macro expansion information.
- Token
Stream - The main type provided by this crate, representing an abstract stream of tokens, or, more specifically, a sequence of token trees. The type provides interfaces for iterating over those token trees and, conversely, collecting a number of token trees into one stream.
- Expand
Error Experimental - Error returned from
TokenStream::expand_expr.
Enums§
- Base 🔒
- Delimiter
- Describes how a sequence of token trees is delimited.
- Spacing
- Indicates whether a
Puncttoken can join with the following token to form a multi-character operator. - Token
Tree - A single token or a delimited sequence of token trees (e.g.,
[1, (), ..]). - Conversion
Error Kind Experimental - Errors returned when trying to retrieve a literal unescaped value.
- Escape
Error Experimental - Mostly relating to malformed escape sequences, but also a few other problems.
Functions§
- is_
available - Determines whether proc_macro has been made accessible to the currently running program.
- parse_
number 🔒 - strip_
underscores 🔒 - tree_
to_ 🔒bridge_ tree