给定一个字符串( str
),如何在 Rust 中将其转换为 TokenStream
?
我试过使用 quote!
宏。
let str = "4";
let tokens = quote! { let num = #str; }; // #str is a str not i32
这里的目标是为一些未知的代码字符串生成 token 。
let thing = "4";
let tokens = quote! { let thing = #thing }; // i32
或者
let thing = ""4"";
let tokens = quote! { let thing = #thing }; // str
最佳答案
Rust 有一个共同的特性,可以在转换可能失败时将字符串转换为值: FromStr
。这通常通过 parse
上的 &str
方法访问。
proc_macro2::TokenStream
use proc_macro2; // 0.4.24
fn example(s: &str) {
let stream: proc_macro2::TokenStream = s.parse().unwrap();
}
proc_macro::TokenStream
extern crate proc_macro;
fn example(s: &str) {
let stream: proc_macro::TokenStream = s.parse().unwrap();
}
您应该知道,此代码不能在实际过程宏的调用之外运行。
关于rust - 将字符串转换为 TokenStream,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54165117/