Searched defs:OneofFields (Results 1 – 1 of 1) sorted by relevance
245 type OneofFields struct { struct246 List []protoreflect.FieldDescriptor247 once sync.Once248 byName map[protoreflect.Name]protoreflect.FieldDescriptor // protected by once249 byJSON map[string]protoreflect.FieldDescriptor // protected by once250 byText map[string]protoreflect.FieldDescriptor // protected by once251 byNum map[protoreflect.FieldNumber]protoreflect.FieldDescriptor // protected by once254 func (p *OneofFields) Len() int { return len(p.List) }255 func (p *OneofFields) Get(i int) protoreflect.FieldDescriptor { return p.List[i] }256 func (p *OneofFields) ByName(s protoreflect.Name) protoreflect.FieldDescriptor {[all …]