0.3.7
2024年5月28日
0.3.6
2023年7月27日
0.3.5
2023年1月22日
0.3.4
2022年6月5日
0.3.3
2022年6月5日
#6 在 #jrsonnet
Download history • Rust 包仓库
1872/week @ 2024-04-24 • Rust 包仓库
1337/week @ 2024-05-01 • Rust 包仓库
1544/week @ 2024-05-08 • Rust 包仓库
1773/week @ 2024-05-15 • Rust 包仓库
2510/week @ 2024-05-22 • Rust 包仓库
1836/week @ 2024-05-29 • Rust 包仓库
1017/week @ 2024-06-05 • Rust 包仓库
1314/week @ 2024-06-12 • Rust 包仓库
939/week @ 2024-06-19 • Rust 包仓库
747/week @ 2024-06-26 • Rust 包仓库
594/week @ 2024-07-03 • Rust 包仓库
657/week @ 2024-07-10 • Rust 包仓库
1097/week @ 2024-07-17 • Rust 包仓库
738/week @ 2024-07-24 • Rust 包仓库
609/week @ 2024-07-31 • Rust 包仓库
649/week @ 2024-08-07 • Rust 包仓库
3,297 每月下载量 在 jrsonnet-gcmodule 中使用
为结构体提供derive ( Trace)
支持,以实现gcmodule:: Trace
接口。
示例
use jrsonnet_gcmodule_derive:: Trace;
# [ derive ( Trace ) ]
struct S < T: jrsonnet_gcmodule:: Trace> {
a : String,
b : Option < T> ,
# [ trace ( skip ) ] // ignore this field for Trace.
c : MyType,
}
struct MyType ;