Struct proc_macro::TokenStream

1.15.0 · source ·
pub struct TokenStream(_);
Expand description

此 crate 提供的主要类型,表示 tokens 的抽象流,或更具体地说,表示 token 树的序列。 该类型提供用于迭代这些 token 树的接口,并且相反,将大量 token 树收集到一个流中。

这是 #[proc_macro]#[proc_macro_attribute]#[proc_macro_derive] 定义的输入和输出。

Implementations§

source§

impl TokenStream

1.29.0 · source

pub fn new() -> TokenStream

返回不包含 token 树的空 TokenStream

1.29.0 · source

pub fn is_empty(&self) -> bool

检查此 TokenStream 是否为空。

source

pub fn expand_expr(&self) -> Result<TokenStream, ExpandError>

🔬This is a nightly-only experimental API. (proc_macro_expand #90765)

将此 TokenStream 解析为表达式并尝试扩展其中的任何宏。返回扩展的 TokenStream

目前只有扩展到字面量的表达式会成功,尽管这在 future 中可能会有所放松。

NOTE: 在错误情况下,expand_expr 可能会保留未扩展的宏、报告错误、编译失败或者返回 Err(..)。 任何错误条件的具体行为,以及哪些条件被视为错误,是未指定的,可能会在 future 中发生变化。

Trait Implementations§

source§

impl Clone for TokenStream

source§

fn clone(&self) -> TokenStream

返回值的副本。 Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

source 执行复制分配。 Read more
source§

impl Debug for TokenStream

以方便调试的形式打印 token。

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

使用给定的格式化程序格式化该值。 Read more
1.45.0 · source§

impl Default for TokenStream

source§

fn default() -> Self

返回类型的 “默认值”。 Read more
source§

impl Display for TokenStream

将 token 流打印为应该无损转换为相同 token 流 (模数跨度) 的字符串,但可能带有 Delimiter::None 分隔符和负数字字面量的 TokenTree::Group 除外。

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

使用给定的格式化程序格式化该值。 Read more
1.30.0 · source§

impl Extend<TokenStream> for TokenStream

source§

fn extend<I: IntoIterator<Item = TokenStream>>(&mut self, streams: I)

使用迭代器的内容扩展集合。 Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one #72631)
用一个元素扩展一个集合。
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one #72631)
在集合中为给定数量的附加元素保留容量。 Read more
1.30.0 · source§

impl Extend<TokenTree> for TokenStream

source§

fn extend<I: IntoIterator<Item = TokenTree>>(&mut self, trees: I)

使用迭代器的内容扩展集合。 Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one #72631)
用一个元素扩展一个集合。
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one #72631)
在集合中为给定数量的附加元素保留容量。 Read more
1.29.0 · source§

impl From<TokenTree> for TokenStream

创建包含单个 token 树的 token 流。

source§

fn from(tree: TokenTree) -> TokenStream

从输入类型转换为此类型。
source§

impl FromIterator<TokenStream> for TokenStream

对 token 流的 “flattening” 操作将来自多个 token 流的 token 树收集到单个流中。

source§

fn from_iter<I: IntoIterator<Item = TokenStream>>(streams: I) -> Self

从迭代器创建一个值。 Read more
1.29.0 · source§

impl FromIterator<TokenTree> for TokenStream

将多个 token 树收集到单个流中。

source§

fn from_iter<I: IntoIterator<Item = TokenTree>>(trees: I) -> Self

从迭代器创建一个值。 Read more
source§

impl FromStr for TokenStream

尝试将字符串拆分为 tokens 并将那些 tokens 解析为 token 流。 可能由于多种原因而失败,例如,如果字符串包含不平衡的定界符或该语言中不存在的字符。

解析的流中的所有 tokens 都获得 Span::call_site() 跨度。

NOTE: 某些错误可能导致 panics 而不是返回 LexError。我们保留稍后将这些错误更改为 LexError 的权利。

§

type Err = LexError

可以从解析中返回的相关错误。
source§

fn from_str(src: &str) -> Result<TokenStream, LexError>

解析字符串 s 以返回此类型的值。 Read more
1.29.0 · source§

impl IntoIterator for TokenStream

§

type Item = TokenTree

被迭代的元素的类型。
§

type IntoIter = IntoIter

我们将其变成哪种迭代器?
source§

fn into_iter(self) -> IntoIter

从一个值创建一个迭代器。 Read more
source§

impl ToString for TokenStream

source§

fn to_string(&self) -> String

将给定值转换为 StringRead more
source§

impl !Send for TokenStream

source§

impl !Sync for TokenStream

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

将给定值转换为 StringRead more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。