6 个稳定版本
1.1.2 | 2022年5月11日 |
---|---|
1.1.1 | 2022年5月2日 |
1.1.0 | 2022年4月30日 |
1.0.2 | 2022年4月27日 |
#7 在 #use
每月 58 次下载
用于 3 crates
12KB
168 行
retrieve
mod x
和 use x::*
的 proc-macro 属性语法糖。
retrieve::
mod_use
=>mod x; use x::*;
用于模块内部。pub_mod_use
=>pub mod x; use x::*
用于公共嵌套模块。mod_pub_use
=>mod x; pub use x::*
用于具有分离源代码的公共平面模块。- 在根目录中具有扁平别名的公共嵌套模块中,
pub_mod_pub_use
=>pub x; pub use x::x
。
我厌倦了反复编写结构化美观源代码的mod x; use x::*;
模式!😝 我喜欢风格化的属性 proc-macro 语法糖。💖
示例: examples/
- src/
- main.rs
- x.rs ; 或者如果你喜欢 module-name/mod.rs 风格,也可以将其移动到 x/mod.rs。
- x/
- a.rs ;
crate::x::a::*
- b.rs ;
crate::x::b::*
- a.rs ;
- main.rs
use retrieve::*;
#[mod_pub_use(x)] // <-- here!; it's the same as `mod x; pub use x::*;`
fn main()
{
// `X` from x::X
let x = X {
a: 1,
b: 2
};
// And it from '2. x.rs'; `.a()` from the trait of `x::a::A` and `.b()` from the trait of `x::b::B`
println!("{:?}", x.a() + x.b());
}
- x.rs
use retrieve::*;
#[mod_pub_use(a, b)] // <-- here!; it's the same as `mod a; pub use a::*;` and `mod b; pub use b::*;`
pub struct X
{
pub a: i32,
pub b: i32
}
用于调试
retrieve
具有print
功能。它将显示评估后的语法的一部分。
例如:运行示例时启用print
功能
cargo run --example work_arround --features print
然后,你将在构建消息中得到类似的内容
Compiling retrieve v1.0.1 (C:\Users\usagi\tmp\retrieve)
[(proc-macro)retrieve::mod_pub_use+print]
mod x; pub use x::*;
fn main()
{ let x = X :: new(1) ; println! ("{:?} {:?}", x.a(), x.to_string()) ; }
[(proc-macro)retrieve::mod_pub_use+print]
mod a; pub use a::*;
mod new; pub use new::*;
mod _impl_already_traits; pub use _impl_already_traits::*;
pub struct X { a : i32 }
[(proc-macro)retrieve::mod_pub_use+print]
mod display; pub use display::*;
use super :: X ;
Finished dev [unoptimized + debuginfo] target(s) in 1.41s
Running `target\debug\examples\work_arround.exe`
1 "One!"
许可证
作者
- USAGI.NETWORK / Usagi Ito https://github.com/usagi/
依赖关系
~1.5MB
~35K SLoC