type encoding/gob.structType

10 uses

	encoding/gob (current package)
		decode.go#L1092: 	var wireStruct *structType
		decode.go#L1096: 		wireStruct, _ = t.(*structType)
		type.go#L268: 	checkId(20, mustGetTypeInfo(reflect.TypeOf(structType{})).id)
		type.go#L402: type structType struct {
		type.go#L407: func (s *structType) safeString(seen map[typeId]bool) string {
		type.go#L423: func (s *structType) string() string { return s.safeString(make(map[typeId]bool)) }
		type.go#L425: func newStructType(name string) *structType {
		type.go#L426: 	s := &structType{CommonType{Name: name}, nil}
		type.go#L642: 	StructT          *structType
		type.go#L749: 			info.wire = &wireType{StructT: t.(*structType)}