#pub #mod #proc-macro-attributes #attributes #proc-macro #use

retrieve

#[{pub_}mod_{pub_}use(a,b,c,...)] => {pub }mod a; {pub }use a::*; 以及 b,c,

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

Download history 23/week @ 2024-03-14 25/week @ 2024-03-21 45/week @ 2024-03-28 19/week @ 2024-04-04 27/week @ 2024-04-11 31/week @ 2024-04-18 22/week @ 2024-04-25 12/week @ 2024-05-02 14/week @ 2024-05-09 12/week @ 2024-05-16 22/week @ 2024-05-23 21/week @ 2024-05-30 15/week @ 2024-06-06 17/week @ 2024-06-13 15/week @ 2024-06-20 8/week @ 2024-06-27

每月 58 次下载
用于 3 crates

MIT 许可证

12KB
168

githubcrates-iodocs-rs
Build Status

retrieve

mod xuse 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::*
  1. 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());
}
  1. 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!"

许可证

作者

依赖关系

~1.5MB
~35K SLoC