type reflect.StructField

39 uses

	reflect (current package)
		type.go#L156: 	Field(i int) StructField
		type.go#L162: 	FieldByIndex(index []int) StructField
		type.go#L166: 	FieldByName(name string) (StructField, bool)
		type.go#L180: 	FieldByNameFunc(match func(string) bool) (StructField, bool)
		type.go#L918: func (t *rtype) Field(i int) StructField {
		type.go#L926: func (t *rtype) FieldByIndex(index []int) StructField {
		type.go#L934: func (t *rtype) FieldByName(name string) (StructField, bool) {
		type.go#L942: func (t *rtype) FieldByNameFunc(match func(string) bool) (StructField, bool) {
		type.go#L1090: type StructField struct {
		type.go#L1186: func (t *structType) Field(i int) (f StructField) {
		type.go#L1217: func (t *structType) FieldByIndex(index []int) (f StructField) {
		type.go#L1240: func (t *structType) FieldByNameFunc(match func(string) bool) (result StructField, ok bool) {
		type.go#L1303: 						return StructField{}, false
		type.go#L1346: func (t *structType) FieldByName(name string) (f StructField, present bool) {
		type.go#L2368: func StructOf(fields []StructField) Type {
		type.go#L2605: 		tt := New(StructOf([]StructField{
		type.go#L2769: func runtimeStructField(field StructField) (structField, string) {

	encoding/gob
		type.go#L565: func isSent(field *reflect.StructField) bool {

	encoding/json
		decode.go#L146: 	Field reflect.StructField

	encoding/xml
		typeinfo.go#L113: func structFieldInfo(typ reflect.Type, f *reflect.StructField) (*fieldInfo, error) {

	github.com/aws/aws-sdk-go/private/protocol
		idempotency.go#L20: func CanSetIdempotencyToken(v reflect.Value, f reflect.StructField) bool {

	github.com/golang/protobuf/proto
		properties.go#L196: func (p *Properties) Init(typ reflect.Type, name, tag string, f *reflect.StructField) {

	github.com/google/go-cmp/cmp
		export_unsafe.go#L22: func retrieveUnexportedField(v reflect.Value, f reflect.StructField, addr bool) reflect.Value {
		path.go#L182: 	field      reflect.StructField // Field information

	github.com/google/go-cmp/cmp/cmpopts
		sort.go#L122: 	outType := reflect.StructOf([]reflect.StructField{
		struct_filter.go#L168: 		sf = reflect.StructField{}

	github.com/imdario/mergo
		map.go#L26: func isExported(field reflect.StructField) bool {
		merge.go#L27: func isExportedComponent(field *reflect.StructField) bool {

	google.golang.org/api/internal/gensupport
		json.go#L170: func includeField(v reflect.Value, f reflect.StructField, mustInclude map[string]bool) bool {

	google.golang.org/protobuf/internal/impl
		message.go#L129: 	fieldsByNumber        map[pref.FieldNumber]reflect.StructField
		message.go#L130: 	oneofsByName          map[pref.Name]reflect.StructField
		message.go#L142: 		fieldsByNumber:        map[pref.FieldNumber]reflect.StructField{},
		message.go#L143: 		oneofsByName:          map[pref.Name]reflect.StructField{},
		message_reflect_field.go#L31: func fieldInfoForOneof(fd pref.FieldDescriptor, fs reflect.StructField, x exporter, ot reflect.Type) fieldInfo {
		message_reflect_field.go#L114: func fieldInfoForMap(fd pref.FieldDescriptor, fs reflect.StructField, x exporter) fieldInfo {
		message_reflect_field.go#L167: func fieldInfoForList(fd pref.FieldDescriptor, fs reflect.StructField, x exporter) fieldInfo {
		message_reflect_field.go#L222: func fieldInfoForScalar(fd pref.FieldDescriptor, fs reflect.StructField, x exporter) fieldInfo {
		message_reflect_field.go#L378: func fieldInfoForMessage(fd pref.FieldDescriptor, fs reflect.StructField, x exporter) fieldInfo {
		pointer_unsafe.go#L25: func offsetOf(f reflect.StructField, x exporter) offset {