Enum proc_macro::TokenTree

1.29.0 · source ·
pub enum TokenTree {
    Group(Group),
    Ident(Ident),
    Punct(Punct),
    Literal(Literal),
}
Expand description

单个 token 或 token 树的定界序列 (例如 [1, (), ..])。

Variants§

§

Group(Group)

由括号定界符包围的 token 流。

§

Ident(Ident)

标识符。

§

Punct(Punct)

单个标点符号 (+,$ 等)。

§

Literal(Literal)

字面量字符 ('a'),字符串 ("hello"),数字 (2.3) 等。

Implementations§

source§

impl TokenTree

source

pub fn span(&self) -> Span

返回此树的范围,委托给包含的 token 或分隔流的 span 方法。

source

pub fn set_span(&mut self, span: Span)

only this token 配置范围。

请注意,如果此 token 是 Group,则此方法将不会配置每个内部 tokens 的跨度,这将仅委托给每个变体的 set_span 方法。

Trait Implementations§

source§

impl Clone for TokenTree

source§

fn clone(&self) -> TokenTree

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

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

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

impl Debug for TokenTree

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

source§

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

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

impl Display for TokenTree

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

source§

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

使用给定的格式化程序格式化该值。 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
source§

impl From<Group> for TokenTree

source§

fn from(g: Group) -> TokenTree

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

impl From<Ident> for TokenTree

source§

fn from(g: Ident) -> TokenTree

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

impl From<Literal> for TokenTree

source§

fn from(g: Literal) -> TokenTree

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

impl From<Punct> for TokenTree

source§

fn from(g: Punct) -> TokenTree

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

impl From<TokenTree> for TokenStream

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

source§

fn from(tree: TokenTree) -> TokenStream

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

impl FromIterator<TokenTree> for TokenStream

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

source§

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

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

impl ToString for TokenTree

source§

fn to_string(&self) -> String

将给定值转换为 StringRead more
source§

impl !Send for TokenTree

source§

impl !Sync for TokenTree

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>

执行转换。