我有原型:
extend google.protobuf.FieldOptions {
string foo_option = 50000;
}
message Request {
// all fields have foo_option
string str1 = 1 [(foo_option) = "bar1"];
string str2 = 1 [(foo_option) = "bar2"];
}
在 Go 中,给定 ,我如何检索每个字段的值?req *Requestfoo_option
函数式编程
相关分类