proto2

package
v0.0.0-...-5dc18d7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 6, 2023 License: BSD-3-Clause Imports: 11 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Default_DoubleMessage_RequiredField = float64(1)
	Default_DoubleMessage_OptionalField = float64(2)
)

Default values for DoubleMessage fields.

View Source
const (
	Default_FloatMessage_RequiredField = float32(1)
	Default_FloatMessage_OptionalField = float32(2)
)

Default values for FloatMessage fields.

View Source
const (
	Default_Int32Message_RequiredField = int32(1)
	Default_Int32Message_OptionalField = int32(2)
)

Default values for Int32Message fields.

View Source
const (
	Default_Int64Message_RequiredField = int64(1)
	Default_Int64Message_OptionalField = int64(2)
)

Default values for Int64Message fields.

View Source
const (
	Default_Uint32Message_RequiredField = uint32(1)
	Default_Uint32Message_OptionalField = uint32(2)
)

Default values for Uint32Message fields.

View Source
const (
	Default_Uint64Message_RequiredField = uint64(1)
	Default_Uint64Message_OptionalField = uint64(2)
)

Default values for Uint64Message fields.

View Source
const (
	Default_Sint32Message_RequiredField = int32(1)
	Default_Sint32Message_OptionalField = int32(2)
)

Default values for Sint32Message fields.

View Source
const (
	Default_Sint64Message_RequiredField = int64(1)
	Default_Sint64Message_OptionalField = int64(2)
)

Default values for Sint64Message fields.

View Source
const (
	Default_Fixed32Message_RequiredField = uint32(1)
	Default_Fixed32Message_OptionalField = uint32(2)
)

Default values for Fixed32Message fields.

View Source
const (
	Default_Fixed64Message_RequiredField = uint64(1)
	Default_Fixed64Message_OptionalField = uint64(2)
)

Default values for Fixed64Message fields.

View Source
const (
	Default_Sfixed32Message_RequiredField = int32(1)
	Default_Sfixed32Message_OptionalField = int32(2)
)

Default values for Sfixed32Message fields.

View Source
const (
	Default_Sfixed64Message_RequiredField = int64(1)
	Default_Sfixed64Message_OptionalField = int64(2)
)

Default values for Sfixed64Message fields.

View Source
const (
	Default_StringMessage_RequiredField = string("req")
	Default_StringMessage_OptionalField = string("opt")
)

Default values for StringMessage fields.

View Source
const (
	Default_BoolMessage_RequiredField = bool(true)
)

Default values for BoolMessage fields.

View Source
const (
	Default_EnumMessage_RequiredField = EnumMessage_SEVEN
)

Default values for EnumMessage fields.

Variables

View Source
var (
	EnumMessage_Num_name = map[int32]string{
		10: "TEN",
		9:  "NINE",
		8:  "EIGHT",
		7:  "SEVEN",
	}
	EnumMessage_Num_value = map[string]int32{
		"TEN":   10,
		"NINE":  9,
		"EIGHT": 8,
		"SEVEN": 7,
	}
)

Enum value maps for EnumMessage_Num.

View Source
var (
	Default_BytesMessage_RequiredField = []byte("req")
	Default_BytesMessage_OptionalField = []byte("opt")
)

Default values for BytesMessage fields.

View Source
var File_proto2_scalars_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type BoolMessage

type BoolMessage struct {
	RequiredField *bool  `protobuf:"varint,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *bool  `protobuf:"varint,2,opt,name=optional_field,json=optionalField" json:"optional_field,omitempty"`
	RepeatedField []bool `protobuf:"varint,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []bool `protobuf:"varint,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*BoolMessage) CloneMessageVT

func (m *BoolMessage) CloneMessageVT() proto.Message

func (*BoolMessage) CloneVT

func (m *BoolMessage) CloneVT() *BoolMessage

func (*BoolMessage) Descriptor deprecated

func (*BoolMessage) Descriptor() ([]byte, []int)

Deprecated: Use BoolMessage.ProtoReflect.Descriptor instead.

func (*BoolMessage) EqualMessageVT

func (this *BoolMessage) EqualMessageVT(thatMsg proto.Message) bool

func (*BoolMessage) EqualVT

func (this *BoolMessage) EqualVT(that *BoolMessage) bool

func (*BoolMessage) GetOptionalField

func (x *BoolMessage) GetOptionalField() bool

func (*BoolMessage) GetPackedField

func (x *BoolMessage) GetPackedField() []bool

func (*BoolMessage) GetRepeatedField

func (x *BoolMessage) GetRepeatedField() []bool

func (*BoolMessage) GetRequiredField

func (x *BoolMessage) GetRequiredField() bool

func (*BoolMessage) MarshalToSizedBufferVT

func (m *BoolMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BoolMessage) MarshalToSizedBufferVTStrict

func (m *BoolMessage) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*BoolMessage) MarshalToVT

func (m *BoolMessage) MarshalToVT(dAtA []byte) (int, error)

func (*BoolMessage) MarshalToVTStrict

func (m *BoolMessage) MarshalToVTStrict(dAtA []byte) (int, error)

func (*BoolMessage) MarshalVT

func (m *BoolMessage) MarshalVT() (dAtA []byte, err error)

func (*BoolMessage) MarshalVTStrict

func (m *BoolMessage) MarshalVTStrict() (dAtA []byte, err error)

func (*BoolMessage) ProtoMessage

func (*BoolMessage) ProtoMessage()

func (*BoolMessage) ProtoReflect

func (x *BoolMessage) ProtoReflect() protoreflect.Message

func (*BoolMessage) Reset

func (x *BoolMessage) Reset()

func (*BoolMessage) SizeVT

func (m *BoolMessage) SizeVT() (n int)

func (*BoolMessage) String

func (x *BoolMessage) String() string

func (*BoolMessage) UnmarshalVT

func (m *BoolMessage) UnmarshalVT(dAtA []byte) error

