我收到此错误:
该特征
quote::to_tokens::ToTokens
未实现proc_macro::Ident
当我尝试运行此代码时:
#[proc_macro_hack]
pub fn between(input: TokenStream) -> TokenStream {
let idents = input
.into_iter()
.map(|i| match i {
TokenTree::Ident(b) => {
b
},
_ => panic!()
})
.collect::<Vec<_>>();
let new_token_stream = quote! {
(#(#idents),*)
};
new_token_stream.into()
}
这就是我想使用它的方式:
fn main() {
let a = 1;
let b = 2;
// Expand to (a, b);
between!(a, b);
}
我还有一个包含上述代码的小项目:https ://bitbucket.org/JoshSinne/pm/src/master/ 。为什么我不能转换Ident
内部令牌?我尝试使用parse
,into
但这对我来说并没有奏效。谢谢!