reflect.StructField.Type (field)

28 uses

	reflect (current package)
		type.go#L878: 	Type      Type      // field type
		type.go#L976: 	f.Type = toType(p.Typ)
		type.go#L1003: 	f.Type = toType(&t.Type)
		type.go#L1006: 			ft := f.Type
		type.go#L1010: 			f.Type = ft
		type.go#L1012: 		f = f.Type.Field(x)
		type.go#L1734: 			Type: TypeOf(funcType{}),
		type.go#L1738: 			Type: ArrayOf(n, TypeOf(&rtype{})),
		type.go#L2178: 		if field.Type == nil {
		type.go#L2400: 			{Name: "S", Type: TypeOf(structType{})},
		type.go#L2401: 			{Name: "U", Type: TypeOf(uncommonType{})},
		type.go#L2402: 			{Name: "M", Type: ArrayOf(len(methods), TypeOf(methods[0]))},
		type.go#L2581: 	resolveReflectType(field.Type.common()) // install in runtime
		type.go#L2584: 		Typ:    field.Type.common(),
		visiblefields.go#L95: 			if f.Type.Kind() == Pointer {
		visiblefields.go#L96: 				f.Type = f.Type.Elem()
		visiblefields.go#L98: 			if f.Type.Kind() == Struct {
		visiblefields.go#L99: 				w.walk(f.Type)

	encoding/asn1
		asn1.go#L927: 			structType.Field(0).Type == rawContentsType {
		asn1.go#L935: 			if i == 0 && field.Type == rawContentsType {
		marshal.go#L505: 		if t.Field(0).Type == rawContentsType {

	encoding/binary
		binary.go#L512: 			s := sizeof(t.Field(i).Type)

	encoding/json
		encode.go#L928: 		t = t.Field(i).Type
		encode.go#L1101: 					t := sf.Type
		encode.go#L1127: 				ft := sf.Type

	net/http
		h2_error.go#L29: 		if sf.Name != df.Name || !sf.Type.ConvertibleTo(df.Type) {