func (*BoolMessage) UnmarshalVTUnsafe

func (m *BoolMessage) UnmarshalVTUnsafe(dAtA []byte) error

type BytesMessage

type BytesMessage struct {
	RequiredField []byte   `protobuf:"bytes,1,req,name=required_field,json=requiredField,def=req" json:"required_field,omitempty"`
	OptionalField []byte   `protobuf:"bytes,2,opt,name=optional_field,json=optionalField,def=opt" json:"optional_field,omitempty"`
	RepeatedField [][]byte `protobuf:"bytes,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	// contains filtered or unexported fields
}

func (*BytesMessage) CloneMessageVT

func (m *BytesMessage) CloneMessageVT() proto.Message

func (*BytesMessage) CloneVT

func (m *BytesMessage) CloneVT() *BytesMessage

func (*BytesMessage) Descriptor deprecated

func (*BytesMessage) Descriptor() ([]byte, []int)

Deprecated: Use BytesMessage.ProtoReflect.Descriptor instead.

func (*BytesMessage) EqualMessageVT

func (this *BytesMessage) EqualMessageVT(thatMsg proto.Message) bool

func (*BytesMessage) EqualVT

func (this *BytesMessage) EqualVT(that *BytesMessage) bool

func (*BytesMessage) GetOptionalField

func (x *BytesMessage) GetOptionalField() []byte

func (*BytesMessage) GetRepeatedField

func (x *BytesMessage) GetRepeatedField() [][]byte

func (*BytesMessage) GetRequiredField

func (x *BytesMessage) GetRequiredField() []byte

func (*BytesMessage) MarshalToSizedBufferVT

func (m *BytesMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*BytesMessage) MarshalToSizedBufferVTStrict

func (m *BytesMessage) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*BytesMessage) MarshalToVT

func (m *BytesMessage) MarshalToVT(dAtA []byte) (int, error)

func (*BytesMessage) MarshalToVTStrict

func (m *BytesMessage) MarshalToVTStrict(dAtA []byte) (int, error)

func (*BytesMessage) MarshalVT

func (m *BytesMessage) MarshalVT() (dAtA []byte, err error)

func (*BytesMessage) MarshalVTStrict

func (m *BytesMessage) MarshalVTStrict() (dAtA []byte, err error)

func (*BytesMessage) ProtoMessage

func (*BytesMessage) ProtoMessage()

func (*BytesMessage) ProtoReflect

func (x *BytesMessage) ProtoReflect() protoreflect.Message

func (*BytesMessage) Reset

func (x *BytesMessage) Reset()

func (*BytesMessage) SizeVT

func (m *BytesMessage) SizeVT() (n int)

func (*BytesMessage) String

func (x *BytesMessage) String() string

func (*BytesMessage) UnmarshalVT

func (m *BytesMessage) UnmarshalVT(dAtA []byte) error

func (*BytesMessage) UnmarshalVTUnsafe

func (m *BytesMessage) UnmarshalVTUnsafe(dAtA []byte) error

type DoubleMessage

type DoubleMessage struct {
	RequiredField *float64  `protobuf:"fixed64,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *float64  `protobuf:"fixed64,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []float64 `protobuf:"fixed64,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []float64 `protobuf:"fixed64,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*DoubleMessage) CloneMessageVT

func (m *DoubleMessage) CloneMessageVT() proto.Message

func (*DoubleMessage) CloneVT

func (m *DoubleMessage) CloneVT() *DoubleMessage

func (*DoubleMessage) Descriptor deprecated

func (*DoubleMessage) Descriptor() ([]byte, []int)

Deprecated: Use DoubleMessage.ProtoReflect.Descriptor instead.

func (*DoubleMessage) EqualMessageVT

func (this *DoubleMessage) EqualMessageVT(thatMsg proto.Message) bool

func (*DoubleMessage) EqualVT

func (this *DoubleMessage) EqualVT(that *DoubleMessage) bool

func (*DoubleMessage) GetOptionalField

func (x *DoubleMessage) GetOptionalField() float64

func (*DoubleMessage) GetPackedField

func (x *DoubleMessage) GetPackedField() []float64

func (*DoubleMessage) GetRepeatedField

func (x *DoubleMessage) GetRepeatedField() []float64

func (*DoubleMessage) GetRequiredField

func (x *DoubleMessage) GetRequiredField() float64

func (*DoubleMessage) MarshalToSizedBufferVT

func (m *DoubleMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DoubleMessage) MarshalToSizedBufferVTStrict

func (m *DoubleMessage) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*DoubleMessage) MarshalToVT

func (m *DoubleMessage) MarshalToVT(dAtA []byte) (int, error)

func (*DoubleMessage) MarshalToVTStrict

func (m *DoubleMessage) MarshalToVTStrict(dAtA []byte) (int, error)

func (*DoubleMessage) MarshalVT

func (m *DoubleMessage) MarshalVT() (dAtA []byte, err error)

func (*DoubleMessage) MarshalVTStrict

func (m *DoubleMessage) MarshalVTStrict() (dAtA []byte, err error)

func (*DoubleMessage) ProtoMessage

func (*DoubleMessage) ProtoMessage()

func (*DoubleMessage) ProtoReflect

func (x *DoubleMessage) ProtoReflect() protoreflect.Message

func (*DoubleMessage) Reset

func (x *DoubleMessage) Reset()

func (*DoubleMessage) SizeVT

func (m *DoubleMessage) SizeVT() (n int)

func (*DoubleMessage) String

func (x *DoubleMessage) String() string

func (*DoubleMessage) UnmarshalVT

func (m *DoubleMessage) UnmarshalVT(dAtA []byte) error

func (*DoubleMessage) UnmarshalVTUnsafe

func (m *DoubleMessage) UnmarshalVTUnsafe(dAtA []byte) error

type EnumMessage

