1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package nullable
import (
"google.golang.org/protobuf/encoding/prototext"
"google.golang.org/protobuf/encoding/protowire"
"google.golang.org/protobuf/runtime/protoimpl"
"google.golang.org/protobuf/types/descriptorpb"
)
type Proto2 struct {
OptionalBool bool `protobuf:"varint,100,opt,name=optional_bool"`
OptionalInt32 int32 `protobuf:"varint,101,opt,name=optional_int32"`
OptionalInt64 int64 `protobuf:"varint,102,opt,name=optional_int64"`
OptionalUint32 uint32 `protobuf:"varint,103,opt,name=optional_uint32"`
OptionalUint64 uint64 `protobuf:"varint,104,opt,name=optional_uint64"`
OptionalFloat float32 `protobuf:"fixed32,105,opt,name=optional_float"`
OptionalDouble float64 `protobuf:"fixed64,106,opt,name=optional_double"`
OptionalString string `protobuf:"bytes,107,opt,name=optional_string"`
OptionalBytes []byte `protobuf:"bytes,108,opt,name=optional_bytes"`
OptionalEnum descriptorpb.FieldDescriptorProto_Type `protobuf:"varint,109,req,name=optional_enum"`
OptionalMessage descriptorpb.FieldOptions `protobuf:"bytes,110,req,name=optional_message"`
RepeatedBool []bool `protobuf:"varint,200,rep,name=repeated_bool"`
RepeatedInt32 []int32 `protobuf:"varint,201,rep,name=repeated_int32"`
RepeatedInt64 []int64 `protobuf:"varint,202,rep,name=repeated_int64"`
RepeatedUint32 []uint32 `protobuf:"varint,203,rep,name=repeated_uint32"`
RepeatedUint64 []uint64 `protobuf:"varint,204,rep,name=repeated_uint64"`
RepeatedFloat []float32 `protobuf:"fixed32,205,rep,name=repeated_float"`
RepeatedDouble []float64 `protobuf:"fixed64,206,rep,name=repeated_double"`
RepeatedString []string `protobuf:"bytes,207,rep,name=repeated_string"`
RepeatedBytes [][]byte `protobuf:"bytes,208,rep,name=repeated_bytes"`
RepeatedEnum []descriptorpb.FieldDescriptorProto_Type `protobuf:"varint,209,rep,name=repeated_enum"`
RepeatedMessage []descriptorpb.FieldOptions `protobuf:"bytes,210,rep,name=repeated_message"`
MapBool map[string]bool `protobuf:"bytes,300,rep,name=map_bool" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
MapInt32 map[string]int32 `protobuf:"bytes,301,rep,name=map_int32" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
MapInt64 map[string]int64 `protobuf:"bytes,302,rep,name=map_int64" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
MapUint32 map[string]uint32 `protobuf:"bytes,303,rep,name=map_uint32" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
MapUint64 map[string]uint64 `protobuf:"bytes,304,rep,name=map_uint64" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
MapFloat map[string]float32 `protobuf:"bytes,305,rep,name=map_float" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
MapDouble map[string]float64 `protobuf:"bytes,306,rep,name=map_double" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
MapString map[string]string `protobuf:"bytes,307,rep,name=map_string" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
MapBytes map[string][]byte `protobuf:"bytes,308,rep,name=map_bytes" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
MapEnum map[string]descriptorpb.FieldDescriptorProto_Type `protobuf:"bytes,309,rep,name=map_enum" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
MapMessage map[string]descriptorpb.FieldOptions `protobuf:"bytes,310,rep,name=map_message" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
OneofUnion isProto2_OneofUnion `protobuf_oneof:"oneof_union"`
}
func (x *Proto2) ProtoMessage() {}
func (x *Proto2) Reset() { *x = Proto2{} }
func (x *Proto2) String() string { return prototext.Format(protoimpl.X.ProtoMessageV2Of(x)) }
func (x *Proto2) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*Proto2_OneofBool)(nil),
(*Proto2_OneofInt32)(nil),
(*Proto2_OneofInt64)(nil),
(*Proto2_OneofUint32)(nil),
(*Proto2_OneofUint64)(nil),
(*Proto2_OneofFloat)(nil),
(*Proto2_OneofDouble)(nil),
(*Proto2_OneofString)(nil),
(*Proto2_OneofBytes)(nil),
(*Proto2_OneofEnum)(nil),
(*Proto2_OneofMessage)(nil),
}
}
type isProto2_OneofUnion interface{ isProto2_OneofUnion() }
type Proto2_OneofBool struct {
OneofBool bool `protobuf:"varint,400,opt,name=oneof_bool,oneof"`
}
type Proto2_OneofInt32 struct {
OneofInt32 int32 `protobuf:"varint,401,opt,name=oneof_int32,oneof"`
}
type Proto2_OneofInt64 struct {
OneofInt64 int64 `protobuf:"varint,402,opt,name=oneof_int64,oneof"`
}
type Proto2_OneofUint32 struct {
OneofUint32 uint32 `protobuf:"varint,403,opt,name=oneof_uint32,oneof"`
}
type Proto2_OneofUint64 struct {
OneofUint64 uint64 `protobuf:"varint,404,opt,name=oneof_uint64,oneof"`
}
type Proto2_OneofFloat struct {
OneofFloat float32 `protobuf:"fixed32,405,opt,name=oneof_float,oneof"`
}
type Proto2_OneofDouble struct {
OneofDouble float64 `protobuf:"fixed64,406,opt,name=oneof_double,oneof"`
}
type Proto2_OneofString struct {
OneofString string `protobuf:"bytes,407,opt,name=oneof_string,oneof"`
}
type Proto2_OneofBytes struct {
OneofBytes []byte `protobuf:"bytes,408,opt,name=oneof_bytes,oneof"`
}
type Proto2_OneofEnum struct {
OneofEnum descriptorpb.FieldDescriptorProto_Type `protobuf:"varint,409,opt,name=oneof_enum,oneof"`
}
type Proto2_OneofMessage struct {
OneofMessage descriptorpb.FieldOptions `protobuf:"bytes,410,opt,name=oneof_message,oneof"`
}
func (*Proto2_OneofBool) isProto2_OneofUnion() {}
func (*Proto2_OneofInt32) isProto2_OneofUnion() {}
func (*Proto2_OneofInt64) isProto2_OneofUnion() {}
func (*Proto2_OneofUint32) isProto2_OneofUnion() {}
func (*Proto2_OneofUint64) isProto2_OneofUnion() {}
func (*Proto2_OneofFloat) isProto2_OneofUnion() {}
func (*Proto2_OneofDouble) isProto2_OneofUnion() {}
func (*Proto2_OneofString) isProto2_OneofUnion() {}
func (*Proto2_OneofBytes) isProto2_OneofUnion() {}
func (*Proto2_OneofEnum) isProto2_OneofUnion() {}
func (*Proto2_OneofMessage) isProto2_OneofUnion() {}
type Proto3 struct {
OptionalBool bool `protobuf:"varint,100,opt,name=optional_bool,proto3"`
OptionalInt32 int32 `protobuf:"varint,101,opt,name=optional_int32,proto3"`
OptionalInt64 int64 `protobuf:"varint,102,opt,name=optional_int64,proto3"`
OptionalUint32 uint32 `protobuf:"varint,103,opt,name=optional_uint32,proto3"`
OptionalUint64 uint64 `protobuf:"varint,104,opt,name=optional_uint64,proto3"`
OptionalFloat float32 `protobuf:"fixed32,105,opt,name=optional_float,proto3"`
OptionalDouble float64 `protobuf:"fixed64,106,opt,name=optional_double,proto3"`
OptionalString string `protobuf:"bytes,107,opt,name=optional_string,proto3"`
OptionalBytes []byte `protobuf:"bytes,108,opt,name=optional_bytes,proto3"`
OptionalEnum descriptorpb.FieldDescriptorProto_Type `protobuf:"varint,109,req,name=optional_enum,proto3"`
OptionalMessage descriptorpb.FieldOptions `protobuf:"bytes,110,req,name=optional_message,proto3"`
RepeatedBool []bool `protobuf:"varint,200,rep,name=repeated_bool,proto3"`
RepeatedInt32 []int32 `protobuf:"varint,201,rep,name=repeated_int32,proto3"`
RepeatedInt64 []int64 `protobuf:"varint,202,rep,name=repeated_int64,proto3"`
RepeatedUint32 []uint32 `protobuf:"varint,203,rep,name=repeated_uint32,proto3"`
RepeatedUint64 []uint64 `protobuf:"varint,204,rep,name=repeated_uint64,proto3"`
RepeatedFloat []float32 `protobuf:"fixed32,205,rep,name=repeated_float,proto3"`
RepeatedDouble []float64 `protobuf:"fixed64,206,rep,name=repeated_double,proto3"`
RepeatedString []string `protobuf:"bytes,207,rep,name=repeated_string,proto3"`
RepeatedBytes [][]byte `protobuf:"bytes,208,rep,name=repeated_bytes,proto3"`
RepeatedEnum []descriptorpb.FieldDescriptorProto_Type `protobuf:"varint,209,rep,name=repeated_enum,proto3"`
RepeatedMessage []descriptorpb.FieldOptions `protobuf:"bytes,210,rep,name=repeated_message,proto3"`
MapBool map[string]bool `protobuf:"bytes,300,rep,name=map_bool,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
MapInt32 map[string]int32 `protobuf:"bytes,301,rep,name=map_int32,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
MapInt64 map[string]int64 `protobuf:"bytes,302,rep,name=map_int64,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
MapUint32 map[string]uint32 `protobuf:"bytes,303,rep,name=map_uint32,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
MapUint64 map[string]uint64 `protobuf:"bytes,304,rep,name=map_uint64,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
MapFloat map[string]float32 `protobuf:"bytes,305,rep,name=map_float,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"`
MapDouble map[string]float64 `protobuf:"bytes,306,rep,name=map_double,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"`
MapString map[string]string `protobuf:"bytes,307,rep,name=map_string,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
MapBytes map[string][]byte `protobuf:"bytes,308,rep,name=map_bytes,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
MapEnum map[string]descriptorpb.FieldDescriptorProto_Type `protobuf:"bytes,309,rep,name=map_enum,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
MapMessage map[string]descriptorpb.FieldOptions `protobuf:"bytes,310,rep,name=map_message,proto3" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
OneofUnion isProto3_OneofUnion `protobuf_oneof:"oneof_union"`
}
func (x *Proto3) ProtoMessage() {}
func (x *Proto3) Reset() { *x = Proto3{} }
func (x *Proto3) String() string { return prototext.Format(protoimpl.X.ProtoMessageV2Of(x)) }
func (x *Proto3) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*Proto3_OneofBool)(nil),
(*Proto3_OneofInt32)(nil),
(*Proto3_OneofInt64)(nil),
(*Proto3_OneofUint32)(nil),
(*Proto3_OneofUint64)(nil),
(*Proto3_OneofFloat)(nil),
(*Proto3_OneofDouble)(nil),
(*Proto3_OneofString)(nil),
(*Proto3_OneofBytes)(nil),
(*Proto3_OneofEnum)(nil),
(*Proto3_OneofMessage)(nil),
}
}
type isProto3_OneofUnion interface{ isProto3_OneofUnion() }
type Proto3_OneofBool struct {
OneofBool bool `protobuf:"varint,400,opt,name=oneof_bool,proto3,oneof"`
}
type Proto3_OneofInt32 struct {
OneofInt32 int32 `protobuf:"varint,401,opt,name=oneof_int32,proto3,oneof"`
}
type Proto3_OneofInt64 struct {
OneofInt64 int64 `protobuf:"varint,402,opt,name=oneof_int64,proto3,oneof"`
}
type Proto3_OneofUint32 struct {
OneofUint32 uint32 `protobuf:"varint,403,opt,name=oneof_uint32,proto3,oneof"`
}
type Proto3_OneofUint64 struct {
OneofUint64 uint64 `protobuf:"varint,404,opt,name=oneof_uint64,proto3,oneof"`
}
type Proto3_OneofFloat struct {
OneofFloat float32 `protobuf:"fixed32,405,opt,name=oneof_float,proto3,oneof"`
}
type Proto3_OneofDouble struct {
OneofDouble float64 `protobuf:"fixed64,406,opt,name=oneof_double,proto3,oneof"`
}
type Proto3_OneofString struct {
OneofString string `protobuf:"bytes,407,opt,name=oneof_string,proto3,oneof"`
}
type Proto3_OneofBytes struct {
OneofBytes []byte `protobuf:"bytes,408,opt,name=oneof_bytes,proto3,oneof"`
}
type Proto3_OneofEnum struct {
OneofEnum descriptorpb.FieldDescriptorProto_Type `protobuf:"varint,409,opt,name=oneof_enum,proto3,oneof"`
}
type Proto3_OneofMessage struct {
OneofMessage descriptorpb.FieldOptions `protobuf:"bytes,410,opt,name=oneof_message,proto3,oneof"`
}
func (*Proto3_OneofBool) isProto3_OneofUnion() {}
func (*Proto3_OneofInt32) isProto3_OneofUnion() {}
func (*Proto3_OneofInt64) isProto3_OneofUnion() {}
func (*Proto3_OneofUint32) isProto3_OneofUnion() {}
func (*Proto3_OneofUint64) isProto3_OneofUnion() {}
func (*Proto3_OneofFloat) isProto3_OneofUnion() {}
func (*Proto3_OneofDouble) isProto3_OneofUnion() {}
func (*Proto3_OneofString) isProto3_OneofUnion() {}
func (*Proto3_OneofBytes) isProto3_OneofUnion() {}
func (*Proto3_OneofEnum) isProto3_OneofUnion() {}
func (*Proto3_OneofMessage) isProto3_OneofUnion() {}
type Methods struct {
OptionalInt32 int32 `protobuf:"varint,101,opt,name=optional_int32"`
}
func (x *Methods) ProtoMessage() {}
func (x *Methods) Reset() { *x = Methods{} }
func (x *Methods) String() string { return prototext.Format(protoimpl.X.ProtoMessageV2Of(x)) }
func (x *Methods) Marshal() ([]byte, error) {
var b []byte
b = protowire.AppendTag(b, 101, protowire.VarintType)
b = protowire.AppendVarint(b, uint64(x.OptionalInt32))
return b, nil
}
func (x *Methods) Unmarshal(b []byte) error {
for len(b) > 0 {
num, typ, n := protowire.ConsumeTag(b)
if n < 0 {
return protowire.ParseError(n)
}
b = b[n:]
if num != 101 || typ != protowire.VarintType {
n = protowire.ConsumeFieldValue(num, typ, b)
if n < 0 {
return protowire.ParseError(n)
}
b = b[n:]
continue
}
v, n := protowire.ConsumeVarint(b)
if n < 0 {
return protowire.ParseError(n)
}
b = b[n:]
x.OptionalInt32 = int32(v)
}
return nil
}
|