struct.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/protobuf/struct.proto
  3. package known_proto
  4. import (
  5. protoreflect "github.com/golang/protobuf/v2/reflect/protoreflect"
  6. protoregistry "github.com/golang/protobuf/v2/reflect/protoregistry"
  7. protoiface "github.com/golang/protobuf/v2/runtime/protoiface"
  8. protoimpl "github.com/golang/protobuf/v2/runtime/protoimpl"
  9. sync "sync"
  10. )
  11. const _ = protoimpl.EnforceVersion(protoimpl.Version - 0)
  12. // `NullValue` is a singleton enumeration to represent the null value for the
  13. // `Value` type union.
  14. //
  15. // The JSON representation for `NullValue` is JSON `null`.
  16. type NullValue int32
  17. const (
  18. // Null value.
  19. NullValue_NULL_VALUE NullValue = 0
  20. )
  21. // Deprecated: Use NullValue.Type.Values instead.
  22. var NullValue_name = map[int32]string{
  23. 0: "NULL_VALUE",
  24. }
  25. // Deprecated: Use NullValue.Type.Values instead.
  26. var NullValue_value = map[string]int32{
  27. "NULL_VALUE": 0,
  28. }
  29. func (x NullValue) String() string {
  30. return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
  31. }
  32. func (NullValue) Type() protoreflect.EnumType {
  33. return file_google_protobuf_struct_proto_enumTypes[0]
  34. }
  35. func (x NullValue) Number() protoreflect.EnumNumber {
  36. return protoreflect.EnumNumber(x)
  37. }
  38. // Deprecated: Use NullValue.Type instead.
  39. func (NullValue) EnumDescriptor() ([]byte, []int) {
  40. return file_google_protobuf_struct_proto_rawDescGZIP(), []int{0}
  41. }
  42. func (NullValue) XXX_WellKnownType() string { return "NullValue" }
  43. // `Struct` represents a structured data value, consisting of fields
  44. // which map to dynamically typed values. In some languages, `Struct`
  45. // might be supported by a native representation. For example, in
  46. // scripting languages like JS a struct is represented as an
  47. // object. The details of that representation are described together
  48. // with the proto support for the language.
  49. //
  50. // The JSON representation for `Struct` is JSON object.
  51. type Struct struct {
  52. // Unordered map of dynamically typed values.
  53. Fields map[string]*Value `protobuf:"bytes,1,rep,name=fields,proto3" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  54. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  55. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  56. XXX_sizecache protoimpl.SizeCache `json:"-"`
  57. }
  58. func (x *Struct) Reset() {
  59. *x = Struct{}
  60. }
  61. func (x *Struct) String() string {
  62. return protoimpl.X.MessageStringOf(x)
  63. }
  64. func (*Struct) ProtoMessage() {}
  65. func (x *Struct) ProtoReflect() protoreflect.Message {
  66. return file_google_protobuf_struct_proto_msgTypes[0].MessageOf(x)
  67. }
  68. func (m *Struct) XXX_Methods() *protoiface.Methods {
  69. return file_google_protobuf_struct_proto_msgTypes[0].Methods()
  70. }
  71. // Deprecated: Use Struct.ProtoReflect.Type instead.
  72. func (*Struct) Descriptor() ([]byte, []int) {
  73. return file_google_protobuf_struct_proto_rawDescGZIP(), []int{0}
  74. }
  75. func (*Struct) XXX_WellKnownType() string { return "Struct" }
  76. func (x *Struct) GetFields() map[string]*Value {
  77. if x != nil {
  78. return x.Fields
  79. }
  80. return nil
  81. }
  82. // `Value` represents a dynamically typed value which can be either
  83. // null, a number, a string, a boolean, a recursive struct value, or a
  84. // list of values. A producer of value is expected to set one of that
  85. // variants, absence of any variant indicates an error.
  86. //
  87. // The JSON representation for `Value` is JSON value.
  88. type Value struct {
  89. // The kind of value.
  90. //
  91. // Types that are valid to be assigned to Kind:
  92. // Represents a null value.
  93. // *Value_NullValue
  94. // Represents a double value.
  95. // *Value_NumberValue
  96. // Represents a string value.
  97. // *Value_StringValue
  98. // Represents a boolean value.
  99. // *Value_BoolValue
  100. // Represents a structured value.
  101. // *Value_StructValue
  102. // Represents a repeated `Value`.
  103. // *Value_ListValue
  104. Kind isValue_Kind `protobuf_oneof:"kind"`
  105. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  106. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  107. XXX_sizecache protoimpl.SizeCache `json:"-"`
  108. }
  109. func (x *Value) Reset() {
  110. *x = Value{}
  111. }
  112. func (x *Value) String() string {
  113. return protoimpl.X.MessageStringOf(x)
  114. }
  115. func (*Value) ProtoMessage() {}
  116. func (x *Value) ProtoReflect() protoreflect.Message {
  117. return file_google_protobuf_struct_proto_msgTypes[1].MessageOf(x)
  118. }
  119. func (m *Value) XXX_Methods() *protoiface.Methods {
  120. return file_google_protobuf_struct_proto_msgTypes[1].Methods()
  121. }
  122. // Deprecated: Use Value.ProtoReflect.Type instead.
  123. func (*Value) Descriptor() ([]byte, []int) {
  124. return file_google_protobuf_struct_proto_rawDescGZIP(), []int{1}
  125. }
  126. func (*Value) XXX_WellKnownType() string { return "Value" }
  127. func (m *Value) GetKind() isValue_Kind {
  128. if m != nil {
  129. return m.Kind
  130. }
  131. return nil
  132. }
  133. func (x *Value) GetNullValue() NullValue {
  134. if x, ok := x.GetKind().(*Value_NullValue); ok {
  135. return x.NullValue
  136. }
  137. return NullValue_NULL_VALUE
  138. }
  139. func (x *Value) GetNumberValue() float64 {
  140. if x, ok := x.GetKind().(*Value_NumberValue); ok {
  141. return x.NumberValue
  142. }
  143. return 0
  144. }
  145. func (x *Value) GetStringValue() string {
  146. if x, ok := x.GetKind().(*Value_StringValue); ok {
  147. return x.StringValue
  148. }
  149. return ""
  150. }
  151. func (x *Value) GetBoolValue() bool {
  152. if x, ok := x.GetKind().(*Value_BoolValue); ok {
  153. return x.BoolValue
  154. }
  155. return false
  156. }
  157. func (x *Value) GetStructValue() *Struct {
  158. if x, ok := x.GetKind().(*Value_StructValue); ok {
  159. return x.StructValue
  160. }
  161. return nil
  162. }
  163. func (x *Value) GetListValue() *ListValue {
  164. if x, ok := x.GetKind().(*Value_ListValue); ok {
  165. return x.ListValue
  166. }
  167. return nil
  168. }
  169. // XXX_OneofWrappers is for the internal use of the proto package.
  170. func (*Value) XXX_OneofWrappers() []interface{} {
  171. return []interface{}{
  172. (*Value_NullValue)(nil),
  173. (*Value_NumberValue)(nil),
  174. (*Value_StringValue)(nil),
  175. (*Value_BoolValue)(nil),
  176. (*Value_StructValue)(nil),
  177. (*Value_ListValue)(nil),
  178. }
  179. }
  180. type isValue_Kind interface {
  181. isValue_Kind()
  182. }
  183. type Value_NullValue struct {
  184. NullValue NullValue `protobuf:"varint,1,opt,name=null_value,json=nullValue,proto3,enum=google.protobuf.NullValue,oneof"`
  185. }
  186. type Value_NumberValue struct {
  187. NumberValue float64 `protobuf:"fixed64,2,opt,name=number_value,json=numberValue,proto3,oneof"`
  188. }
  189. type Value_StringValue struct {
  190. StringValue string `protobuf:"bytes,3,opt,name=string_value,json=stringValue,proto3,oneof"`
  191. }
  192. type Value_BoolValue struct {
  193. BoolValue bool `protobuf:"varint,4,opt,name=bool_value,json=boolValue,proto3,oneof"`
  194. }
  195. type Value_StructValue struct {
  196. StructValue *Struct `protobuf:"bytes,5,opt,name=struct_value,json=structValue,proto3,oneof"`
  197. }
  198. type Value_ListValue struct {
  199. ListValue *ListValue `protobuf:"bytes,6,opt,name=list_value,json=listValue,proto3,oneof"`
  200. }
  201. func (*Value_NullValue) isValue_Kind() {}
  202. func (*Value_NumberValue) isValue_Kind() {}
  203. func (*Value_StringValue) isValue_Kind() {}
  204. func (*Value_BoolValue) isValue_Kind() {}
  205. func (*Value_StructValue) isValue_Kind() {}
  206. func (*Value_ListValue) isValue_Kind() {}
  207. // `ListValue` is a wrapper around a repeated field of values.
  208. //
  209. // The JSON representation for `ListValue` is JSON array.
  210. type ListValue struct {
  211. // Repeated field of dynamically typed values.
  212. Values []*Value `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
  213. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  214. XXX_unrecognized protoimpl.UnknownFields `json:"-"`
  215. XXX_sizecache protoimpl.SizeCache `json:"-"`
  216. }
  217. func (x *ListValue) Reset() {
  218. *x = ListValue{}
  219. }
  220. func (x *ListValue) String() string {
  221. return protoimpl.X.MessageStringOf(x)
  222. }
  223. func (*ListValue) ProtoMessage() {}
  224. func (x *ListValue) ProtoReflect() protoreflect.Message {
  225. return file_google_protobuf_struct_proto_msgTypes[2].MessageOf(x)
  226. }
  227. func (m *ListValue) XXX_Methods() *protoiface.Methods {
  228. return file_google_protobuf_struct_proto_msgTypes[2].Methods()
  229. }
  230. // Deprecated: Use ListValue.ProtoReflect.Type instead.
  231. func (*ListValue) Descriptor() ([]byte, []int) {
  232. return file_google_protobuf_struct_proto_rawDescGZIP(), []int{2}
  233. }
  234. func (*ListValue) XXX_WellKnownType() string { return "ListValue" }
  235. func (x *ListValue) GetValues() []*Value {
  236. if x != nil {
  237. return x.Values
  238. }
  239. return nil
  240. }
  241. var File_google_protobuf_struct_proto protoreflect.FileDescriptor
  242. var file_google_protobuf_struct_proto_rawDesc = []byte{
  243. 0x0a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  244. 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0f,
  245. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x22,
  246. 0x98, 0x01, 0x0a, 0x06, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x12, 0x3b, 0x0a, 0x06, 0x66, 0x69,
  247. 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x67, 0x6f, 0x6f,
  248. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72,
  249. 0x75, 0x63, 0x74, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  250. 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x1a, 0x51, 0x0a, 0x0b, 0x46, 0x69, 0x65, 0x6c, 0x64,
  251. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  252. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  253. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  254. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
  255. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb2, 0x02, 0x0a, 0x05, 0x56,
  256. 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3b, 0x0a, 0x0a, 0x6e, 0x75, 0x6c, 0x6c, 0x5f, 0x76, 0x61, 0x6c,
  257. 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  258. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4e, 0x75, 0x6c, 0x6c, 0x56,
  259. 0x61, 0x6c, 0x75, 0x65, 0x48, 0x00, 0x52, 0x09, 0x6e, 0x75, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75,
  260. 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75,
  261. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0b, 0x6e, 0x75, 0x6d, 0x62, 0x65,
  262. 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
  263. 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b,
  264. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1f, 0x0a, 0x0a, 0x62,
  265. 0x6f, 0x6f, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x48,
  266. 0x00, 0x52, 0x09, 0x62, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3c, 0x0a, 0x0c,
  267. 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x05, 0x20, 0x01,
  268. 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  269. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x73,
  270. 0x74, 0x72, 0x75, 0x63, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3b, 0x0a, 0x0a, 0x6c, 0x69,
  271. 0x73, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
  272. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  273. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x48, 0x00, 0x52, 0x09, 0x6c, 0x69,
  274. 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x06, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x22,
  275. 0x3b, 0x0a, 0x09, 0x4c, 0x69, 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x2e, 0x0a, 0x06,
  276. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67,
  277. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56,
  278. 0x61, 0x6c, 0x75, 0x65, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x2a, 0x1b, 0x0a, 0x09,
  279. 0x4e, 0x75, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x0e, 0x0a, 0x0a, 0x4e, 0x55, 0x4c,
  280. 0x4c, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x00, 0x42, 0x85, 0x01, 0x0a, 0x13, 0x63, 0x6f,
  281. 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  282. 0x66, 0x42, 0x0b, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
  283. 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x6c,
  284. 0x61, 0x6e, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x76, 0x32, 0x2f,
  285. 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x3b, 0x6b, 0x6e, 0x6f, 0x77,
  286. 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0xf8, 0x01, 0x01, 0xa2, 0x02, 0x03, 0x47, 0x50, 0x42,
  287. 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  288. 0x75, 0x66, 0x2e, 0x57, 0x65, 0x6c, 0x6c, 0x4b, 0x6e, 0x6f, 0x77, 0x6e, 0x54, 0x79, 0x70, 0x65,
  289. 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  290. }
  291. var (
  292. file_google_protobuf_struct_proto_rawDescOnce sync.Once
  293. file_google_protobuf_struct_proto_rawDescData = file_google_protobuf_struct_proto_rawDesc
  294. )
  295. func file_google_protobuf_struct_proto_rawDescGZIP() []byte {
  296. file_google_protobuf_struct_proto_rawDescOnce.Do(func() {
  297. file_google_protobuf_struct_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_protobuf_struct_proto_rawDescData)
  298. })
  299. return file_google_protobuf_struct_proto_rawDescData
  300. }
  301. var file_google_protobuf_struct_proto_enumTypes = make([]protoreflect.EnumType, 1)
  302. var file_google_protobuf_struct_proto_msgTypes = make([]protoimpl.MessageType, 4)
  303. var file_google_protobuf_struct_proto_goTypes = []interface{}{
  304. (NullValue)(0), // 0: google.protobuf.NullValue
  305. (*Struct)(nil), // 1: google.protobuf.Struct
  306. (*Value)(nil), // 2: google.protobuf.Value
  307. (*ListValue)(nil), // 3: google.protobuf.ListValue
  308. nil, // 4: google.protobuf.Struct.FieldsEntry
  309. }
  310. var file_google_protobuf_struct_proto_depIdxs = []int32{
  311. 4, // google.protobuf.Struct.fields:type_name -> google.protobuf.Struct.FieldsEntry
  312. 0, // google.protobuf.Value.null_value:type_name -> google.protobuf.NullValue
  313. 1, // google.protobuf.Value.struct_value:type_name -> google.protobuf.Struct
  314. 3, // google.protobuf.Value.list_value:type_name -> google.protobuf.ListValue
  315. 2, // google.protobuf.ListValue.values:type_name -> google.protobuf.Value
  316. 2, // google.protobuf.Struct.FieldsEntry.value:type_name -> google.protobuf.Value
  317. }
  318. func init() { file_google_protobuf_struct_proto_init() }
  319. func file_google_protobuf_struct_proto_init() {
  320. if File_google_protobuf_struct_proto != nil {
  321. return
  322. }
  323. File_google_protobuf_struct_proto = protoimpl.FileBuilder{
  324. RawDescriptor: file_google_protobuf_struct_proto_rawDesc,
  325. GoTypes: file_google_protobuf_struct_proto_goTypes,
  326. DependencyIndexes: file_google_protobuf_struct_proto_depIdxs,
  327. EnumOutputTypes: file_google_protobuf_struct_proto_enumTypes,
  328. MessageOutputTypes: file_google_protobuf_struct_proto_msgTypes,
  329. FilesRegistry: protoregistry.GlobalFiles,
  330. TypesRegistry: protoregistry.GlobalTypes,
  331. }.Init()
  332. file_google_protobuf_struct_proto_rawDesc = nil
  333. file_google_protobuf_struct_proto_goTypes = nil
  334. file_google_protobuf_struct_proto_depIdxs = nil
  335. }