如何在rust中获取struct字段名和相关注释

问题描述 投票:0回答:1
#[derive(SomeMarco)]
struct MyStruct {
    field1: i32,    // this is a comment 
    field2: String, // hello world
}

我现在有一个这样的结构体,我想获取字段名称和注释,如何实现这个目标

(我是 rust 新手,在其他语言(如 java)中我们可以使用反射,但 rust 似乎不支持反射)

获取结构体字段名和相关注释

rust serialization comments
1个回答
0
投票

IDK,如果 Rig 可能在这里有任何帮助,但它通过 LLM 集成简化了 Rust 应用程序,因此如果您深入了解 Rust 开发项目,可能值得检查 rig rs 等。

以前曾在 Rust 领域与法学硕士合作过吗?

© www.soinside.com 2019 - 2024. All rights reserved.