我正在编写一个程序宏,我需要多次发出一个很长的标识符(例如,可能是因为卫生)。我quote!
用来创建TokenStream
s,但我不想一遍又一遍地重复长标识符!
例如,我想生成以下代码:
let very_long_ident_is_very_long_indeed = 3;
println!("{}", very_long_ident_is_very_long_indeed);
println!("twice: {}", very_long_ident_is_very_long_indeed + very_long_ident_is_very_long_indeed);
我知道我可以创建一个Ident
并将其插入quote!
:
let my_ident = Ident::new("very_long_ident_is_very_long_indeed", Span::call_site());
quote! {
let #my_ident = 3;
println!("{}", #my_ident);
println!("twice: {}", #my_ident + #my_ident);
}
到目前为止一切顺利,但我需要在我的代码库中的许多函数中使用该标识符。我希望它可以在const
任何地方使用。但是,这失败了:
const FOO: Ident = Ident::new("very_long_ident_is_very_long_indeed", Span::call_site());
出现此错误:
error[E0015]: calls in constants are limited to constant functions, tuple structs and tuple variants
--> src/lib.rs:5:70
|
5 | const FOO: Ident = Ident::new("very_long_ident_is_very_long_indeed", Span::call_site());
| ^^^^^^^^^^^^^^^^^
error[E0015]: calls in constants are limited to constant functions, tuple structs and tuple variants
--> src/lib.rs:5:20
|
5 | const FOO: Ident = Ident::new("very_long_ident_is_very_long_indeed", Span::call_site());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
我怀疑这些功能会const
很快被标记。
我可以使字符串本身成为常量:
const IDENT: &str = "very_long_ident_is_very_long_indeed";
但是无论我想在哪里使用标识符,我都需要调用Ident::new(IDENT, Span::call_site())
,这会很烦人。我只想写#IDENT
在我的quote!
调用中。我能以某种方式使它工作吗?