有没有办法“重新导出”#[macro_use] extern crate
类似于pub use
,以便使用宏的宏的用户不必手动添加这些相关的extern crate
?
问题的其余部分是一个例子来说明。
在src/lib.rs
中,请注意id
宏正在使用lazy_static
宏:
#[macro_export]
macro_rules! id {
() => {
lazy_static! {
static ref NUMBER : std::sync::atomic::AtomicUsize =
std::sync::atomic::AtomicUsize::new(0);
}
return NUMBER.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
}
}
在examples/example.rs
中,我们需要为每个宏添加extern crate
行,即使我们只是直接使用id
宏:
#[macro_use]
extern crate id_macro;
#[macro_use]
extern crate lazy_static;
fn new_id() -> usize {
id!();
}
fn main() {
println!("id {}", new_id()); // prints "id 0"
println!("id {}", new_id()); // prints "id 1"
}
在示例中,如果id_macro
的用户在不知道id!
的情况下可以使用lazy_static
,那就太棒了。有没有办法“重新导出”extern crate
类似于pub use
,以使以下几行脱离示例?
#[macro_use]
extern crate lazy_static;