【大家的项目】一个导出结构体及其成员的过程宏(懒人福利)

December 17, 2023
测试
测试
测试
测试
1 分钟阅读

A macro used to make struct's fields public

How to use it?

#[macro_use]
extern crate public;

#[make_public(crate)]
#[derive(Debug, Default)]
struct Foo {
    a: i8,
    b: char,
    c: String,
}

the struct Foo and its fields will be accessible in current crate globally.

欢迎 star 和使用。

yuchunzhou/public: A crate used to make struct's fields public (github.com)

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多