1
2
3
4
5
6
7 package sub
8
9 import (
10 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
11 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
12 reflect "reflect"
13 sync "sync"
14 )
15
16 const (
17
18 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
19
20 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
21 )
22
23 type StringMessage struct {
24 state protoimpl.MessageState
25 sizeCache protoimpl.SizeCache
26 unknownFields protoimpl.UnknownFields
27
28 Value *string `protobuf:"bytes,1,req,name=value" json:"value,omitempty"`
29 }
30
31 func (x *StringMessage) Reset() {
32 *x = StringMessage{}
33 if protoimpl.UnsafeEnabled {
34 mi := &file_examples_internal_proto_sub_message_proto_msgTypes[0]
35 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
36 ms.StoreMessageInfo(mi)
37 }
38 }
39
40 func (x *StringMessage) String() string {
41 return protoimpl.X.MessageStringOf(x)
42 }
43
44 func (*StringMessage) ProtoMessage() {}
45
46 func (x *StringMessage) ProtoReflect() protoreflect.Message {
47 mi := &file_examples_internal_proto_sub_message_proto_msgTypes[0]
48 if protoimpl.UnsafeEnabled && x != nil {
49 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
50 if ms.LoadMessageInfo() == nil {
51 ms.StoreMessageInfo(mi)
52 }
53 return ms
54 }
55 return mi.MessageOf(x)
56 }
57
58
59 func (*StringMessage) Descriptor() ([]byte, []int) {
60 return file_examples_internal_proto_sub_message_proto_rawDescGZIP(), []int{0}
61 }
62
63 func (x *StringMessage) GetValue() string {
64 if x != nil && x.Value != nil {
65 return *x.Value
66 }
67 return ""
68 }
69
70 var File_examples_internal_proto_sub_message_proto protoreflect.FileDescriptor
71
72 var file_examples_internal_proto_sub_message_proto_rawDesc = []byte{
73 0x0a, 0x29, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72,
74 0x6e, 0x61, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x73, 0x75, 0x62, 0x2f, 0x6d, 0x65,
75 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x28, 0x67, 0x72, 0x70,
76 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
77 0x65, 0x73, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74,
78 0x6f, 0x2e, 0x73, 0x75, 0x62, 0x22, 0x25, 0x0a, 0x0d, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4d,
79 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
80 0x01, 0x20, 0x02, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x47, 0x5a, 0x45,
81 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2d,
82 0x65, 0x63, 0x6f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2d, 0x67,
83 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
84 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x74,
85 0x6f, 0x2f, 0x73, 0x75, 0x62,
86 }
87
88 var (
89 file_examples_internal_proto_sub_message_proto_rawDescOnce sync.Once
90 file_examples_internal_proto_sub_message_proto_rawDescData = file_examples_internal_proto_sub_message_proto_rawDesc
91 )
92
93 func file_examples_internal_proto_sub_message_proto_rawDescGZIP() []byte {
94 file_examples_internal_proto_sub_message_proto_rawDescOnce.Do(func() {
95 file_examples_internal_proto_sub_message_proto_rawDescData = protoimpl.X.CompressGZIP(file_examples_internal_proto_sub_message_proto_rawDescData)
96 })
97 return file_examples_internal_proto_sub_message_proto_rawDescData
98 }
99
100 var file_examples_internal_proto_sub_message_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
101 var file_examples_internal_proto_sub_message_proto_goTypes = []interface{}{
102 (*StringMessage)(nil),
103 }
104 var file_examples_internal_proto_sub_message_proto_depIdxs = []int32{
105 0,
106 0,
107 0,
108 0,
109 0,
110 }
111
112 func init() { file_examples_internal_proto_sub_message_proto_init() }
113 func file_examples_internal_proto_sub_message_proto_init() {
114 if File_examples_internal_proto_sub_message_proto != nil {
115 return
116 }
117 if !protoimpl.UnsafeEnabled {
118 file_examples_internal_proto_sub_message_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
119 switch v := v.(*StringMessage); i {
120 case 0:
121 return &v.state
122 case 1:
123 return &v.sizeCache
124 case 2:
125 return &v.unknownFields
126 default:
127 return nil
128 }
129 }
130 }
131 type x struct{}
132 out := protoimpl.TypeBuilder{
133 File: protoimpl.DescBuilder{
134 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
135 RawDescriptor: file_examples_internal_proto_sub_message_proto_rawDesc,
136 NumEnums: 0,
137 NumMessages: 1,
138 NumExtensions: 0,
139 NumServices: 0,
140 },
141 GoTypes: file_examples_internal_proto_sub_message_proto_goTypes,
142 DependencyIndexes: file_examples_internal_proto_sub_message_proto_depIdxs,
143 MessageInfos: file_examples_internal_proto_sub_message_proto_msgTypes,
144 }.Build()
145 File_examples_internal_proto_sub_message_proto = out.File
146 file_examples_internal_proto_sub_message_proto_rawDesc = nil
147 file_examples_internal_proto_sub_message_proto_goTypes = nil
148 file_examples_internal_proto_sub_message_proto_depIdxs = nil
149 }
150
View as plain text