type EnumMessage struct {
	RequiredField *EnumMessage_Num  `protobuf:"varint,1,req,name=required_field,json=requiredField,enum=EnumMessage_Num,def=7" json:"required_field,omitempty"`
	OptionalField *EnumMessage_Num  `protobuf:"varint,2,opt,name=optional_field,json=optionalField,enum=EnumMessage_Num" json:"optional_field,omitempty"`
	RepeatedField []EnumMessage_Num `protobuf:"varint,3,rep,name=repeated_field,json=repeatedField,enum=EnumMessage_Num" json:"repeated_field,omitempty"`
	PackedField   []EnumMessage_Num `protobuf:"varint,4,rep,packed,name=packed_field,json=packedField,enum=EnumMessage_Num" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*EnumMessage) CloneMessageVT

func (m *EnumMessage) CloneMessageVT() proto.Message

func (*EnumMessage) CloneVT

func (m *EnumMessage) CloneVT() *EnumMessage

func (*EnumMessage) Descriptor deprecated

func (*EnumMessage) Descriptor() ([]byte, []int)

Deprecated: Use EnumMessage.ProtoReflect.Descriptor instead.

func (*EnumMessage) EqualMessageVT

func (this *EnumMessage) EqualMessageVT(thatMsg proto.Message) bool

func (*EnumMessage) EqualVT

func (this *EnumMessage) EqualVT(that *EnumMessage) bool

func (*EnumMessage) GetOptionalField

func (x *EnumMessage) GetOptionalField() EnumMessage_Num

func (*EnumMessage) GetPackedField

func (x *EnumMessage) GetPackedField() []EnumMessage_Num

func (*EnumMessage) GetRepeatedField

func (x *EnumMessage) GetRepeatedField() []EnumMessage_Num

func (*EnumMessage) GetRequiredField

func (x *EnumMessage) GetRequiredField() EnumMessage_Num

func (*EnumMessage) MarshalToSizedBufferVT

func (m *EnumMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*EnumMessage) MarshalToSizedBufferVTStrict

func (m *EnumMessage) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*EnumMessage) MarshalToVT

func (m *EnumMessage) MarshalToVT(dAtA []byte) (int, error)

func (*EnumMessage) MarshalToVTStrict

func (m *EnumMessage) MarshalToVTStrict(dAtA []byte) (int, error)

func (*EnumMessage) MarshalVT

func (m *EnumMessage) MarshalVT() (dAtA []byte, err error)

func (*EnumMessage) MarshalVTStrict

func (m *EnumMessage) MarshalVTStrict() (dAtA []byte, err error)

func (*EnumMessage) ProtoMessage

func (*EnumMessage) ProtoMessage()

func (*EnumMessage) ProtoReflect

func (x *EnumMessage) ProtoReflect() protoreflect.Message

func (*EnumMessage) Reset

func (x *EnumMessage) Reset()

func (*EnumMessage) SizeVT

func (m *EnumMessage) SizeVT() (n int)

func (*EnumMessage) String

func (x *EnumMessage) String() string

func (*EnumMessage) UnmarshalVT

func (m *EnumMessage) UnmarshalVT(dAtA []byte) error

func (*EnumMessage) UnmarshalVTUnsafe

func (m *EnumMessage) UnmarshalVTUnsafe(dAtA []byte) error

type EnumMessage_Num

type EnumMessage_Num int32
const (
	EnumMessage_TEN   EnumMessage_Num = 10
	EnumMessage_NINE  EnumMessage_Num = 9
	EnumMessage_EIGHT EnumMessage_Num = 8
	EnumMessage_SEVEN EnumMessage_Num = 7
)

func (EnumMessage_Num) Descriptor

func (EnumMessage_Num) Enum

func (x EnumMessage_Num) Enum() *EnumMessage_Num

func (EnumMessage_Num) EnumDescriptor deprecated

func (EnumMessage_Num) EnumDescriptor() ([]byte, []int)

Deprecated: Use EnumMessage_Num.Descriptor instead.

func (EnumMessage_Num) Number

func (EnumMessage_Num) String

func (x EnumMessage_Num) String() string

func (EnumMessage_Num) Type

func (*EnumMessage_Num) UnmarshalJSON deprecated

func (x *EnumMessage_Num) UnmarshalJSON(b []byte) error

Deprecated: Do not use.

type Fixed32Message

type Fixed32Message struct {
	RequiredField *uint32  `protobuf:"fixed32,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *uint32  `protobuf:"fixed32,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []uint32 `protobuf:"fixed32,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []uint32 `protobuf:"fixed32,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Fixed32Message) CloneMessageVT

func (m *Fixed32Message) CloneMessageVT() proto.Message

func (*Fixed32Message) CloneVT

func (m *Fixed32Message) CloneVT() *Fixed32Message

func (*Fixed32Message) Descriptor deprecated

func (*Fixed32Message) Descriptor() ([]byte, []int)

Deprecated: Use Fixed32Message.ProtoReflect.Descriptor instead.

func (*Fixed32Message) EqualMessageVT

func (this *Fixed32Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Fixed32Message) EqualVT

func (this *Fixed32Message) EqualVT(that *Fixed32Message) bool

func (*Fixed32Message) GetOptionalField

func (x *Fixed32Message) GetOptionalField() uint32

func (*Fixed32Message) GetPackedField

func (x *Fixed32Message) GetPackedField() []uint32

func (*Fixed32Message) GetRepeatedField

func (x *Fixed32Message) GetRepeatedField() []uint32

func (*Fixed32Message) GetRequiredField

func (x *Fixed32Message) GetRequiredField() uint32

func (*Fixed32Message) MarshalToSizedBufferVT

func (m *Fixed32Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Fixed32Message) MarshalToSizedBufferVTStrict

func (m *Fixed32Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Fixed32Message) MarshalToVT

func (m *Fixed32Message) MarshalToVT(dAtA []byte) (int, error)

func (*Fixed32Message) MarshalToVTStrict

func (m *Fixed32Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Fixed32Message) MarshalVT

func (m *Fixed32Message) MarshalVT() (dAtA []byte, err error)

func (*Fixed32Message) MarshalVTStrict

func (m *Fixed32Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Fixed32Message) ProtoMessage

func (*Fixed32Message) ProtoMessage()

func (*Fixed32Message) ProtoReflect

func (x *Fixed32Message) ProtoReflect() protoreflect.Message

func (*Fixed32Message) Reset

func (x *Fixed32Message) Reset()

func (*Fixed32Message) SizeVT

func (m *Fixed32Message) SizeVT() (n int)

func (*Fixed32Message) String

func (x *Fixed32Message) String() string

func (*Fixed32Message) UnmarshalVT

func (m *Fixed32Message) UnmarshalVT(dAtA []byte) error

func (*Fixed32Message) UnmarshalVTUnsafe

func (m *Fixed32Message) UnmarshalVTUnsafe(dAtA []byte) error

type Fixed64Message

type Fixed64Message struct {
	RequiredField *uint64  `protobuf:"fixed64,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *uint64  `protobuf:"fixed64,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []uint64 `protobuf:"fixed64,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []uint64 `protobuf:"fixed64,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Fixed64Message) CloneMessageVT

func (m *Fixed64Message) CloneMessageVT() proto.Message

func (*Fixed64Message) CloneVT

func (m *Fixed64Message) CloneVT() *Fixed64Message

func (*Fixed64Message) Descriptor deprecated

func (*Fixed64Message) Descriptor() ([]byte, []int)

Deprecated: Use Fixed64Message.ProtoReflect.Descriptor instead.

func (*Fixed64Message) EqualMessageVT

func (this *Fixed64Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Fixed64Message) EqualVT

func (this *Fixed64Message) EqualVT(that *Fixed64Message) bool

func (*Fixed64Message) GetOptionalField

func (x *Fixed64Message) GetOptionalField() uint64

func (*Fixed64Message) GetPackedField

func (x *Fixed64Message) GetPackedField() []uint64

func (*Fixed64Message) GetRepeatedField

func (x *Fixed64Message) GetRepeatedField() []uint64

func (*Fixed64Message) GetRequiredField

func (x *Fixed64Message) GetRequiredField() uint64

func (*Fixed64Message) MarshalToSizedBufferVT

func (m *Fixed64Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Fixed64Message) MarshalToSizedBufferVTStrict

func (m *Fixed64Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Fixed64Message) MarshalToVT

func (m *Fixed64Message) MarshalToVT(dAtA []byte) (int, error)

func (*Fixed64Message) MarshalToVTStrict

func (m *Fixed64Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Fixed64Message) MarshalVT

func (m *Fixed64Message) MarshalVT() (dAtA []byte, err error)

func (*Fixed64Message) MarshalVTStrict

func (m *Fixed64Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Fixed64Message) ProtoMessage

func (*Fixed64Message) ProtoMessage()

func (*Fixed64Message) ProtoReflect

func (x *Fixed64Message) ProtoReflect() protoreflect.Message

func (*Fixed64Message) Reset

func (x *Fixed64Message) Reset()

func (*Fixed64Message) SizeVT

func (m *Fixed64Message) SizeVT() (n int)

func (*Fixed64Message) String

func (x *Fixed64Message) String() string

func (*Fixed64Message) UnmarshalVT

func (m *Fixed64Message) UnmarshalVT(dAtA []byte) error

func (*Fixed64Message) UnmarshalVTUnsafe

func (m *Fixed64Message) UnmarshalVTUnsafe(dAtA []byte) error

type FloatMessage

type FloatMessage struct {
	RequiredField *float32  `protobuf:"fixed32,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *float32  `protobuf:"fixed32,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []float32 `protobuf:"fixed32,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []float32 `protobuf:"fixed32,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*FloatMessage) CloneMessageVT

func (m *FloatMessage) CloneMessageVT() proto.Message

func (*FloatMessage) CloneVT

func (m *FloatMessage) CloneVT() *FloatMessage

func (*FloatMessage) Descriptor deprecated

func (*FloatMessage) Descriptor() ([]byte, []int)

Deprecated: Use FloatMessage.ProtoReflect.Descriptor instead.

func (*FloatMessage) EqualMessageVT

func (this *FloatMessage) EqualMessageVT(thatMsg proto.Message) bool

func (*FloatMessage) EqualVT

func (this *FloatMessage) EqualVT(that *FloatMessage) bool

func (*FloatMessage) GetOptionalField

func (x *FloatMessage) GetOptionalField() float32

func (*FloatMessage) GetPackedField

func (x *FloatMessage) GetPackedField() []float32

func (*FloatMessage) GetRepeatedField

func (x *FloatMessage) GetRepeatedField() []float32

func (*FloatMessage) GetRequiredField

func (x *FloatMessage) GetRequiredField() float32

func (*FloatMessage) MarshalToSizedBufferVT

func (m *FloatMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*FloatMessage) MarshalToSizedBufferVTStrict

func (m *FloatMessage) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*FloatMessage) MarshalToVT

func (m *FloatMessage) MarshalToVT(dAtA []byte) (int, error)

func (*FloatMessage) MarshalToVTStrict

func (m *FloatMessage) MarshalToVTStrict(dAtA []byte) (int, error)

func (*FloatMessage) MarshalVT

func (m *FloatMessage) MarshalVT() (dAtA []byte, err error)

func (*FloatMessage) MarshalVTStrict

func (m *FloatMessage) MarshalVTStrict() (dAtA []byte, err error)

func (*FloatMessage) ProtoMessage

func (*FloatMessage) ProtoMessage()

func (*FloatMessage) ProtoReflect

func (x *FloatMessage) ProtoReflect() protoreflect.Message

func (*FloatMessage) Reset

func (x *FloatMessage) Reset()

func (*FloatMessage) SizeVT

func (m *FloatMessage) SizeVT() (n int)

func (*FloatMessage) String

func (x *FloatMessage) String() string

func (*FloatMessage) UnmarshalVT

func (m *FloatMessage) UnmarshalVT(dAtA []byte) error

func (*FloatMessage) UnmarshalVTUnsafe

func (m *FloatMessage) UnmarshalVTUnsafe(dAtA []byte) error

type Int32Message

type Int32Message struct {
	RequiredField *int32  `protobuf:"varint,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *int32  `protobuf:"varint,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []int32 `protobuf:"varint,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []int32 `protobuf:"varint,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Int32Message) CloneMessageVT

func (m *Int32Message) CloneMessageVT() proto.Message

func (*Int32Message) CloneVT

func (m *Int32Message) CloneVT() *Int32Message

func (*Int32Message) Descriptor deprecated

func (*Int32Message) Descriptor() ([]byte, []int)

Deprecated: Use Int32Message.ProtoReflect.Descriptor instead.

func (*Int32Message) EqualMessageVT

func (this *Int32Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Int32Message) EqualVT

func (this *Int32Message) EqualVT(that *Int32Message) bool

func (*Int32Message) GetOptionalField

func (x *Int32Message) GetOptionalField() int32

func (*Int32Message) GetPackedField

func (x *Int32Message) GetPackedField() []int32

func (*Int32Message) GetRepeatedField

func (x *Int32Message) GetRepeatedField() []int32

func (*Int32Message) GetRequiredField

func (x *Int32Message) GetRequiredField() int32

func (*Int32Message) MarshalToSizedBufferVT

func (m *Int32Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Int32Message) MarshalToSizedBufferVTStrict

func (m *Int32Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Int32Message) MarshalToVT

func (m *Int32Message) MarshalToVT(dAtA []byte) (int, error)

func (*Int32Message) MarshalToVTStrict

func (m *Int32Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Int32Message) MarshalVT

func (m *Int32Message) MarshalVT() (dAtA []byte, err error)

func (*Int32Message) MarshalVTStrict

func (m *Int32Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Int32Message) ProtoMessage

func (*Int32Message) ProtoMessage()

func (*Int32Message) ProtoReflect

func (x *Int32Message) ProtoReflect() protoreflect.Message

func (*Int32Message) Reset

func (x *Int32Message) Reset()

func (*Int32Message) SizeVT

func (m *Int32Message) SizeVT() (n int)

func (*Int32Message) String

func (x *Int32Message) String() string

func (*Int32Message) UnmarshalVT

func (m *Int32Message) UnmarshalVT(dAtA []byte) error

func (*Int32Message) UnmarshalVTUnsafe

func (m *Int32Message) UnmarshalVTUnsafe(dAtA []byte) error

type Int64Message

type Int64Message struct {
	RequiredField *int64  `protobuf:"varint,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *int64  `protobuf:"varint,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []int64 `protobuf:"varint,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []int64 `protobuf:"varint,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Int64Message) CloneMessageVT

func (m *Int64Message) CloneMessageVT() proto.Message

func (*Int64Message) CloneVT

func (m *Int64Message) CloneVT() *Int64Message

func (*Int64Message) Descriptor deprecated

func (*Int64Message) Descriptor() ([]byte, []int)

Deprecated: Use Int64Message.ProtoReflect.Descriptor instead.

func (*Int64Message) EqualMessageVT

func (this *Int64Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Int64Message) EqualVT

func (this *Int64Message) EqualVT(that *Int64Message) bool

func (*Int64Message) GetOptionalField

func (x *Int64Message) GetOptionalField() int64

func (*Int64Message) GetPackedField

func (x *Int64Message) GetPackedField() []int64

func (*Int64Message) GetRepeatedField

func (x *Int64Message) GetRepeatedField() []int64

func (*Int64Message) GetRequiredField

func (x *Int64Message) GetRequiredField() int64

func (*Int64Message) MarshalToSizedBufferVT

func (m *Int64Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Int64Message) MarshalToSizedBufferVTStrict

func (m *Int64Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Int64Message) MarshalToVT

func (m *Int64Message) MarshalToVT(dAtA []byte) (int, error)

func (*Int64Message) MarshalToVTStrict

func (m *Int64Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Int64Message) MarshalVT

func (m *Int64Message) MarshalVT() (dAtA []byte, err error)

func (*Int64Message) MarshalVTStrict

func (m *Int64Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Int64Message) ProtoMessage

func (*Int64Message) ProtoMessage()

func (*Int64Message) ProtoReflect

func (x *Int64Message) ProtoReflect() protoreflect.Message

func (*Int64Message) Reset

func (x *Int64Message) Reset()

func (*Int64Message) SizeVT

func (m *Int64Message) SizeVT() (n int)

func (*Int64Message) String

func (x *Int64Message) String() string

func (*Int64Message) UnmarshalVT

func (m *Int64Message) UnmarshalVT(dAtA []byte) error

func (*Int64Message) UnmarshalVTUnsafe

func (m *Int64Message) UnmarshalVTUnsafe(dAtA []byte) error

type Sfixed32Message

type Sfixed32Message struct {
	RequiredField *int32  `protobuf:"fixed32,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *int32  `protobuf:"fixed32,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []int32 `protobuf:"fixed32,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []int32 `protobuf:"fixed32,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Sfixed32Message) CloneMessageVT

func (m *Sfixed32Message) CloneMessageVT() proto.Message

func (*Sfixed32Message) CloneVT

func (m *Sfixed32Message) CloneVT() *Sfixed32Message

func (*Sfixed32Message) Descriptor deprecated

func (*Sfixed32Message) Descriptor() ([]byte, []int)

Deprecated: Use Sfixed32Message.ProtoReflect.Descriptor instead.

func (*Sfixed32Message) EqualMessageVT

func (this *Sfixed32Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Sfixed32Message) EqualVT

func (this *Sfixed32Message) EqualVT(that *Sfixed32Message) bool

func (*Sfixed32Message) GetOptionalField

func (x *Sfixed32Message) GetOptionalField() int32

func (*Sfixed32Message) GetPackedField

func (x *Sfixed32Message) GetPackedField() []int32

func (*Sfixed32Message) GetRepeatedField

func (x *Sfixed32Message) GetRepeatedField() []int32

func (*Sfixed32Message) GetRequiredField

func (x *Sfixed32Message) GetRequiredField() int32

func (*Sfixed32Message) MarshalToSizedBufferVT

func (m *Sfixed32Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Sfixed32Message) MarshalToSizedBufferVTStrict

func (m *Sfixed32Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Sfixed32Message) MarshalToVT

func (m *Sfixed32Message) MarshalToVT(dAtA []byte) (int, error)

func (*Sfixed32Message) MarshalToVTStrict

func (m *Sfixed32Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Sfixed32Message) MarshalVT

func (m *Sfixed32Message) MarshalVT() (dAtA []byte, err error)

func (*Sfixed32Message) MarshalVTStrict

func (m *Sfixed32Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Sfixed32Message) ProtoMessage

func (*Sfixed32Message) ProtoMessage()

func (*Sfixed32Message) ProtoReflect

func (x *Sfixed32Message) ProtoReflect() protoreflect.Message

func (*Sfixed32Message) Reset

func (x *Sfixed32Message) Reset()

func (*Sfixed32Message) SizeVT

func (m *Sfixed32Message) SizeVT() (n int)

func (*Sfixed32Message) String

func (x *Sfixed32Message) String() string

func (*Sfixed32Message) UnmarshalVT

func (m *Sfixed32Message) UnmarshalVT(dAtA []byte) error

func (*Sfixed32Message) UnmarshalVTUnsafe

func (m *Sfixed32Message) UnmarshalVTUnsafe(dAtA []byte) error

type Sfixed64Message

type Sfixed64Message struct {
	RequiredField *int64  `protobuf:"fixed64,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *int64  `protobuf:"fixed64,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []int64 `protobuf:"fixed64,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []int64 `protobuf:"fixed64,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Sfixed64Message) CloneMessageVT

func (m *Sfixed64Message) CloneMessageVT() proto.Message

func (*Sfixed64Message) CloneVT

func (m *Sfixed64Message) CloneVT() *Sfixed64Message

func (*Sfixed64Message) Descriptor deprecated

func (*Sfixed64Message) Descriptor() ([]byte, []int)

Deprecated: Use Sfixed64Message.ProtoReflect.Descriptor instead.

func (*Sfixed64Message) EqualMessageVT

func (this *Sfixed64Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Sfixed64Message) EqualVT

func (this *Sfixed64Message) EqualVT(that *Sfixed64Message) bool

func (*Sfixed64Message) GetOptionalField

func (x *Sfixed64Message) GetOptionalField() int64

func (*Sfixed64Message) GetPackedField

func (x *Sfixed64Message) GetPackedField() []int64

func (*Sfixed64Message) GetRepeatedField

func (x *Sfixed64Message) GetRepeatedField() []int64

func (*Sfixed64Message) GetRequiredField

func (x *Sfixed64Message) GetRequiredField() int64

func (*Sfixed64Message) MarshalToSizedBufferVT

func (m *Sfixed64Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Sfixed64Message) MarshalToSizedBufferVTStrict

func (m *Sfixed64Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Sfixed64Message) MarshalToVT

func (m *Sfixed64Message) MarshalToVT(dAtA []byte) (int, error)

func (*Sfixed64Message) MarshalToVTStrict

func (m *Sfixed64Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Sfixed64Message) MarshalVT

func (m *Sfixed64Message) MarshalVT() (dAtA []byte, err error)

func (*Sfixed64Message) MarshalVTStrict

func (m *Sfixed64Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Sfixed64Message) ProtoMessage

func (*Sfixed64Message) ProtoMessage()

func (*Sfixed64Message) ProtoReflect

func (x *Sfixed64Message) ProtoReflect() protoreflect.Message

func (*Sfixed64Message) Reset

func (x *Sfixed64Message) Reset()

func (*Sfixed64Message) SizeVT

func (m *Sfixed64Message) SizeVT() (n int)

func (*Sfixed64Message) String

func (x *Sfixed64Message) String() string

func (*Sfixed64Message) UnmarshalVT

func (m *Sfixed64Message) UnmarshalVT(dAtA []byte) error

func (*Sfixed64Message) UnmarshalVTUnsafe

func (m *Sfixed64Message) UnmarshalVTUnsafe(dAtA []byte) error

type Sint32Message

type Sint32Message struct {
	RequiredField *int32  `protobuf:"zigzag32,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *int32  `protobuf:"zigzag32,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []int32 `protobuf:"zigzag32,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []int32 `protobuf:"zigzag32,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Sint32Message) CloneMessageVT

func (m *Sint32Message) CloneMessageVT() proto.Message

func (*Sint32Message) CloneVT

func (m *Sint32Message) CloneVT() *Sint32Message

func (*Sint32Message) Descriptor deprecated

func (*Sint32Message) Descriptor() ([]byte, []int)

Deprecated: Use Sint32Message.ProtoReflect.Descriptor instead.

func (*Sint32Message) EqualMessageVT

func (this *Sint32Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Sint32Message) EqualVT

func (this *Sint32Message) EqualVT(that *Sint32Message) bool

func (*Sint32Message) GetOptionalField

func (x *Sint32Message) GetOptionalField() int32

func (*Sint32Message) GetPackedField

func (x *Sint32Message) GetPackedField() []int32

func (*Sint32Message) GetRepeatedField

func (x *Sint32Message) GetRepeatedField() []int32

func (*Sint32Message) GetRequiredField

func (x *Sint32Message) GetRequiredField() int32

func (*Sint32Message) MarshalToSizedBufferVT

func (m *Sint32Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Sint32Message) MarshalToSizedBufferVTStrict

func (m *Sint32Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Sint32Message) MarshalToVT

func (m *Sint32Message) MarshalToVT(dAtA []byte) (int, error)

func (*Sint32Message) MarshalToVTStrict

func (m *Sint32Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Sint32Message) MarshalVT

func (m *Sint32Message) MarshalVT() (dAtA []byte, err error)

func (*Sint32Message) MarshalVTStrict

func (m *Sint32Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Sint32Message) ProtoMessage

func (*Sint32Message) ProtoMessage()

func (*Sint32Message) ProtoReflect

func (x *Sint32Message) ProtoReflect() protoreflect.Message

func (*Sint32Message) Reset

func (x *Sint32Message) Reset()

func (*Sint32Message) SizeVT

func (m *Sint32Message) SizeVT() (n int)

func (*Sint32Message) String

func (x *Sint32Message) String() string

func (*Sint32Message) UnmarshalVT

func (m *Sint32Message) UnmarshalVT(dAtA []byte) error

func (*Sint32Message) UnmarshalVTUnsafe

func (m *Sint32Message) UnmarshalVTUnsafe(dAtA []byte) error

type Sint64Message

type Sint64Message struct {
	RequiredField *int64  `protobuf:"zigzag64,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *int64  `protobuf:"zigzag64,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []int64 `protobuf:"zigzag64,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []int64 `protobuf:"zigzag64,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Sint64Message) CloneMessageVT

func (m *Sint64Message) CloneMessageVT() proto.Message

func (*Sint64Message) CloneVT

func (m *Sint64Message) CloneVT() *Sint64Message

func (*Sint64Message) Descriptor deprecated

func (*Sint64Message) Descriptor() ([]byte, []int)

Deprecated: Use Sint64Message.ProtoReflect.Descriptor instead.

func (*Sint64Message) EqualMessageVT

func (this *Sint64Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Sint64Message) EqualVT

func (this *Sint64Message) EqualVT(that *Sint64Message) bool

func (*Sint64Message) GetOptionalField

func (x *Sint64Message) GetOptionalField() int64

func (*Sint64Message) GetPackedField

func (x *Sint64Message) GetPackedField() []int64

func (*Sint64Message) GetRepeatedField

func (x *Sint64Message) GetRepeatedField() []int64

func (*Sint64Message) GetRequiredField

func (x *Sint64Message) GetRequiredField() int64

func (*Sint64Message) MarshalToSizedBufferVT

func (m *Sint64Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Sint64Message) MarshalToSizedBufferVTStrict

func (m *Sint64Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Sint64Message) MarshalToVT

func (m *Sint64Message) MarshalToVT(dAtA []byte) (int, error)

func (*Sint64Message) MarshalToVTStrict

func (m *Sint64Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Sint64Message) MarshalVT

func (m *Sint64Message) MarshalVT() (dAtA []byte, err error)

func (*Sint64Message) MarshalVTStrict

func (m *Sint64Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Sint64Message) ProtoMessage

func (*Sint64Message) ProtoMessage()

func (*Sint64Message) ProtoReflect

func (x *Sint64Message) ProtoReflect() protoreflect.Message

func (*Sint64Message) Reset

func (x *Sint64Message) Reset()

func (*Sint64Message) SizeVT

func (m *Sint64Message) SizeVT() (n int)

func (*Sint64Message) String

func (x *Sint64Message) String() string

func (*Sint64Message) UnmarshalVT

func (m *Sint64Message) UnmarshalVT(dAtA []byte) error

func (*Sint64Message) UnmarshalVTUnsafe

func (m *Sint64Message) UnmarshalVTUnsafe(dAtA []byte) error

type StringMessage

type StringMessage struct {
	RequiredField *string  `protobuf:"bytes,1,req,name=required_field,json=requiredField,def=req" json:"required_field,omitempty"`
	OptionalField *string  `protobuf:"bytes,2,opt,name=optional_field,json=optionalField,def=opt" json:"optional_field,omitempty"`
	RepeatedField []string `protobuf:"bytes,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	// contains filtered or unexported fields
}

func (*StringMessage) CloneMessageVT

func (m *StringMessage) CloneMessageVT() proto.Message

func (*StringMessage) CloneVT

func (m *StringMessage) CloneVT() *StringMessage

func (*StringMessage) Descriptor deprecated

func (*StringMessage) Descriptor() ([]byte, []int)

Deprecated: Use StringMessage.ProtoReflect.Descriptor instead.

func (*StringMessage) EqualMessageVT

func (this *StringMessage) EqualMessageVT(thatMsg proto.Message) bool

func (*StringMessage) EqualVT

func (this *StringMessage) EqualVT(that *StringMessage) bool

func (*StringMessage) GetOptionalField

func (x *StringMessage) GetOptionalField() string

func (*StringMessage) GetRepeatedField

func (x *StringMessage) GetRepeatedField() []string

func (*StringMessage) GetRequiredField

func (x *StringMessage) GetRequiredField() string

func (*StringMessage) MarshalToSizedBufferVT

func (m *StringMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*StringMessage) MarshalToSizedBufferVTStrict

func (m *StringMessage) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*StringMessage) MarshalToVT

func (m *StringMessage) MarshalToVT(dAtA []byte) (int, error)

func (*StringMessage) MarshalToVTStrict

func (m *StringMessage) MarshalToVTStrict(dAtA []byte) (int, error)

func (*StringMessage) MarshalVT

func (m *StringMessage) MarshalVT() (dAtA []byte, err error)

func (*StringMessage) MarshalVTStrict

func (m *StringMessage) MarshalVTStrict() (dAtA []byte, err error)

func (*StringMessage) ProtoMessage

func (*StringMessage) ProtoMessage()

func (*StringMessage) ProtoReflect

func (x *StringMessage) ProtoReflect() protoreflect.Message

func (*StringMessage) Reset

func (x *StringMessage) Reset()

func (*StringMessage) SizeVT

func (m *StringMessage) SizeVT() (n int)

func (*StringMessage) String

func (x *StringMessage) String() string

func (*StringMessage) UnmarshalVT

func (m *StringMessage) UnmarshalVT(dAtA []byte) error

func (*StringMessage) UnmarshalVTUnsafe

func (m *StringMessage) UnmarshalVTUnsafe(dAtA []byte) error

type Uint32Message

type Uint32Message struct {
	RequiredField *uint32  `protobuf:"varint,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *uint32  `protobuf:"varint,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []uint32 `protobuf:"varint,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []uint32 `protobuf:"varint,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Uint32Message) CloneMessageVT

func (m *Uint32Message) CloneMessageVT() proto.Message

func (*Uint32Message) CloneVT

func (m *Uint32Message) CloneVT() *Uint32Message

func (*Uint32Message) Descriptor deprecated

func (*Uint32Message) Descriptor() ([]byte, []int)

Deprecated: Use Uint32Message.ProtoReflect.Descriptor instead.

func (*Uint32Message) EqualMessageVT

func (this *Uint32Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Uint32Message) EqualVT

func (this *Uint32Message) EqualVT(that *Uint32Message) bool

func (*Uint32Message) GetOptionalField

func (x *Uint32Message) GetOptionalField() uint32

func (*Uint32Message) GetPackedField

func (x *Uint32Message) GetPackedField() []uint32

func (*Uint32Message) GetRepeatedField

func (x *Uint32Message) GetRepeatedField() []uint32

func (*Uint32Message) GetRequiredField

func (x *Uint32Message) GetRequiredField() uint32

func (*Uint32Message) MarshalToSizedBufferVT

func (m *Uint32Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Uint32Message) MarshalToSizedBufferVTStrict

func (m *Uint32Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Uint32Message) MarshalToVT

func (m *Uint32Message) MarshalToVT(dAtA []byte) (int, error)

func (*Uint32Message) MarshalToVTStrict

func (m *Uint32Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Uint32Message) MarshalVT

func (m *Uint32Message) MarshalVT() (dAtA []byte, err error)

func (*Uint32Message) MarshalVTStrict

func (m *Uint32Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Uint32Message) ProtoMessage

func (*Uint32Message) ProtoMessage()

func (*Uint32Message) ProtoReflect

func (x *Uint32Message) ProtoReflect() protoreflect.Message

func (*Uint32Message) Reset

func (x *Uint32Message) Reset()

func (*Uint32Message) SizeVT

func (m *Uint32Message) SizeVT() (n int)

func (*Uint32Message) String

func (x *Uint32Message) String() string

func (*Uint32Message) UnmarshalVT

func (m *Uint32Message) UnmarshalVT(dAtA []byte) error

func (*Uint32Message) UnmarshalVTUnsafe

func (m *Uint32Message) UnmarshalVTUnsafe(dAtA []byte) error

type Uint64Message

type Uint64Message struct {
	RequiredField *uint64  `protobuf:"varint,1,req,name=required_field,json=requiredField,def=1" json:"required_field,omitempty"`
	OptionalField *uint64  `protobuf:"varint,2,opt,name=optional_field,json=optionalField,def=2" json:"optional_field,omitempty"`
	RepeatedField []uint64 `protobuf:"varint,3,rep,name=repeated_field,json=repeatedField" json:"repeated_field,omitempty"`
	PackedField   []uint64 `protobuf:"varint,4,rep,packed,name=packed_field,json=packedField" json:"packed_field,omitempty"`
	// contains filtered or unexported fields
}

func (*Uint64Message) CloneMessageVT

func (m *Uint64Message) CloneMessageVT() proto.Message

func (*Uint64Message) CloneVT

func (m *Uint64Message) CloneVT() *Uint64Message

func (*Uint64Message) Descriptor deprecated

func (*Uint64Message) Descriptor() ([]byte, []int)

Deprecated: Use Uint64Message.ProtoReflect.Descriptor instead.

func (*Uint64Message) EqualMessageVT

func (this *Uint64Message) EqualMessageVT(thatMsg proto.Message) bool

func (*Uint64Message) EqualVT

func (this *Uint64Message) EqualVT(that *Uint64Message) bool

func (*Uint64Message) GetOptionalField

func (x *Uint64Message) GetOptionalField() uint64

func (*Uint64Message) GetPackedField

func (x *Uint64Message) GetPackedField() []uint64

func (*Uint64Message) GetRepeatedField

func (x *Uint64Message) GetRepeatedField() []uint64

func (*Uint64Message) GetRequiredField

func (x *Uint64Message) GetRequiredField() uint64

func (*Uint64Message) MarshalToSizedBufferVT

func (m *Uint64Message) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Uint64Message) MarshalToSizedBufferVTStrict

func (m *Uint64Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Uint64Message) MarshalToVT

func (m *Uint64Message) MarshalToVT(dAtA []byte) (int, error)

func (*Uint64Message) MarshalToVTStrict

func (m *Uint64Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Uint64Message) MarshalVT

func (m *Uint64Message) MarshalVT() (dAtA []byte, err error)

func (*Uint64Message) MarshalVTStrict

func (m *Uint64Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Uint64Message) ProtoMessage

func (*Uint64Message) ProtoMessage()

func (*Uint64Message) ProtoReflect

func (x *Uint64Message) ProtoReflect() protoreflect.Message

func (*Uint64Message) Reset

func (x *Uint64Message) Reset()

func (*Uint64Message) SizeVT

func (m *Uint64Message) SizeVT() (n int)

func (*Uint64Message) String

func (x *Uint64Message) String() string

func (*Uint64Message) UnmarshalVT

func (m *Uint64Message) UnmarshalVT(dAtA []byte) error

func (*Uint64Message) UnmarshalVTUnsafe

func (m *Uint64Message) UnmarshalVTUnsafe(dAtA []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL