descriptorpb

package
v1.0.32 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: MIT Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Default_MethodDescriptorProto_ClientStreaming = bool(false)
	Default_MethodDescriptorProto_ServerStreaming = bool(false)
)

Default values for MethodDescriptorProto fields.

View Source
const (
	Default_FileOptions_JavaMultipleFiles   = bool(false)
	Default_FileOptions_JavaStringCheckUtf8 = bool(false)
	Default_FileOptions_OptimizeFor         = FileOptions_SPEED
	Default_FileOptions_CcGenericServices   = bool(false)
	Default_FileOptions_JavaGenericServices = bool(false)
	Default_FileOptions_PyGenericServices   = bool(false)
	Default_FileOptions_PhpGenericServices  = bool(false)
	Default_FileOptions_Deprecated          = bool(false)
	Default_FileOptions_CcEnableArenas      = bool(true)
)

Default values for FileOptions fields.

View Source
const (
	Default_MessageOptions_MessageSetWireFormat         = bool(false)
	Default_MessageOptions_NoStandardDescriptorAccessor = bool(false)
	Default_MessageOptions_Deprecated                   = bool(false)
)

Default values for MessageOptions fields.

View Source
const (
	Default_FieldOptions_Ctype          = FieldOptions_STRING
	Default_FieldOptions_Jstype         = FieldOptions_JS_NORMAL
	Default_FieldOptions_Lazy           = bool(false)
	Default_FieldOptions_UnverifiedLazy = bool(false)
	Default_FieldOptions_Deprecated     = bool(false)
	Default_FieldOptions_Weak           = bool(false)
)

Default values for FieldOptions fields.

View Source
const (
	Default_MethodOptions_Deprecated       = bool(false)
	Default_MethodOptions_IdempotencyLevel = MethodOptions_IDEMPOTENCY_UNKNOWN
)

Default values for MethodOptions fields.

View Source
const (
	Default_EnumOptions_Deprecated = bool(false)
)

Default values for EnumOptions fields.

View Source
const (
	Default_EnumValueOptions_Deprecated = bool(false)
)

Default values for EnumValueOptions fields.

View Source
const (
	Default_ServiceOptions_Deprecated = bool(false)
)

Default values for ServiceOptions fields.

Variables

View Source
var (
	FieldDescriptorProto_Type_name = map[int32]string{
		1:  "TYPE_DOUBLE",
		2:  "TYPE_FLOAT",
		3:  "TYPE_INT64",
		4:  "TYPE_UINT64",
		5:  "TYPE_INT32",
		6:  "TYPE_FIXED64",
		7:  "TYPE_FIXED32",
		8:  "TYPE_BOOL",
		9:  "TYPE_STRING",
		10: "TYPE_GROUP",
		11: "TYPE_MESSAGE",
		12: "TYPE_BYTES",
		13: "TYPE_UINT32",
		14: "TYPE_ENUM",
		15: "TYPE_SFIXED32",
		16: "TYPE_SFIXED64",
		17: "TYPE_SINT32",
		18: "TYPE_SINT64",
	}
	FieldDescriptorProto_Type_value = map[string]int32{
		"TYPE_DOUBLE":   1,
		"TYPE_FLOAT":    2,
		"TYPE_INT64":    3,
		"TYPE_UINT64":   4,
		"TYPE_INT32":    5,
		"TYPE_FIXED64":  6,
		"TYPE_FIXED32":  7,
		"TYPE_BOOL":     8,
		"TYPE_STRING":   9,
		"TYPE_GROUP":    10,
		"TYPE_MESSAGE":  11,
		"TYPE_BYTES":    12,
		"TYPE_UINT32":   13,
		"TYPE_ENUM":     14,
		"TYPE_SFIXED32": 15,
		"TYPE_SFIXED64": 16,
		"TYPE_SINT32":   17,
		"TYPE_SINT64":   18,
	}
)

Enum value maps for FieldDescriptorProto_Type.

View Source
var (
	FieldDescriptorProto_Label_name = map[int32]string{
		1: "LABEL_OPTIONAL",
		2: "LABEL_REQUIRED",
		3: "LABEL_REPEATED",
	}
	FieldDescriptorProto_Label_value = map[string]int32{
		"LABEL_OPTIONAL": 1,
		"LABEL_REQUIRED": 2,
		"LABEL_REPEATED": 3,
	}
)

Enum value maps for FieldDescriptorProto_Label.

View Source
var (
	FileOptions_OptimizeMode_name = map[int32]string{
		1: "SPEED",
		2: "CODE_SIZE",
		3: "LITE_RUNTIME",
	}
	FileOptions_OptimizeMode_value = map[string]int32{
		"SPEED":        1,
		"CODE_SIZE":    2,
		"LITE_RUNTIME": 3,
	}
)

Enum value maps for FileOptions_OptimizeMode.

View Source
var (
	FieldOptions_CType_name = map[int32]string{
		0: "STRING",
		1: "CORD",
		2: "STRING_PIECE",
	}
	FieldOptions_CType_value = map[string]int32{
		"STRING":       0,
		"CORD":         1,
		"STRING_PIECE": 2,
	}
)

Enum value maps for FieldOptions_CType.

View Source
var (
	FieldOptions_JSType_name = map[int32]string{
		0: "JS_NORMAL",
		1: "JS_STRING",
		2: "JS_NUMBER",
	}
	FieldOptions_JSType_value = map[string]int32{
		"JS_NORMAL": 0,
		"JS_STRING": 1,
		"JS_NUMBER": 2,
	}
)

Enum value maps for FieldOptions_JSType.

View Source
var (
	MethodOptions_IdempotencyLevel_name = map[int32]string{
		0: "IDEMPOTENCY_UNKNOWN",
		1: "NO_SIDE_EFFECTS",
		2: "IDEMPOTENT",
	}
	MethodOptions_IdempotencyLevel_value = map[string]int32{
		"IDEMPOTENCY_UNKNOWN": 0,
		"NO_SIDE_EFFECTS":     1,
		"IDEMPOTENT":          2,
	}
)

Enum value maps for MethodOptions_IdempotencyLevel.

View Source
var File_descriptor_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type DescriptorProto

type DescriptorProto struct {
	Name           *string                           `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	Field          []*FieldDescriptorProto           `protobuf:"bytes,2,rep,name=field" json:"field,omitempty"`
	Extension      []*FieldDescriptorProto           `protobuf:"bytes,6,rep,name=extension" json:"extension,omitempty"`
	NestedType     []*DescriptorProto                `protobuf:"bytes,3,rep,name=nested_type,json=nestedType" json:"nested_type,omitempty"`
	EnumType       []*EnumDescriptorProto            `protobuf:"bytes,4,rep,name=enum_type,json=enumType" json:"enum_type,omitempty"`
	ExtensionRange []*DescriptorProto_ExtensionRange `protobuf:"bytes,5,rep,name=extension_range,json=extensionRange" json:"extension_range,omitempty"`
	OneofDecl      []*OneofDescriptorProto           `protobuf:"bytes,8,rep,name=oneof_decl,json=oneofDecl" json:"oneof_decl,omitempty"`
	Options        *MessageOptions                   `protobuf:"bytes,7,opt,name=options" json:"options,omitempty"`
	ReservedRange  []*DescriptorProto_ReservedRange  `protobuf:"bytes,9,rep,name=reserved_range,json=reservedRange" json:"reserved_range,omitempty"`
	// Reserved field names, which may not be used by fields in the same message.
	// A given name may only be reserved once.
	ReservedName []string `protobuf:"bytes,10,rep,name=reserved_name,json=reservedName" json:"reserved_name,omitempty"`
	// contains filtered or unexported fields
}

Describes a message type.

func (*DescriptorProto) Descriptor deprecated

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

Deprecated: Use DescriptorProto.ProtoReflect.Descriptor instead.

func (*DescriptorProto) GetEnumType

func (x *DescriptorProto) GetEnumType() []*EnumDescriptorProto

func (*DescriptorProto) GetExtension

func (x *DescriptorProto) GetExtension() []*FieldDescriptorProto

func (*DescriptorProto) GetExtensionRange

func (x *DescriptorProto) GetExtensionRange() []*DescriptorProto_ExtensionRange

func (*DescriptorProto) GetField

func (x *DescriptorProto) GetField() []*FieldDescriptorProto

func (*DescriptorProto) GetName

func (x *DescriptorProto) GetName() string

func (*DescriptorProto) GetNestedType

func (x *DescriptorProto) GetNestedType() []*DescriptorProto

func (*DescriptorProto) GetOneofDecl

func (x *DescriptorProto) GetOneofDecl() []*OneofDescriptorProto

func (*DescriptorProto) GetOptions

func (x *DescriptorProto) GetOptions() *MessageOptions

func (*DescriptorProto) GetReservedName

func (x *DescriptorProto) GetReservedName() []string

func (*DescriptorProto) GetReservedRange

func (x *DescriptorProto) GetReservedRange() []*DescriptorProto_ReservedRange

func (*DescriptorProto) ProtoMessage

func (*DescriptorProto) ProtoMessage()

func (*DescriptorProto) ProtoReflect

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

func (*DescriptorProto) Reset

func (x *DescriptorProto) Reset()

func (*DescriptorProto) String

func (x *DescriptorProto) String() string

func (*DescriptorProto) Validate

func (m *DescriptorProto) Validate() error

Validate checks the field values on DescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DescriptorProto) ValidateAll

func (m *DescriptorProto) ValidateAll() error

ValidateAll checks the field values on DescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DescriptorProtoMultiError, or nil if none found.

type DescriptorProtoMultiError

type DescriptorProtoMultiError []error

DescriptorProtoMultiError is an error wrapping multiple validation errors returned by DescriptorProto.ValidateAll() if the designated constraints aren't met.

func (DescriptorProtoMultiError) AllErrors

func (m DescriptorProtoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DescriptorProtoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DescriptorProtoValidationError

type DescriptorProtoValidationError struct {
	// contains filtered or unexported fields
}

DescriptorProtoValidationError is the validation error returned by DescriptorProto.Validate if the designated constraints aren't met.

func (DescriptorProtoValidationError) Cause

Cause function returns cause value.

func (DescriptorProtoValidationError) Error

Error satisfies the builtin error interface

func (DescriptorProtoValidationError) ErrorName

func (e DescriptorProtoValidationError) ErrorName() string

ErrorName returns error name.

func (DescriptorProtoValidationError) Field

Field function returns field value.

func (DescriptorProtoValidationError) Key

Key function returns key value.

func (DescriptorProtoValidationError) Reason

Reason function returns reason value.

type DescriptorProto_ExtensionRange

type DescriptorProto_ExtensionRange struct {
	Start   *int32                 `protobuf:"varint,1,opt,name=start" json:"start,omitempty"` // Inclusive.
	End     *int32                 `protobuf:"varint,2,opt,name=end" json:"end,omitempty"`     // Exclusive.
	Options *ExtensionRangeOptions `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"`
	// contains filtered or unexported fields
}

func (*DescriptorProto_ExtensionRange) Descriptor deprecated

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

Deprecated: Use DescriptorProto_ExtensionRange.ProtoReflect.Descriptor instead.

func (*DescriptorProto_ExtensionRange) GetEnd

func (*DescriptorProto_ExtensionRange) GetOptions

func (*DescriptorProto_ExtensionRange) GetStart

func (x *DescriptorProto_ExtensionRange) GetStart() int32

func (*DescriptorProto_ExtensionRange) ProtoMessage

func (*DescriptorProto_ExtensionRange) ProtoMessage()

func (*DescriptorProto_ExtensionRange) ProtoReflect

func (*DescriptorProto_ExtensionRange) Reset

func (x *DescriptorProto_ExtensionRange) Reset()

func (*DescriptorProto_ExtensionRange) String

func (*DescriptorProto_ExtensionRange) Validate

func (m *DescriptorProto_ExtensionRange) Validate() error

Validate checks the field values on DescriptorProto_ExtensionRange with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DescriptorProto_ExtensionRange) ValidateAll

func (m *DescriptorProto_ExtensionRange) ValidateAll() error

ValidateAll checks the field values on DescriptorProto_ExtensionRange with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DescriptorProto_ExtensionRangeMultiError, or nil if none found.

type DescriptorProto_ExtensionRangeMultiError

type DescriptorProto_ExtensionRangeMultiError []error

DescriptorProto_ExtensionRangeMultiError is an error wrapping multiple validation errors returned by DescriptorProto_ExtensionRange.ValidateAll() if the designated constraints aren't met.

func (DescriptorProto_ExtensionRangeMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (DescriptorProto_ExtensionRangeMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DescriptorProto_ExtensionRangeValidationError

type DescriptorProto_ExtensionRangeValidationError struct {
	// contains filtered or unexported fields
}

DescriptorProto_ExtensionRangeValidationError is the validation error returned by DescriptorProto_ExtensionRange.Validate if the designated constraints aren't met.

func (DescriptorProto_ExtensionRangeValidationError) Cause

Cause function returns cause value.

func (DescriptorProto_ExtensionRangeValidationError) Error

Error satisfies the builtin error interface

func (DescriptorProto_ExtensionRangeValidationError) ErrorName

ErrorName returns error name.

func (DescriptorProto_ExtensionRangeValidationError) Field

Field function returns field value.

func (DescriptorProto_ExtensionRangeValidationError) Key

Key function returns key value.

func (DescriptorProto_ExtensionRangeValidationError) Reason

Reason function returns reason value.

type DescriptorProto_ReservedRange

type DescriptorProto_ReservedRange struct {
	Start *int32 `protobuf:"varint,1,opt,name=start" json:"start,omitempty"` // Inclusive.
	End   *int32 `protobuf:"varint,2,opt,name=end" json:"end,omitempty"`     // Exclusive.
	// contains filtered or unexported fields
}

Range of reserved tag numbers. Reserved tag numbers may not be used by fields or extension ranges in the same message. Reserved ranges may not overlap.

func (*DescriptorProto_ReservedRange) Descriptor deprecated

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

Deprecated: Use DescriptorProto_ReservedRange.ProtoReflect.Descriptor instead.

func (*DescriptorProto_ReservedRange) GetEnd

func (*DescriptorProto_ReservedRange) GetStart

func (x *DescriptorProto_ReservedRange) GetStart() int32

func (*DescriptorProto_ReservedRange) ProtoMessage

func (*DescriptorProto_ReservedRange) ProtoMessage()

func (*DescriptorProto_ReservedRange) ProtoReflect

func (*DescriptorProto_ReservedRange) Reset

func (x *DescriptorProto_ReservedRange) Reset()

func (*DescriptorProto_ReservedRange) String

func (*DescriptorProto_ReservedRange) Validate

func (m *DescriptorProto_ReservedRange) Validate() error

Validate checks the field values on DescriptorProto_ReservedRange with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DescriptorProto_ReservedRange) ValidateAll

func (m *DescriptorProto_ReservedRange) ValidateAll() error

ValidateAll checks the field values on DescriptorProto_ReservedRange with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DescriptorProto_ReservedRangeMultiError, or nil if none found.

type DescriptorProto_ReservedRangeMultiError

type DescriptorProto_ReservedRangeMultiError []error

DescriptorProto_ReservedRangeMultiError is an error wrapping multiple validation errors returned by DescriptorProto_ReservedRange.ValidateAll() if the designated constraints aren't met.

func (DescriptorProto_ReservedRangeMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (DescriptorProto_ReservedRangeMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DescriptorProto_ReservedRangeValidationError

type DescriptorProto_ReservedRangeValidationError struct {
	// contains filtered or unexported fields
}

DescriptorProto_ReservedRangeValidationError is the validation error returned by DescriptorProto_ReservedRange.Validate if the designated constraints aren't met.

func (DescriptorProto_ReservedRangeValidationError) Cause

Cause function returns cause value.

func (DescriptorProto_ReservedRangeValidationError) Error

Error satisfies the builtin error interface

func (DescriptorProto_ReservedRangeValidationError) ErrorName

ErrorName returns error name.

func (DescriptorProto_ReservedRangeValidationError) Field

Field function returns field value.

func (DescriptorProto_ReservedRangeValidationError) Key

Key function returns key value.

func (DescriptorProto_ReservedRangeValidationError) Reason

Reason function returns reason value.

type EnumDescriptorProto

type EnumDescriptorProto struct {
	Name    *string                     `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	Value   []*EnumValueDescriptorProto `protobuf:"bytes,2,rep,name=value" json:"value,omitempty"`
	Options *EnumOptions                `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"`
	// Range of reserved numeric values. Reserved numeric values may not be used
	// by enum values in the same enum declaration. Reserved ranges may not
	// overlap.
	ReservedRange []*EnumDescriptorProto_EnumReservedRange `protobuf:"bytes,4,rep,name=reserved_range,json=reservedRange" json:"reserved_range,omitempty"`
	// Reserved enum value names, which may not be reused. A given name may only
	// be reserved once.
	ReservedName []string `protobuf:"bytes,5,rep,name=reserved_name,json=reservedName" json:"reserved_name,omitempty"`
	// contains filtered or unexported fields
}

Describes an enum type.

func (*EnumDescriptorProto) Descriptor deprecated

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

Deprecated: Use EnumDescriptorProto.ProtoReflect.Descriptor instead.

func (*EnumDescriptorProto) GetName

func (x *EnumDescriptorProto) GetName() string

func (*EnumDescriptorProto) GetOptions

func (x *EnumDescriptorProto) GetOptions() *EnumOptions

func (*EnumDescriptorProto) GetReservedName

func (x *EnumDescriptorProto) GetReservedName() []string

func (*EnumDescriptorProto) GetReservedRange

func (*EnumDescriptorProto) GetValue

func (*EnumDescriptorProto) ProtoMessage

func (*EnumDescriptorProto) ProtoMessage()

func (*EnumDescriptorProto) ProtoReflect

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

func (*EnumDescriptorProto) Reset

func (x *EnumDescriptorProto) Reset()

func (*EnumDescriptorProto) String

func (x *EnumDescriptorProto) String() string

func (*EnumDescriptorProto) Validate

func (m *EnumDescriptorProto) Validate() error

Validate checks the field values on EnumDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EnumDescriptorProto) ValidateAll

func (m *EnumDescriptorProto) ValidateAll() error

ValidateAll checks the field values on EnumDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EnumDescriptorProtoMultiError, or nil if none found.

type EnumDescriptorProtoMultiError

type EnumDescriptorProtoMultiError []error

EnumDescriptorProtoMultiError is an error wrapping multiple validation errors returned by EnumDescriptorProto.ValidateAll() if the designated constraints aren't met.

func (EnumDescriptorProtoMultiError) AllErrors

func (m EnumDescriptorProtoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnumDescriptorProtoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type EnumDescriptorProtoValidationError

type EnumDescriptorProtoValidationError struct {
	// contains filtered or unexported fields
}

EnumDescriptorProtoValidationError is the validation error returned by EnumDescriptorProto.Validate if the designated constraints aren't met.

func (EnumDescriptorProtoValidationError) Cause

Cause function returns cause value.

func (EnumDescriptorProtoValidationError) Error

Error satisfies the builtin error interface

func (EnumDescriptorProtoValidationError) ErrorName

ErrorName returns error name.

func (EnumDescriptorProtoValidationError) Field

Field function returns field value.

func (EnumDescriptorProtoValidationError) Key

Key function returns key value.

func (EnumDescriptorProtoValidationError) Reason

Reason function returns reason value.

type EnumDescriptorProto_EnumReservedRange

type EnumDescriptorProto_EnumReservedRange struct {
	Start *int32 `protobuf:"varint,1,opt,name=start" json:"start,omitempty"` // Inclusive.
	End   *int32 `protobuf:"varint,2,opt,name=end" json:"end,omitempty"`     // Inclusive.
	// contains filtered or unexported fields
}

Range of reserved numeric values. Reserved values may not be used by entries in the same enum. Reserved ranges may not overlap.

Note that this is distinct from DescriptorProto.ReservedRange in that it is inclusive such that it can appropriately represent the entire int32 domain.

func (*EnumDescriptorProto_EnumReservedRange) Descriptor deprecated

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

Deprecated: Use EnumDescriptorProto_EnumReservedRange.ProtoReflect.Descriptor instead.

func (*EnumDescriptorProto_EnumReservedRange) GetEnd

func (*EnumDescriptorProto_EnumReservedRange) GetStart

func (*EnumDescriptorProto_EnumReservedRange) ProtoMessage

func (*EnumDescriptorProto_EnumReservedRange) ProtoMessage()

func (*EnumDescriptorProto_EnumReservedRange) ProtoReflect

func (*EnumDescriptorProto_EnumReservedRange) Reset

func (*EnumDescriptorProto_EnumReservedRange) String

func (*EnumDescriptorProto_EnumReservedRange) Validate

Validate checks the field values on EnumDescriptorProto_EnumReservedRange with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EnumDescriptorProto_EnumReservedRange) ValidateAll

ValidateAll checks the field values on EnumDescriptorProto_EnumReservedRange with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EnumDescriptorProto_EnumReservedRangeMultiError, or nil if none found.

type EnumDescriptorProto_EnumReservedRangeMultiError

type EnumDescriptorProto_EnumReservedRangeMultiError []error

EnumDescriptorProto_EnumReservedRangeMultiError is an error wrapping multiple validation errors returned by EnumDescriptorProto_EnumReservedRange.ValidateAll() if the designated constraints aren't met.

func (EnumDescriptorProto_EnumReservedRangeMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (EnumDescriptorProto_EnumReservedRangeMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type EnumDescriptorProto_EnumReservedRangeValidationError

type EnumDescriptorProto_EnumReservedRangeValidationError struct {
	// contains filtered or unexported fields
}

EnumDescriptorProto_EnumReservedRangeValidationError is the validation error returned by EnumDescriptorProto_EnumReservedRange.Validate if the designated constraints aren't met.

func (EnumDescriptorProto_EnumReservedRangeValidationError) Cause

Cause function returns cause value.

func (EnumDescriptorProto_EnumReservedRangeValidationError) Error

Error satisfies the builtin error interface

func (EnumDescriptorProto_EnumReservedRangeValidationError) ErrorName

ErrorName returns error name.

func (EnumDescriptorProto_EnumReservedRangeValidationError) Field

Field function returns field value.

func (EnumDescriptorProto_EnumReservedRangeValidationError) Key

Key function returns key value.

func (EnumDescriptorProto_EnumReservedRangeValidationError) Reason

Reason function returns reason value.

type EnumOptions

type EnumOptions struct {

	// Set this option to true to allow mapping different tag names to the same
	// value.
	AllowAlias *bool `protobuf:"varint,2,opt,name=allow_alias,json=allowAlias" json:"allow_alias,omitempty"`
	// Is this enum deprecated?
	// Depending on the target platform, this can emit Deprecated annotations
	// for the enum, or it will be completely ignored; in the very least, this
	// is a formalization for deprecating enums.
	Deprecated *bool `protobuf:"varint,3,opt,name=deprecated,def=0" json:"deprecated,omitempty"`
	// The parser stores options it doesn't recognize here. See above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*EnumOptions) Descriptor deprecated

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

Deprecated: Use EnumOptions.ProtoReflect.Descriptor instead.

func (*EnumOptions) GetAllowAlias

func (x *EnumOptions) GetAllowAlias() bool

func (*EnumOptions) GetDeprecated

func (x *EnumOptions) GetDeprecated() bool

func (*EnumOptions) GetUninterpretedOption

func (x *EnumOptions) GetUninterpretedOption() []*UninterpretedOption

func (*EnumOptions) ProtoMessage

func (*EnumOptions) ProtoMessage()

func (*EnumOptions) ProtoReflect

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

func (*EnumOptions) Reset

func (x *EnumOptions) Reset()

func (*EnumOptions) String

func (x *EnumOptions) String() string

func (*EnumOptions) Validate

func (m *EnumOptions) Validate() error

Validate checks the field values on EnumOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EnumOptions) ValidateAll

func (m *EnumOptions) ValidateAll() error

ValidateAll checks the field values on EnumOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EnumOptionsMultiError, or nil if none found.

type EnumOptionsMultiError

type EnumOptionsMultiError []error

EnumOptionsMultiError is an error wrapping multiple validation errors returned by EnumOptions.ValidateAll() if the designated constraints aren't met.

func (EnumOptionsMultiError) AllErrors

func (m EnumOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnumOptionsMultiError) Error

func (m EnumOptionsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type EnumOptionsValidationError

type EnumOptionsValidationError struct {
	// contains filtered or unexported fields
}

EnumOptionsValidationError is the validation error returned by EnumOptions.Validate if the designated constraints aren't met.

func (EnumOptionsValidationError) Cause

Cause function returns cause value.

func (EnumOptionsValidationError) Error

Error satisfies the builtin error interface

func (EnumOptionsValidationError) ErrorName

func (e EnumOptionsValidationError) ErrorName() string

ErrorName returns error name.

func (EnumOptionsValidationError) Field

Field function returns field value.

func (EnumOptionsValidationError) Key

Key function returns key value.

func (EnumOptionsValidationError) Reason

Reason function returns reason value.

type EnumValueDescriptorProto

type EnumValueDescriptorProto struct {
	Name    *string           `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	Number  *int32            `protobuf:"varint,2,opt,name=number" json:"number,omitempty"`
	Options *EnumValueOptions `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"`
	// contains filtered or unexported fields
}

Describes a value within an enum.

func (*EnumValueDescriptorProto) Descriptor deprecated

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

Deprecated: Use EnumValueDescriptorProto.ProtoReflect.Descriptor instead.

func (*EnumValueDescriptorProto) GetName

func (x *EnumValueDescriptorProto) GetName() string

func (*EnumValueDescriptorProto) GetNumber

func (x *EnumValueDescriptorProto) GetNumber() int32

func (*EnumValueDescriptorProto) GetOptions

func (x *EnumValueDescriptorProto) GetOptions() *EnumValueOptions

func (*EnumValueDescriptorProto) ProtoMessage

func (*EnumValueDescriptorProto) ProtoMessage()

func (*EnumValueDescriptorProto) ProtoReflect

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

func (*EnumValueDescriptorProto) Reset

func (x *EnumValueDescriptorProto) Reset()

func (*EnumValueDescriptorProto) String

func (x *EnumValueDescriptorProto) String() string

func (*EnumValueDescriptorProto) Validate

func (m *EnumValueDescriptorProto) Validate() error

Validate checks the field values on EnumValueDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EnumValueDescriptorProto) ValidateAll

func (m *EnumValueDescriptorProto) ValidateAll() error

ValidateAll checks the field values on EnumValueDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EnumValueDescriptorProtoMultiError, or nil if none found.

type EnumValueDescriptorProtoMultiError

type EnumValueDescriptorProtoMultiError []error

EnumValueDescriptorProtoMultiError is an error wrapping multiple validation errors returned by EnumValueDescriptorProto.ValidateAll() if the designated constraints aren't met.

func (EnumValueDescriptorProtoMultiError) AllErrors

func (m EnumValueDescriptorProtoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnumValueDescriptorProtoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type EnumValueDescriptorProtoValidationError

type EnumValueDescriptorProtoValidationError struct {
	// contains filtered or unexported fields
}

EnumValueDescriptorProtoValidationError is the validation error returned by EnumValueDescriptorProto.Validate if the designated constraints aren't met.

func (EnumValueDescriptorProtoValidationError) Cause

Cause function returns cause value.

func (EnumValueDescriptorProtoValidationError) Error

Error satisfies the builtin error interface

func (EnumValueDescriptorProtoValidationError) ErrorName

ErrorName returns error name.

func (EnumValueDescriptorProtoValidationError) Field

Field function returns field value.

func (EnumValueDescriptorProtoValidationError) Key

Key function returns key value.

func (EnumValueDescriptorProtoValidationError) Reason

Reason function returns reason value.

type EnumValueOptions

type EnumValueOptions struct {

	// Is this enum value deprecated?
	// Depending on the target platform, this can emit Deprecated annotations
	// for the enum value, or it will be completely ignored; in the very least,
	// this is a formalization for deprecating enum values.
	Deprecated *bool `protobuf:"varint,1,opt,name=deprecated,def=0" json:"deprecated,omitempty"`
	// The parser stores options it doesn't recognize here. See above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*EnumValueOptions) Descriptor deprecated

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

Deprecated: Use EnumValueOptions.ProtoReflect.Descriptor instead.

func (*EnumValueOptions) GetDeprecated

func (x *EnumValueOptions) GetDeprecated() bool

func (*EnumValueOptions) GetUninterpretedOption

func (x *EnumValueOptions) GetUninterpretedOption() []*UninterpretedOption

func (*EnumValueOptions) ProtoMessage

func (*EnumValueOptions) ProtoMessage()

func (*EnumValueOptions) ProtoReflect

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

func (*EnumValueOptions) Reset

func (x *EnumValueOptions) Reset()

func (*EnumValueOptions) String

func (x *EnumValueOptions) String() string

func (*EnumValueOptions) Validate

func (m *EnumValueOptions) Validate() error

Validate checks the field values on EnumValueOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*EnumValueOptions) ValidateAll

func (m *EnumValueOptions) ValidateAll() error

ValidateAll checks the field values on EnumValueOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EnumValueOptionsMultiError, or nil if none found.

type EnumValueOptionsMultiError

type EnumValueOptionsMultiError []error

EnumValueOptionsMultiError is an error wrapping multiple validation errors returned by EnumValueOptions.ValidateAll() if the designated constraints aren't met.

func (EnumValueOptionsMultiError) AllErrors

func (m EnumValueOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EnumValueOptionsMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type EnumValueOptionsValidationError

type EnumValueOptionsValidationError struct {
	// contains filtered or unexported fields
}

EnumValueOptionsValidationError is the validation error returned by EnumValueOptions.Validate if the designated constraints aren't met.

func (EnumValueOptionsValidationError) Cause

Cause function returns cause value.

func (EnumValueOptionsValidationError) Error

Error satisfies the builtin error interface

func (EnumValueOptionsValidationError) ErrorName

ErrorName returns error name.

func (EnumValueOptionsValidationError) Field

Field function returns field value.

func (EnumValueOptionsValidationError) Key

Key function returns key value.

func (EnumValueOptionsValidationError) Reason

Reason function returns reason value.

type ExtensionRangeOptions

type ExtensionRangeOptions struct {

	// The parser stores options it doesn't recognize here. See above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*ExtensionRangeOptions) Descriptor deprecated

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

Deprecated: Use ExtensionRangeOptions.ProtoReflect.Descriptor instead.

func (*ExtensionRangeOptions) GetUninterpretedOption

func (x *ExtensionRangeOptions) GetUninterpretedOption() []*UninterpretedOption

func (*ExtensionRangeOptions) ProtoMessage

func (*ExtensionRangeOptions) ProtoMessage()

func (*ExtensionRangeOptions) ProtoReflect

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

func (*ExtensionRangeOptions) Reset

func (x *ExtensionRangeOptions) Reset()

func (*ExtensionRangeOptions) String

func (x *ExtensionRangeOptions) String() string

func (*ExtensionRangeOptions) Validate

func (m *ExtensionRangeOptions) Validate() error

Validate checks the field values on ExtensionRangeOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ExtensionRangeOptions) ValidateAll

func (m *ExtensionRangeOptions) ValidateAll() error

ValidateAll checks the field values on ExtensionRangeOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ExtensionRangeOptionsMultiError, or nil if none found.

type ExtensionRangeOptionsMultiError

type ExtensionRangeOptionsMultiError []error

ExtensionRangeOptionsMultiError is an error wrapping multiple validation errors returned by ExtensionRangeOptions.ValidateAll() if the designated constraints aren't met.

func (ExtensionRangeOptionsMultiError) AllErrors

func (m ExtensionRangeOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ExtensionRangeOptionsMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ExtensionRangeOptionsValidationError

type ExtensionRangeOptionsValidationError struct {
	// contains filtered or unexported fields
}

ExtensionRangeOptionsValidationError is the validation error returned by ExtensionRangeOptions.Validate if the designated constraints aren't met.

func (ExtensionRangeOptionsValidationError) Cause

Cause function returns cause value.

func (ExtensionRangeOptionsValidationError) Error

Error satisfies the builtin error interface

func (ExtensionRangeOptionsValidationError) ErrorName

ErrorName returns error name.

func (ExtensionRangeOptionsValidationError) Field

Field function returns field value.

func (ExtensionRangeOptionsValidationError) Key

Key function returns key value.

func (ExtensionRangeOptionsValidationError) Reason

Reason function returns reason value.

type FieldDescriptorProto

type FieldDescriptorProto struct {
	Name   *string                     `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	Number *int32                      `protobuf:"varint,3,opt,name=number" json:"number,omitempty"`
	Label  *FieldDescriptorProto_Label `protobuf:"varint,4,opt,name=label,enum=google.protobuf.FieldDescriptorProto_Label" json:"label,omitempty"`
	// If type_name is set, this need not be set.  If both this and type_name
	// are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
	Type *FieldDescriptorProto_Type `protobuf:"varint,5,opt,name=type,enum=google.protobuf.FieldDescriptorProto_Type" json:"type,omitempty"`
	// For message and enum types, this is the name of the type.  If the name
	// starts with a '.', it is fully-qualified.  Otherwise, C++-like scoping
	// rules are used to find the type (i.e. first the nested types within this
	// message are searched, then within the parent, on up to the root
	// namespace).
	TypeName *string `protobuf:"bytes,6,opt,name=type_name,json=typeName" json:"type_name,omitempty"`
	// For extensions, this is the name of the type being extended.  It is
	// resolved in the same manner as type_name.
	Extendee *string `protobuf:"bytes,2,opt,name=extendee" json:"extendee,omitempty"`
	// For numeric types, contains the original text representation of the value.
	// For booleans, "true" or "false".
	// For strings, contains the default text contents (not escaped in any way).
	// For bytes, contains the C escaped value.  All bytes >= 128 are escaped.
	DefaultValue *string `protobuf:"bytes,7,opt,name=default_value,json=defaultValue" json:"default_value,omitempty"`
	// If set, gives the index of a oneof in the containing type's oneof_decl
	// list.  This field is a member of that oneof.
	OneofIndex *int32 `protobuf:"varint,9,opt,name=oneof_index,json=oneofIndex" json:"oneof_index,omitempty"`
	// JSON name of this field. The value is set by protocol compiler. If the
	// user has set a "json_name" option on this field, that option's value
	// will be used. Otherwise, it's deduced from the field's name by converting
	// it to camelCase.
	JsonName *string       `protobuf:"bytes,10,opt,name=json_name,json=jsonName" json:"json_name,omitempty"`
	Options  *FieldOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"`
	// If true, this is a proto3 "optional". When a proto3 field is optional, it
	// tracks presence regardless of field type.
	//
	// When proto3_optional is true, this field must be belong to a oneof to
	// signal to old proto3 clients that presence is tracked for this field. This
	// oneof is known as a "synthetic" oneof, and this field must be its sole
	// member (each proto3 optional field gets its own synthetic oneof). Synthetic
	// oneofs exist in the descriptor only, and do not generate any API. Synthetic
	// oneofs must be ordered after all "real" oneofs.
	//
	// For message fields, proto3_optional doesn't create any semantic change,
	// since non-repeated message fields always track presence. However it still
	// indicates the semantic detail of whether the user wrote "optional" or not.
	// This can be useful for round-tripping the .proto file. For consistency we
	// give message fields a synthetic oneof also, even though it is not required
	// to track presence. This is especially important because the parser can't
	// tell if a field is a message or an enum, so it must always create a
	// synthetic oneof.
	//
	// Proto2 optional fields do not set this flag, because they already indicate
	// optional with `LABEL_OPTIONAL`.
	Proto3Optional *bool `protobuf:"varint,17,opt,name=proto3_optional,json=proto3Optional" json:"proto3_optional,omitempty"`
	// contains filtered or unexported fields
}

Describes a field within a message.

func (*FieldDescriptorProto) Descriptor deprecated

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

Deprecated: Use FieldDescriptorProto.ProtoReflect.Descriptor instead.

func (*FieldDescriptorProto) GetDefaultValue

func (x *FieldDescriptorProto) GetDefaultValue() string

func (*FieldDescriptorProto) GetExtendee

func (x *FieldDescriptorProto) GetExtendee() string

func (*FieldDescriptorProto) GetJsonName

func (x *FieldDescriptorProto) GetJsonName() string

func (*FieldDescriptorProto) GetLabel

func (*FieldDescriptorProto) GetName

func (x *FieldDescriptorProto) GetName() string

func (*FieldDescriptorProto) GetNumber

func (x *FieldDescriptorProto) GetNumber() int32

func (*FieldDescriptorProto) GetOneofIndex

func (x *FieldDescriptorProto) GetOneofIndex() int32

func (*FieldDescriptorProto) GetOptions

func (x *FieldDescriptorProto) GetOptions() *FieldOptions

func (*FieldDescriptorProto) GetProto3Optional

func (x *FieldDescriptorProto) GetProto3Optional() bool

func (*FieldDescriptorProto) GetType

func (*FieldDescriptorProto) GetTypeName

func (x *FieldDescriptorProto) GetTypeName() string

func (*FieldDescriptorProto) ProtoMessage

func (*FieldDescriptorProto) ProtoMessage()

func (*FieldDescriptorProto) ProtoReflect

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

func (*FieldDescriptorProto) Reset

func (x *FieldDescriptorProto) Reset()

func (*FieldDescriptorProto) String

func (x *FieldDescriptorProto) String() string

func (*FieldDescriptorProto) Validate

func (m *FieldDescriptorProto) Validate() error

Validate checks the field values on FieldDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FieldDescriptorProto) ValidateAll

func (m *FieldDescriptorProto) ValidateAll() error

ValidateAll checks the field values on FieldDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FieldDescriptorProtoMultiError, or nil if none found.

type FieldDescriptorProtoMultiError

type FieldDescriptorProtoMultiError []error

FieldDescriptorProtoMultiError is an error wrapping multiple validation errors returned by FieldDescriptorProto.ValidateAll() if the designated constraints aren't met.

func (FieldDescriptorProtoMultiError) AllErrors

func (m FieldDescriptorProtoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FieldDescriptorProtoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type FieldDescriptorProtoValidationError

type FieldDescriptorProtoValidationError struct {
	// contains filtered or unexported fields
}

FieldDescriptorProtoValidationError is the validation error returned by FieldDescriptorProto.Validate if the designated constraints aren't met.

func (FieldDescriptorProtoValidationError) Cause

Cause function returns cause value.

func (FieldDescriptorProtoValidationError) Error

Error satisfies the builtin error interface

func (FieldDescriptorProtoValidationError) ErrorName

ErrorName returns error name.

func (FieldDescriptorProtoValidationError) Field

Field function returns field value.

func (FieldDescriptorProtoValidationError) Key

Key function returns key value.

func (FieldDescriptorProtoValidationError) Reason

Reason function returns reason value.

type FieldDescriptorProto_Label

type FieldDescriptorProto_Label int32
const (
	// 0 is reserved for errors
	FieldDescriptorProto_LABEL_OPTIONAL FieldDescriptorProto_Label = 1
	FieldDescriptorProto_LABEL_REQUIRED FieldDescriptorProto_Label = 2
	FieldDescriptorProto_LABEL_REPEATED FieldDescriptorProto_Label = 3
)

func (FieldDescriptorProto_Label) Descriptor

func (FieldDescriptorProto_Label) Enum

func (FieldDescriptorProto_Label) EnumDescriptor deprecated

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

Deprecated: Use FieldDescriptorProto_Label.Descriptor instead.

func (FieldDescriptorProto_Label) Number

func (FieldDescriptorProto_Label) String

func (FieldDescriptorProto_Label) Type

func (*FieldDescriptorProto_Label) UnmarshalJSON deprecated

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

Deprecated: Do not use.

type FieldDescriptorProto_Type

type FieldDescriptorProto_Type int32
const (
	// 0 is reserved for errors.
	// Order is weird for historical reasons.
	FieldDescriptorProto_TYPE_DOUBLE FieldDescriptorProto_Type = 1
	FieldDescriptorProto_TYPE_FLOAT  FieldDescriptorProto_Type = 2
	// Not ZigZag encoded.  Negative numbers take 10 bytes.  Use TYPE_SINT64 if
	// negative values are likely.
	FieldDescriptorProto_TYPE_INT64  FieldDescriptorProto_Type = 3
	FieldDescriptorProto_TYPE_UINT64 FieldDescriptorProto_Type = 4
	// Not ZigZag encoded.  Negative numbers take 10 bytes.  Use TYPE_SINT32 if
	// negative values are likely.
	FieldDescriptorProto_TYPE_INT32   FieldDescriptorProto_Type = 5
	FieldDescriptorProto_TYPE_FIXED64 FieldDescriptorProto_Type = 6
	FieldDescriptorProto_TYPE_FIXED32 FieldDescriptorProto_Type = 7
	FieldDescriptorProto_TYPE_BOOL    FieldDescriptorProto_Type = 8
	FieldDescriptorProto_TYPE_STRING  FieldDescriptorProto_Type = 9
	// Tag-delimited aggregate.
	// Group type is deprecated and not supported in proto3. However, Proto3
	// implementations should still be able to parse the group wire format and
	// treat group fields as unknown fields.
	FieldDescriptorProto_TYPE_GROUP   FieldDescriptorProto_Type = 10
	FieldDescriptorProto_TYPE_MESSAGE FieldDescriptorProto_Type = 11 // Length-delimited aggregate.
	// New in version 2.
	FieldDescriptorProto_TYPE_BYTES    FieldDescriptorProto_Type = 12
	FieldDescriptorProto_TYPE_UINT32   FieldDescriptorProto_Type = 13
	FieldDescriptorProto_TYPE_ENUM     FieldDescriptorProto_Type = 14
	FieldDescriptorProto_TYPE_SFIXED32 FieldDescriptorProto_Type = 15
	FieldDescriptorProto_TYPE_SFIXED64 FieldDescriptorProto_Type = 16
	FieldDescriptorProto_TYPE_SINT32   FieldDescriptorProto_Type = 17 // Uses ZigZag encoding.
	FieldDescriptorProto_TYPE_SINT64   FieldDescriptorProto_Type = 18 // Uses ZigZag encoding.
)

func (FieldDescriptorProto_Type) Descriptor

func (FieldDescriptorProto_Type) Enum

func (FieldDescriptorProto_Type) EnumDescriptor deprecated

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

Deprecated: Use FieldDescriptorProto_Type.Descriptor instead.

func (FieldDescriptorProto_Type) Number

func (FieldDescriptorProto_Type) String

func (x FieldDescriptorProto_Type) String() string

func (FieldDescriptorProto_Type) Type

func (*FieldDescriptorProto_Type) UnmarshalJSON deprecated

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

Deprecated: Do not use.

type FieldOptions

type FieldOptions struct {

	// The ctype option instructs the C++ code generator to use a different
	// representation of the field than it normally would.  See the specific
	// options below.  This option is not yet implemented in the open source
	// release -- sorry, we'll try to include it in a future version!
	Ctype *FieldOptions_CType `protobuf:"varint,1,opt,name=ctype,enum=google.protobuf.FieldOptions_CType,def=0" json:"ctype,omitempty"`
	// The packed option can be enabled for repeated primitive fields to enable
	// a more efficient representation on the wire. Rather than repeatedly
	// writing the tag and type for each element, the entire array is encoded as
	// a single length-delimited blob. In proto3, only explicit setting it to
	// false will avoid using packed encoding.
	Packed *bool `protobuf:"varint,2,opt,name=packed" json:"packed,omitempty"`
	// The jstype option determines the JavaScript type used for values of the
	// field.  The option is permitted only for 64 bit integral and fixed types
	// (int64, uint64, sint64, fixed64, sfixed64).  A field with jstype JS_STRING
	// is represented as JavaScript string, which avoids loss of precision that
	// can happen when a large value is converted to a floating point JavaScript.
	// Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
	// use the JavaScript "number" type.  The behavior of the default option
	// JS_NORMAL is implementation dependent.
	//
	// This option is an enum to permit additional types to be added, e.g.
	// goog.math.Integer.
	Jstype *FieldOptions_JSType `protobuf:"varint,6,opt,name=jstype,enum=google.protobuf.FieldOptions_JSType,def=0" json:"jstype,omitempty"`
	// Should this field be parsed lazily?  Lazy applies only to message-type
	// fields.  It means that when the outer message is initially parsed, the
	// inner message's contents will not be parsed but instead stored in encoded
	// form.  The inner message will actually be parsed when it is first accessed.
	//
	// This is only a hint.  Implementations are free to choose whether to use
	// eager or lazy parsing regardless of the value of this option.  However,
	// setting this option true suggests that the protocol author believes that
	// using lazy parsing on this field is worth the additional bookkeeping
	// overhead typically needed to implement it.
	//
	// This option does not affect the public interface of any generated code;
	// all method signatures remain the same.  Furthermore, thread-safety of the
	// interface is not affected by this option; const methods remain safe to
	// call from multiple threads concurrently, while non-const methods continue
	// to require exclusive access.
	//
	// Note that implementations may choose not to check required fields within
	// a lazy sub-message.  That is, calling IsInitialized() on the outer message
	// may return true even if the inner message has missing required fields.
	// This is necessary because otherwise the inner message would have to be
	// parsed in order to perform the check, defeating the purpose of lazy
	// parsing.  An implementation which chooses not to check required fields
	// must be consistent about it.  That is, for any particular sub-message, the
	// implementation must either *always* check its required fields, or *never*
	// check its required fields, regardless of whether or not the message has
	// been parsed.
	//
	// As of 2021, lazy does no correctness checks on the byte stream during
	// parsing.  This may lead to crashes if and when an invalid byte stream is
	// finally parsed upon access.
	//
	// TODO(b/211906113):  Enable validation on lazy fields.
	Lazy *bool `protobuf:"varint,5,opt,name=lazy,def=0" json:"lazy,omitempty"`
	// unverified_lazy does no correctness checks on the byte stream. This should
	// only be used where lazy with verification is prohibitive for performance
	// reasons.
	UnverifiedLazy *bool `protobuf:"varint,15,opt,name=unverified_lazy,json=unverifiedLazy,def=0" json:"unverified_lazy,omitempty"`
	// Is this field deprecated?
	// Depending on the target platform, this can emit Deprecated annotations
	// for accessors, or it will be completely ignored; in the very least, this
	// is a formalization for deprecating fields.
	Deprecated *bool `protobuf:"varint,3,opt,name=deprecated,def=0" json:"deprecated,omitempty"`
	// For Google-internal migration only. Do not use.
	Weak *bool `protobuf:"varint,10,opt,name=weak,def=0" json:"weak,omitempty"`
	// The parser stores options it doesn't recognize here. See above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*FieldOptions) Descriptor deprecated

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

Deprecated: Use FieldOptions.ProtoReflect.Descriptor instead.

func (*FieldOptions) GetCtype

func (x *FieldOptions) GetCtype() FieldOptions_CType

func (*FieldOptions) GetDeprecated

func (x *FieldOptions) GetDeprecated() bool

func (*FieldOptions) GetJstype

func (x *FieldOptions) GetJstype() FieldOptions_JSType

func (*FieldOptions) GetLazy

func (x *FieldOptions) GetLazy() bool

func (*FieldOptions) GetPacked

func (x *FieldOptions) GetPacked() bool

func (*FieldOptions) GetUninterpretedOption

func (x *FieldOptions) GetUninterpretedOption() []*UninterpretedOption

func (*FieldOptions) GetUnverifiedLazy

func (x *FieldOptions) GetUnverifiedLazy() bool

func (*FieldOptions) GetWeak

func (x *FieldOptions) GetWeak() bool

func (*FieldOptions) ProtoMessage

func (*FieldOptions) ProtoMessage()

func (*FieldOptions) ProtoReflect

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

func (*FieldOptions) Reset

func (x *FieldOptions) Reset()

func (*FieldOptions) String

func (x *FieldOptions) String() string

func (*FieldOptions) Validate

func (m *FieldOptions) Validate() error

Validate checks the field values on FieldOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FieldOptions) ValidateAll

func (m *FieldOptions) ValidateAll() error

ValidateAll checks the field values on FieldOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FieldOptionsMultiError, or nil if none found.

type FieldOptionsMultiError

type FieldOptionsMultiError []error

FieldOptionsMultiError is an error wrapping multiple validation errors returned by FieldOptions.ValidateAll() if the designated constraints aren't met.

func (FieldOptionsMultiError) AllErrors

func (m FieldOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FieldOptionsMultiError) Error

func (m FieldOptionsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FieldOptionsValidationError

type FieldOptionsValidationError struct {
	// contains filtered or unexported fields
}

FieldOptionsValidationError is the validation error returned by FieldOptions.Validate if the designated constraints aren't met.

func (FieldOptionsValidationError) Cause

Cause function returns cause value.

func (FieldOptionsValidationError) Error

Error satisfies the builtin error interface

func (FieldOptionsValidationError) ErrorName

func (e FieldOptionsValidationError) ErrorName() string

ErrorName returns error name.

func (FieldOptionsValidationError) Field

Field function returns field value.

func (FieldOptionsValidationError) Key

Key function returns key value.

func (FieldOptionsValidationError) Reason

Reason function returns reason value.

type FieldOptions_CType

type FieldOptions_CType int32
const (
	// Default mode.
	FieldOptions_STRING       FieldOptions_CType = 0
	FieldOptions_CORD         FieldOptions_CType = 1
	FieldOptions_STRING_PIECE FieldOptions_CType = 2
)

func (FieldOptions_CType) Descriptor

func (FieldOptions_CType) Enum

func (FieldOptions_CType) EnumDescriptor deprecated

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

Deprecated: Use FieldOptions_CType.Descriptor instead.

func (FieldOptions_CType) Number

func (FieldOptions_CType) String

func (x FieldOptions_CType) String() string

func (FieldOptions_CType) Type

func (*FieldOptions_CType) UnmarshalJSON deprecated

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

Deprecated: Do not use.

type FieldOptions_JSType

type FieldOptions_JSType int32
const (
	// Use the default type.
	FieldOptions_JS_NORMAL FieldOptions_JSType = 0
	// Use JavaScript strings.
	FieldOptions_JS_STRING FieldOptions_JSType = 1
	// Use JavaScript numbers.
	FieldOptions_JS_NUMBER FieldOptions_JSType = 2
)

func (FieldOptions_JSType) Descriptor

func (FieldOptions_JSType) Enum

func (FieldOptions_JSType) EnumDescriptor deprecated

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

Deprecated: Use FieldOptions_JSType.Descriptor instead.

func (FieldOptions_JSType) Number

func (FieldOptions_JSType) String

func (x FieldOptions_JSType) String() string

func (FieldOptions_JSType) Type

func (*FieldOptions_JSType) UnmarshalJSON deprecated

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

Deprecated: Do not use.

type FileDescriptorProto

type FileDescriptorProto struct {
	Name    *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`       // file name, relative to root of source tree
	Package *string `protobuf:"bytes,2,opt,name=package" json:"package,omitempty"` // e.g. "foo", "foo.bar", etc.
	// Names of files imported by this file.
	Dependency []string `protobuf:"bytes,3,rep,name=dependency" json:"dependency,omitempty"`
	// Indexes of the public imported files in the dependency list above.
	PublicDependency []int32 `protobuf:"varint,10,rep,name=public_dependency,json=publicDependency" json:"public_dependency,omitempty"`
	// Indexes of the weak imported files in the dependency list.
	// For Google-internal migration only. Do not use.
	WeakDependency []int32 `protobuf:"varint,11,rep,name=weak_dependency,json=weakDependency" json:"weak_dependency,omitempty"`
	// All top-level definitions in this file.
	MessageType []*DescriptorProto        `protobuf:"bytes,4,rep,name=message_type,json=messageType" json:"message_type,omitempty"`
	EnumType    []*EnumDescriptorProto    `protobuf:"bytes,5,rep,name=enum_type,json=enumType" json:"enum_type,omitempty"`
	Service     []*ServiceDescriptorProto `protobuf:"bytes,6,rep,name=service" json:"service,omitempty"`
	Extension   []*FieldDescriptorProto   `protobuf:"bytes,7,rep,name=extension" json:"extension,omitempty"`
	Options     *FileOptions              `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"`
	// This field contains optional information about the original source code.
	// You may safely remove this entire field without harming runtime
	// functionality of the descriptors -- the information is needed only by
	// development tools.
	SourceCodeInfo *SourceCodeInfo `protobuf:"bytes,9,opt,name=source_code_info,json=sourceCodeInfo" json:"source_code_info,omitempty"`
	// The syntax of the proto file.
	// The supported values are "proto2" and "proto3".
	Syntax *string `protobuf:"bytes,12,opt,name=syntax" json:"syntax,omitempty"`
	// contains filtered or unexported fields
}

Describes a complete .proto file.

func (*FileDescriptorProto) Descriptor deprecated

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

Deprecated: Use FileDescriptorProto.ProtoReflect.Descriptor instead.

func (*FileDescriptorProto) GetDependency

func (x *FileDescriptorProto) GetDependency() []string

func (*FileDescriptorProto) GetEnumType

func (x *FileDescriptorProto) GetEnumType() []*EnumDescriptorProto

func (*FileDescriptorProto) GetExtension

func (x *FileDescriptorProto) GetExtension() []*FieldDescriptorProto

func (*FileDescriptorProto) GetMessageType

func (x *FileDescriptorProto) GetMessageType() []*DescriptorProto

func (*FileDescriptorProto) GetName

func (x *FileDescriptorProto) GetName() string

func (*FileDescriptorProto) GetOptions

func (x *FileDescriptorProto) GetOptions() *FileOptions

func (*FileDescriptorProto) GetPackage

func (x *FileDescriptorProto) GetPackage() string

func (*FileDescriptorProto) GetPublicDependency

func (x *FileDescriptorProto) GetPublicDependency() []int32

func (*FileDescriptorProto) GetService

func (x *FileDescriptorProto) GetService() []*ServiceDescriptorProto

func (*FileDescriptorProto) GetSourceCodeInfo

func (x *FileDescriptorProto) GetSourceCodeInfo() *SourceCodeInfo

func (*FileDescriptorProto) GetSyntax

func (x *FileDescriptorProto) GetSyntax() string

func (*FileDescriptorProto) GetWeakDependency

func (x *FileDescriptorProto) GetWeakDependency() []int32

func (*FileDescriptorProto) ProtoMessage

func (*FileDescriptorProto) ProtoMessage()

func (*FileDescriptorProto) ProtoReflect

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

func (*FileDescriptorProto) Reset

func (x *FileDescriptorProto) Reset()

func (*FileDescriptorProto) String

func (x *FileDescriptorProto) String() string

func (*FileDescriptorProto) Validate

func (m *FileDescriptorProto) Validate() error

Validate checks the field values on FileDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FileDescriptorProto) ValidateAll

func (m *FileDescriptorProto) ValidateAll() error

ValidateAll checks the field values on FileDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FileDescriptorProtoMultiError, or nil if none found.

type FileDescriptorProtoMultiError

type FileDescriptorProtoMultiError []error

FileDescriptorProtoMultiError is an error wrapping multiple validation errors returned by FileDescriptorProto.ValidateAll() if the designated constraints aren't met.

func (FileDescriptorProtoMultiError) AllErrors

func (m FileDescriptorProtoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FileDescriptorProtoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type FileDescriptorProtoValidationError

type FileDescriptorProtoValidationError struct {
	// contains filtered or unexported fields
}

FileDescriptorProtoValidationError is the validation error returned by FileDescriptorProto.Validate if the designated constraints aren't met.

func (FileDescriptorProtoValidationError) Cause

Cause function returns cause value.

func (FileDescriptorProtoValidationError) Error

Error satisfies the builtin error interface

func (FileDescriptorProtoValidationError) ErrorName

ErrorName returns error name.

func (FileDescriptorProtoValidationError) Field

Field function returns field value.

func (FileDescriptorProtoValidationError) Key

Key function returns key value.

func (FileDescriptorProtoValidationError) Reason

Reason function returns reason value.

type FileDescriptorSet

type FileDescriptorSet struct {
	File []*FileDescriptorProto `protobuf:"bytes,1,rep,name=file" json:"file,omitempty"`
	// contains filtered or unexported fields
}

The protocol compiler can output a FileDescriptorSet containing the .proto files it parses.

func (*FileDescriptorSet) Descriptor deprecated

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

Deprecated: Use FileDescriptorSet.ProtoReflect.Descriptor instead.

func (*FileDescriptorSet) GetFile

func (x *FileDescriptorSet) GetFile() []*FileDescriptorProto

func (*FileDescriptorSet) ProtoMessage

func (*FileDescriptorSet) ProtoMessage()

func (*FileDescriptorSet) ProtoReflect

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

func (*FileDescriptorSet) Reset

func (x *FileDescriptorSet) Reset()

func (*FileDescriptorSet) String

func (x *FileDescriptorSet) String() string

func (*FileDescriptorSet) Validate

func (m *FileDescriptorSet) Validate() error

Validate checks the field values on FileDescriptorSet with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FileDescriptorSet) ValidateAll

func (m *FileDescriptorSet) ValidateAll() error

ValidateAll checks the field values on FileDescriptorSet with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FileDescriptorSetMultiError, or nil if none found.

type FileDescriptorSetMultiError

type FileDescriptorSetMultiError []error

FileDescriptorSetMultiError is an error wrapping multiple validation errors returned by FileDescriptorSet.ValidateAll() if the designated constraints aren't met.

func (FileDescriptorSetMultiError) AllErrors

func (m FileDescriptorSetMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FileDescriptorSetMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type FileDescriptorSetValidationError

type FileDescriptorSetValidationError struct {
	// contains filtered or unexported fields
}

FileDescriptorSetValidationError is the validation error returned by FileDescriptorSet.Validate if the designated constraints aren't met.

func (FileDescriptorSetValidationError) Cause

Cause function returns cause value.

func (FileDescriptorSetValidationError) Error

Error satisfies the builtin error interface

func (FileDescriptorSetValidationError) ErrorName

ErrorName returns error name.

func (FileDescriptorSetValidationError) Field

Field function returns field value.

func (FileDescriptorSetValidationError) Key

Key function returns key value.

func (FileDescriptorSetValidationError) Reason

Reason function returns reason value.

type FileOptions

type FileOptions struct {

	// Sets the Java package where classes generated from this .proto will be
	// placed.  By default, the proto package is used, but this is often
	// inappropriate because proto packages do not normally start with backwards
	// domain names.
	JavaPackage *string `protobuf:"bytes,1,opt,name=java_package,json=javaPackage" json:"java_package,omitempty"`
	// Controls the name of the wrapper Java class generated for the .proto file.
	// That class will always contain the .proto file's getDescriptor() method as
	// well as any top-level extensions defined in the .proto file.
	// If java_multiple_files is disabled, then all the other classes from the
	// .proto file will be nested inside the single wrapper outer class.
	JavaOuterClassname *string `protobuf:"bytes,8,opt,name=java_outer_classname,json=javaOuterClassname" json:"java_outer_classname,omitempty"`
	// If enabled, then the Java code generator will generate a separate .java
	// file for each top-level message, enum, and service defined in the .proto
	// file.  Thus, these types will *not* be nested inside the wrapper class
	// named by java_outer_classname.  However, the wrapper class will still be
	// generated to contain the file's getDescriptor() method as well as any
	// top-level extensions defined in the file.
	JavaMultipleFiles *bool `protobuf:"varint,10,opt,name=java_multiple_files,json=javaMultipleFiles,def=0" json:"java_multiple_files,omitempty"`
	// This option does nothing.
	//
	// Deprecated: Marked as deprecated in descriptor.proto.
	JavaGenerateEqualsAndHash *bool `` /* 137-byte string literal not displayed */
	// If set true, then the Java2 code generator will generate code that
	// throws an exception whenever an attempt is made to assign a non-UTF-8
	// byte sequence to a string field.
	// Message reflection will do the same.
	// However, an extension field still accepts non-UTF-8 byte sequences.
	// This option has no effect on when used with the lite runtime.
	JavaStringCheckUtf8 *bool                     `protobuf:"varint,27,opt,name=java_string_check_utf8,json=javaStringCheckUtf8,def=0" json:"java_string_check_utf8,omitempty"`
	OptimizeFor         *FileOptions_OptimizeMode `` /* 140-byte string literal not displayed */
	// Sets the Go package where structs generated from this .proto will be
	// placed. If omitted, the Go package will be derived from the following:
	//   - The basename of the package import path, if provided.
	//   - Otherwise, the package statement in the .proto file, if present.
	//   - Otherwise, the basename of the .proto file, without extension.
	GoPackage *string `protobuf:"bytes,11,opt,name=go_package,json=goPackage" json:"go_package,omitempty"`
	// Should generic services be generated in each language?  "Generic" services
	// are not specific to any particular RPC system.  They are generated by the
	// main code generators in each language (without additional plugins).
	// Generic services were the only kind of service generation supported by
	// early versions of google.protobuf.
	//
	// Generic services are now considered deprecated in favor of using plugins
	// that generate code specific to your particular RPC system.  Therefore,
	// these default to false.  Old code which depends on generic services should
	// explicitly set them to true.
	CcGenericServices   *bool `protobuf:"varint,16,opt,name=cc_generic_services,json=ccGenericServices,def=0" json:"cc_generic_services,omitempty"`
	JavaGenericServices *bool `protobuf:"varint,17,opt,name=java_generic_services,json=javaGenericServices,def=0" json:"java_generic_services,omitempty"`
	PyGenericServices   *bool `protobuf:"varint,18,opt,name=py_generic_services,json=pyGenericServices,def=0" json:"py_generic_services,omitempty"`
	PhpGenericServices  *bool `protobuf:"varint,42,opt,name=php_generic_services,json=phpGenericServices,def=0" json:"php_generic_services,omitempty"`
	// Is this file deprecated?
	// Depending on the target platform, this can emit Deprecated annotations
	// for everything in the file, or it will be completely ignored; in the very
	// least, this is a formalization for deprecating files.
	Deprecated *bool `protobuf:"varint,23,opt,name=deprecated,def=0" json:"deprecated,omitempty"`
	// Enables the use of arenas for the proto messages in this file. This applies
	// only to generated classes for C++.
	CcEnableArenas *bool `protobuf:"varint,31,opt,name=cc_enable_arenas,json=ccEnableArenas,def=1" json:"cc_enable_arenas,omitempty"`
	// Sets the objective c class prefix which is prepended to all objective c
	// generated classes from this .proto. There is no default.
	ObjcClassPrefix *string `protobuf:"bytes,36,opt,name=objc_class_prefix,json=objcClassPrefix" json:"objc_class_prefix,omitempty"`
	// Namespace for generated classes; defaults to the package.
	CsharpNamespace *string `protobuf:"bytes,37,opt,name=csharp_namespace,json=csharpNamespace" json:"csharp_namespace,omitempty"`
	// By default Swift generators will take the proto package and CamelCase it
	// replacing '.' with underscore and use that to prefix the types/symbols
	// defined. When this options is provided, they will use this value instead
	// to prefix the types/symbols defined.
	SwiftPrefix *string `protobuf:"bytes,39,opt,name=swift_prefix,json=swiftPrefix" json:"swift_prefix,omitempty"`
	// Sets the php class prefix which is prepended to all php generated classes
	// from this .proto. Default is empty.
	PhpClassPrefix *string `protobuf:"bytes,40,opt,name=php_class_prefix,json=phpClassPrefix" json:"php_class_prefix,omitempty"`
	// Use this option to change the namespace of php generated classes. Default
	// is empty. When this option is empty, the package name will be used for
	// determining the namespace.
	PhpNamespace *string `protobuf:"bytes,41,opt,name=php_namespace,json=phpNamespace" json:"php_namespace,omitempty"`
	// Use this option to change the namespace of php generated metadata classes.
	// Default is empty. When this option is empty, the proto file name will be
	// used for determining the namespace.
	PhpMetadataNamespace *string `protobuf:"bytes,44,opt,name=php_metadata_namespace,json=phpMetadataNamespace" json:"php_metadata_namespace,omitempty"`
	// Use this option to change the package of ruby generated classes. Default
	// is empty. When this option is not set, the package name will be used for
	// determining the ruby package.
	RubyPackage *string `protobuf:"bytes,45,opt,name=ruby_package,json=rubyPackage" json:"ruby_package,omitempty"`
	// The parser stores options it doesn't recognize here.
	// See the documentation for the "Options" section above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*FileOptions) Descriptor deprecated

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

Deprecated: Use FileOptions.ProtoReflect.Descriptor instead.

func (*FileOptions) GetCcEnableArenas

func (x *FileOptions) GetCcEnableArenas() bool

func (*FileOptions) GetCcGenericServices

func (x *FileOptions) GetCcGenericServices() bool

func (*FileOptions) GetCsharpNamespace

func (x *FileOptions) GetCsharpNamespace() string

func (*FileOptions) GetDeprecated

func (x *FileOptions) GetDeprecated() bool

func (*FileOptions) GetGoPackage

func (x *FileOptions) GetGoPackage() string

func (*FileOptions) GetJavaGenerateEqualsAndHash deprecated

func (x *FileOptions) GetJavaGenerateEqualsAndHash() bool

Deprecated: Marked as deprecated in descriptor.proto.

func (*FileOptions) GetJavaGenericServices

func (x *FileOptions) GetJavaGenericServices() bool

func (*FileOptions) GetJavaMultipleFiles

func (x *FileOptions) GetJavaMultipleFiles() bool

func (*FileOptions) GetJavaOuterClassname

func (x *FileOptions) GetJavaOuterClassname() string

func (*FileOptions) GetJavaPackage

func (x *FileOptions) GetJavaPackage() string

func (*FileOptions) GetJavaStringCheckUtf8

func (x *FileOptions) GetJavaStringCheckUtf8() bool

func (*FileOptions) GetObjcClassPrefix

func (x *FileOptions) GetObjcClassPrefix() string

func (*FileOptions) GetOptimizeFor

func (x *FileOptions) GetOptimizeFor() FileOptions_OptimizeMode

func (*FileOptions) GetPhpClassPrefix

func (x *FileOptions) GetPhpClassPrefix() string

func (*FileOptions) GetPhpGenericServices

func (x *FileOptions) GetPhpGenericServices() bool

func (*FileOptions) GetPhpMetadataNamespace

func (x *FileOptions) GetPhpMetadataNamespace() string

func (*FileOptions) GetPhpNamespace

func (x *FileOptions) GetPhpNamespace() string

func (*FileOptions) GetPyGenericServices

func (x *FileOptions) GetPyGenericServices() bool

func (*FileOptions) GetRubyPackage

func (x *FileOptions) GetRubyPackage() string

func (*FileOptions) GetSwiftPrefix

func (x *FileOptions) GetSwiftPrefix() string

func (*FileOptions) GetUninterpretedOption

func (x *FileOptions) GetUninterpretedOption() []*UninterpretedOption

func (*FileOptions) ProtoMessage

func (*FileOptions) ProtoMessage()

func (*FileOptions) ProtoReflect

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

func (*FileOptions) Reset

func (x *FileOptions) Reset()

func (*FileOptions) String

func (x *FileOptions) String() string

func (*FileOptions) Validate

func (m *FileOptions) Validate() error

Validate checks the field values on FileOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*FileOptions) ValidateAll

func (m *FileOptions) ValidateAll() error

ValidateAll checks the field values on FileOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in FileOptionsMultiError, or nil if none found.

type FileOptionsMultiError

type FileOptionsMultiError []error

FileOptionsMultiError is an error wrapping multiple validation errors returned by FileOptions.ValidateAll() if the designated constraints aren't met.

func (FileOptionsMultiError) AllErrors

func (m FileOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FileOptionsMultiError) Error

func (m FileOptionsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FileOptionsValidationError

type FileOptionsValidationError struct {
	// contains filtered or unexported fields
}

FileOptionsValidationError is the validation error returned by FileOptions.Validate if the designated constraints aren't met.

func (FileOptionsValidationError) Cause

Cause function returns cause value.

func (FileOptionsValidationError) Error

Error satisfies the builtin error interface

func (FileOptionsValidationError) ErrorName

func (e FileOptionsValidationError) ErrorName() string

ErrorName returns error name.

func (FileOptionsValidationError) Field

Field function returns field value.

func (FileOptionsValidationError) Key

Key function returns key value.

func (FileOptionsValidationError) Reason

Reason function returns reason value.

type FileOptions_OptimizeMode

type FileOptions_OptimizeMode int32

Generated classes can be optimized for speed or code size.

const (
	FileOptions_SPEED FileOptions_OptimizeMode = 1 // Generate complete code for parsing, serialization,
	// etc.
	FileOptions_CODE_SIZE    FileOptions_OptimizeMode = 2 // Use ReflectionOps to implement these methods.
	FileOptions_LITE_RUNTIME FileOptions_OptimizeMode = 3 // Generate code using MessageLite and the lite runtime.
)

func (FileOptions_OptimizeMode) Descriptor

func (FileOptions_OptimizeMode) Enum

func (FileOptions_OptimizeMode) EnumDescriptor deprecated

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

Deprecated: Use FileOptions_OptimizeMode.Descriptor instead.

func (FileOptions_OptimizeMode) Number

func (FileOptions_OptimizeMode) String

func (x FileOptions_OptimizeMode) String() string

func (FileOptions_OptimizeMode) Type

func (*FileOptions_OptimizeMode) UnmarshalJSON deprecated

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

Deprecated: Do not use.

type GeneratedCodeInfo

type GeneratedCodeInfo struct {

	// An Annotation connects some span of text in generated code to an element
	// of its generating .proto file.
	Annotation []*GeneratedCodeInfo_Annotation `protobuf:"bytes,1,rep,name=annotation" json:"annotation,omitempty"`
	// contains filtered or unexported fields
}

Describes the relationship between generated code and its original source file. A GeneratedCodeInfo message is associated with only one generated source file, but may contain references to different source .proto files.

func (*GeneratedCodeInfo) Descriptor deprecated

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

Deprecated: Use GeneratedCodeInfo.ProtoReflect.Descriptor instead.

func (*GeneratedCodeInfo) GetAnnotation

func (x *GeneratedCodeInfo) GetAnnotation() []*GeneratedCodeInfo_Annotation

func (*GeneratedCodeInfo) ProtoMessage

func (*GeneratedCodeInfo) ProtoMessage()

func (*GeneratedCodeInfo) ProtoReflect

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

func (*GeneratedCodeInfo) Reset

func (x *GeneratedCodeInfo) Reset()

func (*GeneratedCodeInfo) String

func (x *GeneratedCodeInfo) String() string

func (*GeneratedCodeInfo) Validate

func (m *GeneratedCodeInfo) Validate() error

Validate checks the field values on GeneratedCodeInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GeneratedCodeInfo) ValidateAll

func (m *GeneratedCodeInfo) ValidateAll() error

ValidateAll checks the field values on GeneratedCodeInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GeneratedCodeInfoMultiError, or nil if none found.

type GeneratedCodeInfoMultiError

type GeneratedCodeInfoMultiError []error

GeneratedCodeInfoMultiError is an error wrapping multiple validation errors returned by GeneratedCodeInfo.ValidateAll() if the designated constraints aren't met.

func (GeneratedCodeInfoMultiError) AllErrors

func (m GeneratedCodeInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GeneratedCodeInfoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GeneratedCodeInfoValidationError

type GeneratedCodeInfoValidationError struct {
	// contains filtered or unexported fields
}

GeneratedCodeInfoValidationError is the validation error returned by GeneratedCodeInfo.Validate if the designated constraints aren't met.

func (GeneratedCodeInfoValidationError) Cause

Cause function returns cause value.

func (GeneratedCodeInfoValidationError) Error

Error satisfies the builtin error interface

func (GeneratedCodeInfoValidationError) ErrorName

ErrorName returns error name.

func (GeneratedCodeInfoValidationError) Field

Field function returns field value.

func (GeneratedCodeInfoValidationError) Key

Key function returns key value.

func (GeneratedCodeInfoValidationError) Reason

Reason function returns reason value.

type GeneratedCodeInfo_Annotation

type GeneratedCodeInfo_Annotation struct {

	// Identifies the element in the original source .proto file. This field
	// is formatted the same as SourceCodeInfo.Location.path.
	Path []int32 `protobuf:"varint,1,rep,packed,name=path" json:"path,omitempty"`
	// Identifies the filesystem path to the original source .proto.
	SourceFile *string `protobuf:"bytes,2,opt,name=source_file,json=sourceFile" json:"source_file,omitempty"`
	// Identifies the starting offset in bytes in the generated code
	// that relates to the identified object.
	Begin *int32 `protobuf:"varint,3,opt,name=begin" json:"begin,omitempty"`
	// Identifies the ending offset in bytes in the generated code that
	// relates to the identified offset. The end offset should be one past
	// the last relevant byte (so the length of the text = end - begin).
	End *int32 `protobuf:"varint,4,opt,name=end" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*GeneratedCodeInfo_Annotation) Descriptor deprecated

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

Deprecated: Use GeneratedCodeInfo_Annotation.ProtoReflect.Descriptor instead.

func (*GeneratedCodeInfo_Annotation) GetBegin

func (x *GeneratedCodeInfo_Annotation) GetBegin() int32

func (*GeneratedCodeInfo_Annotation) GetEnd

func (x *GeneratedCodeInfo_Annotation) GetEnd() int32

func (*GeneratedCodeInfo_Annotation) GetPath

func (x *GeneratedCodeInfo_Annotation) GetPath() []int32

func (*GeneratedCodeInfo_Annotation) GetSourceFile

func (x *GeneratedCodeInfo_Annotation) GetSourceFile() string

func (*GeneratedCodeInfo_Annotation) ProtoMessage

func (*GeneratedCodeInfo_Annotation) ProtoMessage()

func (*GeneratedCodeInfo_Annotation) ProtoReflect

func (*GeneratedCodeInfo_Annotation) Reset

func (x *GeneratedCodeInfo_Annotation) Reset()

func (*GeneratedCodeInfo_Annotation) String

func (*GeneratedCodeInfo_Annotation) Validate

func (m *GeneratedCodeInfo_Annotation) Validate() error

Validate checks the field values on GeneratedCodeInfo_Annotation with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GeneratedCodeInfo_Annotation) ValidateAll

func (m *GeneratedCodeInfo_Annotation) ValidateAll() error

ValidateAll checks the field values on GeneratedCodeInfo_Annotation with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GeneratedCodeInfo_AnnotationMultiError, or nil if none found.

type GeneratedCodeInfo_AnnotationMultiError

type GeneratedCodeInfo_AnnotationMultiError []error

GeneratedCodeInfo_AnnotationMultiError is an error wrapping multiple validation errors returned by GeneratedCodeInfo_Annotation.ValidateAll() if the designated constraints aren't met.

func (GeneratedCodeInfo_AnnotationMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GeneratedCodeInfo_AnnotationMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GeneratedCodeInfo_AnnotationValidationError

type GeneratedCodeInfo_AnnotationValidationError struct {
	// contains filtered or unexported fields
}

GeneratedCodeInfo_AnnotationValidationError is the validation error returned by GeneratedCodeInfo_Annotation.Validate if the designated constraints aren't met.

func (GeneratedCodeInfo_AnnotationValidationError) Cause

Cause function returns cause value.

func (GeneratedCodeInfo_AnnotationValidationError) Error

Error satisfies the builtin error interface

func (GeneratedCodeInfo_AnnotationValidationError) ErrorName

ErrorName returns error name.

func (GeneratedCodeInfo_AnnotationValidationError) Field

Field function returns field value.

func (GeneratedCodeInfo_AnnotationValidationError) Key

Key function returns key value.

func (GeneratedCodeInfo_AnnotationValidationError) Reason

Reason function returns reason value.

type MessageOptions

type MessageOptions struct {

	// Set true to use the old proto1 MessageSet wire format for extensions.
	// This is provided for backwards-compatibility with the MessageSet wire
	// format.  You should not use this for any other reason:  It's less
	// efficient, has fewer features, and is more complicated.
	//
	// The message must be defined exactly as follows:
	//
	//	message Foo {
	//	  option message_set_wire_format = true;
	//	  extensions 4 to max;
	//	}
	//
	// Note that the message cannot have any defined fields; MessageSets only
	// have extensions.
	//
	// All extensions of your type must be singular messages; e.g. they cannot
	// be int32s, enums, or repeated messages.
	//
	// Because this is an option, the above two restrictions are not enforced by
	// the protocol compiler.
	MessageSetWireFormat *bool `protobuf:"varint,1,opt,name=message_set_wire_format,json=messageSetWireFormat,def=0" json:"message_set_wire_format,omitempty"`
	// Disables the generation of the standard "descriptor()" accessor, which can
	// conflict with a field of the same name.  This is meant to make migration
	// from proto1 easier; new code should avoid fields named "descriptor".
	NoStandardDescriptorAccessor *bool `` /* 149-byte string literal not displayed */
	// Is this message deprecated?
	// Depending on the target platform, this can emit Deprecated annotations
	// for the message, or it will be completely ignored; in the very least,
	// this is a formalization for deprecating messages.
	Deprecated *bool `protobuf:"varint,3,opt,name=deprecated,def=0" json:"deprecated,omitempty"`
	// Whether the message is an automatically generated map entry type for the
	// maps field.
	//
	// For maps fields:
	//
	//	map<KeyType, ValueType> map_field = 1;
	//
	// The parsed descriptor looks like:
	//
	//	message MapFieldEntry {
	//	    option map_entry = true;
	//	    optional KeyType key = 1;
	//	    optional ValueType value = 2;
	//	}
	//	repeated MapFieldEntry map_field = 1;
	//
	// Implementations may choose not to generate the map_entry=true message, but
	// use a native map in the target language to hold the keys and values.
	// The reflection APIs in such implementations still need to work as
	// if the field is a repeated message field.
	//
	// NOTE: Do not set the option in .proto files. Always use the maps syntax
	// instead. The option should only be implicitly set by the proto compiler
	// parser.
	MapEntry *bool `protobuf:"varint,7,opt,name=map_entry,json=mapEntry" json:"map_entry,omitempty"`
	// The parser stores options it doesn't recognize here. See above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageOptions) Descriptor deprecated

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

Deprecated: Use MessageOptions.ProtoReflect.Descriptor instead.

func (*MessageOptions) GetDeprecated

func (x *MessageOptions) GetDeprecated() bool

func (*MessageOptions) GetMapEntry

func (x *MessageOptions) GetMapEntry() bool

func (*MessageOptions) GetMessageSetWireFormat

func (x *MessageOptions) GetMessageSetWireFormat() bool

func (*MessageOptions) GetNoStandardDescriptorAccessor

func (x *MessageOptions) GetNoStandardDescriptorAccessor() bool

func (*MessageOptions) GetUninterpretedOption

func (x *MessageOptions) GetUninterpretedOption() []*UninterpretedOption

func (*MessageOptions) ProtoMessage

func (*MessageOptions) ProtoMessage()

func (*MessageOptions) ProtoReflect

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

func (*MessageOptions) Reset

func (x *MessageOptions) Reset()

func (*MessageOptions) String

func (x *MessageOptions) String() string

func (*MessageOptions) Validate

func (m *MessageOptions) Validate() error

Validate checks the field values on MessageOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MessageOptions) ValidateAll

func (m *MessageOptions) ValidateAll() error

ValidateAll checks the field values on MessageOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MessageOptionsMultiError, or nil if none found.

type MessageOptionsMultiError

type MessageOptionsMultiError []error

MessageOptionsMultiError is an error wrapping multiple validation errors returned by MessageOptions.ValidateAll() if the designated constraints aren't met.

func (MessageOptionsMultiError) AllErrors

func (m MessageOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MessageOptionsMultiError) Error

func (m MessageOptionsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type MessageOptionsValidationError

type MessageOptionsValidationError struct {
	// contains filtered or unexported fields
}

MessageOptionsValidationError is the validation error returned by MessageOptions.Validate if the designated constraints aren't met.

func (MessageOptionsValidationError) Cause

Cause function returns cause value.

func (MessageOptionsValidationError) Error

Error satisfies the builtin error interface

func (MessageOptionsValidationError) ErrorName

func (e MessageOptionsValidationError) ErrorName() string

ErrorName returns error name.

func (MessageOptionsValidationError) Field

Field function returns field value.

func (MessageOptionsValidationError) Key

Key function returns key value.

func (MessageOptionsValidationError) Reason

Reason function returns reason value.

type MethodDescriptorProto

type MethodDescriptorProto struct {
	Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// Input and output type names.  These are resolved in the same way as
	// FieldDescriptorProto.type_name, but must refer to a message type.
	InputType  *string        `protobuf:"bytes,2,opt,name=input_type,json=inputType" json:"input_type,omitempty"`
	OutputType *string        `protobuf:"bytes,3,opt,name=output_type,json=outputType" json:"output_type,omitempty"`
	Options    *MethodOptions `protobuf:"bytes,4,opt,name=options" json:"options,omitempty"`
	// Identifies if client streams multiple client messages
	ClientStreaming *bool `protobuf:"varint,5,opt,name=client_streaming,json=clientStreaming,def=0" json:"client_streaming,omitempty"`
	// Identifies if server streams multiple server messages
	ServerStreaming *bool `protobuf:"varint,6,opt,name=server_streaming,json=serverStreaming,def=0" json:"server_streaming,omitempty"`
	// contains filtered or unexported fields
}

Describes a method of a service.

func (*MethodDescriptorProto) Descriptor deprecated

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

Deprecated: Use MethodDescriptorProto.ProtoReflect.Descriptor instead.

func (*MethodDescriptorProto) GetClientStreaming

func (x *MethodDescriptorProto) GetClientStreaming() bool

func (*MethodDescriptorProto) GetInputType

func (x *MethodDescriptorProto) GetInputType() string

func (*MethodDescriptorProto) GetName

func (x *MethodDescriptorProto) GetName() string

func (*MethodDescriptorProto) GetOptions

func (x *MethodDescriptorProto) GetOptions() *MethodOptions

func (*MethodDescriptorProto) GetOutputType

func (x *MethodDescriptorProto) GetOutputType() string

func (*MethodDescriptorProto) GetServerStreaming

func (x *MethodDescriptorProto) GetServerStreaming() bool

func (*MethodDescriptorProto) ProtoMessage

func (*MethodDescriptorProto) ProtoMessage()

func (*MethodDescriptorProto) ProtoReflect

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

func (*MethodDescriptorProto) Reset

func (x *MethodDescriptorProto) Reset()

func (*MethodDescriptorProto) String

func (x *MethodDescriptorProto) String() string

func (*MethodDescriptorProto) Validate

func (m *MethodDescriptorProto) Validate() error

Validate checks the field values on MethodDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MethodDescriptorProto) ValidateAll

func (m *MethodDescriptorProto) ValidateAll() error

ValidateAll checks the field values on MethodDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MethodDescriptorProtoMultiError, or nil if none found.

type MethodDescriptorProtoMultiError

type MethodDescriptorProtoMultiError []error

MethodDescriptorProtoMultiError is an error wrapping multiple validation errors returned by MethodDescriptorProto.ValidateAll() if the designated constraints aren't met.

func (MethodDescriptorProtoMultiError) AllErrors

func (m MethodDescriptorProtoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MethodDescriptorProtoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MethodDescriptorProtoValidationError

type MethodDescriptorProtoValidationError struct {
	// contains filtered or unexported fields
}

MethodDescriptorProtoValidationError is the validation error returned by MethodDescriptorProto.Validate if the designated constraints aren't met.

func (MethodDescriptorProtoValidationError) Cause

Cause function returns cause value.

func (MethodDescriptorProtoValidationError) Error

Error satisfies the builtin error interface

func (MethodDescriptorProtoValidationError) ErrorName

ErrorName returns error name.

func (MethodDescriptorProtoValidationError) Field

Field function returns field value.

func (MethodDescriptorProtoValidationError) Key

Key function returns key value.

func (MethodDescriptorProtoValidationError) Reason

Reason function returns reason value.

type MethodOptions

type MethodOptions struct {

	// Is this method deprecated?
	// Depending on the target platform, this can emit Deprecated annotations
	// for the method, or it will be completely ignored; in the very least,
	// this is a formalization for deprecating methods.
	Deprecated       *bool                           `protobuf:"varint,33,opt,name=deprecated,def=0" json:"deprecated,omitempty"`
	IdempotencyLevel *MethodOptions_IdempotencyLevel `` /* 162-byte string literal not displayed */
	// The parser stores options it doesn't recognize here. See above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*MethodOptions) Descriptor deprecated

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

Deprecated: Use MethodOptions.ProtoReflect.Descriptor instead.

func (*MethodOptions) GetDeprecated

func (x *MethodOptions) GetDeprecated() bool

func (*MethodOptions) GetIdempotencyLevel

func (x *MethodOptions) GetIdempotencyLevel() MethodOptions_IdempotencyLevel

func (*MethodOptions) GetUninterpretedOption

func (x *MethodOptions) GetUninterpretedOption() []*UninterpretedOption

func (*MethodOptions) ProtoMessage

func (*MethodOptions) ProtoMessage()

func (*MethodOptions) ProtoReflect

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

func (*MethodOptions) Reset

func (x *MethodOptions) Reset()

func (*MethodOptions) String

func (x *MethodOptions) String() string

func (*MethodOptions) Validate

func (m *MethodOptions) Validate() error

Validate checks the field values on MethodOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MethodOptions) ValidateAll

func (m *MethodOptions) ValidateAll() error

ValidateAll checks the field values on MethodOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MethodOptionsMultiError, or nil if none found.

type MethodOptionsMultiError

type MethodOptionsMultiError []error

MethodOptionsMultiError is an error wrapping multiple validation errors returned by MethodOptions.ValidateAll() if the designated constraints aren't met.

func (MethodOptionsMultiError) AllErrors

func (m MethodOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MethodOptionsMultiError) Error

func (m MethodOptionsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type MethodOptionsValidationError

type MethodOptionsValidationError struct {
	// contains filtered or unexported fields
}

MethodOptionsValidationError is the validation error returned by MethodOptions.Validate if the designated constraints aren't met.

func (MethodOptionsValidationError) Cause

Cause function returns cause value.

func (MethodOptionsValidationError) Error

Error satisfies the builtin error interface

func (MethodOptionsValidationError) ErrorName

func (e MethodOptionsValidationError) ErrorName() string

ErrorName returns error name.

func (MethodOptionsValidationError) Field

Field function returns field value.

func (MethodOptionsValidationError) Key

Key function returns key value.

func (MethodOptionsValidationError) Reason

Reason function returns reason value.

type MethodOptions_IdempotencyLevel

type MethodOptions_IdempotencyLevel int32

Is this method side-effect-free (or safe in HTTP parlance), or idempotent, or neither? HTTP based RPC implementation may choose GET verb for safe methods, and PUT verb for idempotent methods instead of the default POST.

const (
	MethodOptions_IDEMPOTENCY_UNKNOWN MethodOptions_IdempotencyLevel = 0
	MethodOptions_NO_SIDE_EFFECTS     MethodOptions_IdempotencyLevel = 1 // implies idempotent
	MethodOptions_IDEMPOTENT          MethodOptions_IdempotencyLevel = 2 // idempotent, but may have side effects
)

func (MethodOptions_IdempotencyLevel) Descriptor

func (MethodOptions_IdempotencyLevel) Enum

func (MethodOptions_IdempotencyLevel) EnumDescriptor deprecated

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

Deprecated: Use MethodOptions_IdempotencyLevel.Descriptor instead.

func (MethodOptions_IdempotencyLevel) Number

func (MethodOptions_IdempotencyLevel) String

func (MethodOptions_IdempotencyLevel) Type

func (*MethodOptions_IdempotencyLevel) UnmarshalJSON deprecated

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

Deprecated: Do not use.

type OneofDescriptorProto

type OneofDescriptorProto struct {
	Name    *string       `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	Options *OneofOptions `protobuf:"bytes,2,opt,name=options" json:"options,omitempty"`
	// contains filtered or unexported fields
}

Describes a oneof.

func (*OneofDescriptorProto) Descriptor deprecated

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

Deprecated: Use OneofDescriptorProto.ProtoReflect.Descriptor instead.

func (*OneofDescriptorProto) GetName

func (x *OneofDescriptorProto) GetName() string

func (*OneofDescriptorProto) GetOptions

func (x *OneofDescriptorProto) GetOptions() *OneofOptions

func (*OneofDescriptorProto) ProtoMessage

func (*OneofDescriptorProto) ProtoMessage()

func (*OneofDescriptorProto) ProtoReflect

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

func (*OneofDescriptorProto) Reset

func (x *OneofDescriptorProto) Reset()

func (*OneofDescriptorProto) String

func (x *OneofDescriptorProto) String() string

func (*OneofDescriptorProto) Validate

func (m *OneofDescriptorProto) Validate() error

Validate checks the field values on OneofDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*OneofDescriptorProto) ValidateAll

func (m *OneofDescriptorProto) ValidateAll() error

ValidateAll checks the field values on OneofDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in OneofDescriptorProtoMultiError, or nil if none found.

type OneofDescriptorProtoMultiError

type OneofDescriptorProtoMultiError []error

OneofDescriptorProtoMultiError is an error wrapping multiple validation errors returned by OneofDescriptorProto.ValidateAll() if the designated constraints aren't met.

func (OneofDescriptorProtoMultiError) AllErrors

func (m OneofDescriptorProtoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (OneofDescriptorProtoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type OneofDescriptorProtoValidationError

type OneofDescriptorProtoValidationError struct {
	// contains filtered or unexported fields
}

OneofDescriptorProtoValidationError is the validation error returned by OneofDescriptorProto.Validate if the designated constraints aren't met.

func (OneofDescriptorProtoValidationError) Cause

Cause function returns cause value.

func (OneofDescriptorProtoValidationError) Error

Error satisfies the builtin error interface

func (OneofDescriptorProtoValidationError) ErrorName

ErrorName returns error name.

func (OneofDescriptorProtoValidationError) Field

Field function returns field value.

func (OneofDescriptorProtoValidationError) Key

Key function returns key value.

func (OneofDescriptorProtoValidationError) Reason

Reason function returns reason value.

type OneofOptions

type OneofOptions struct {

	// The parser stores options it doesn't recognize here. See above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*OneofOptions) Descriptor deprecated

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

Deprecated: Use OneofOptions.ProtoReflect.Descriptor instead.

func (*OneofOptions) GetUninterpretedOption

func (x *OneofOptions) GetUninterpretedOption() []*UninterpretedOption

func (*OneofOptions) ProtoMessage

func (*OneofOptions) ProtoMessage()

func (*OneofOptions) ProtoReflect

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

func (*OneofOptions) Reset

func (x *OneofOptions) Reset()

func (*OneofOptions) String

func (x *OneofOptions) String() string

func (*OneofOptions) Validate

func (m *OneofOptions) Validate() error

Validate checks the field values on OneofOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*OneofOptions) ValidateAll

func (m *OneofOptions) ValidateAll() error

ValidateAll checks the field values on OneofOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in OneofOptionsMultiError, or nil if none found.

type OneofOptionsMultiError

type OneofOptionsMultiError []error

OneofOptionsMultiError is an error wrapping multiple validation errors returned by OneofOptions.ValidateAll() if the designated constraints aren't met.

func (OneofOptionsMultiError) AllErrors

func (m OneofOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (OneofOptionsMultiError) Error

func (m OneofOptionsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type OneofOptionsValidationError

type OneofOptionsValidationError struct {
	// contains filtered or unexported fields
}

OneofOptionsValidationError is the validation error returned by OneofOptions.Validate if the designated constraints aren't met.

func (OneofOptionsValidationError) Cause

Cause function returns cause value.

func (OneofOptionsValidationError) Error

Error satisfies the builtin error interface

func (OneofOptionsValidationError) ErrorName

func (e OneofOptionsValidationError) ErrorName() string

ErrorName returns error name.

func (OneofOptionsValidationError) Field

Field function returns field value.

func (OneofOptionsValidationError) Key

Key function returns key value.

func (OneofOptionsValidationError) Reason

Reason function returns reason value.

type ServiceDescriptorProto

type ServiceDescriptorProto struct {
	Name    *string                  `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	Method  []*MethodDescriptorProto `protobuf:"bytes,2,rep,name=method" json:"method,omitempty"`
	Options *ServiceOptions          `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"`
	// contains filtered or unexported fields
}

Describes a service.

func (*ServiceDescriptorProto) Descriptor deprecated

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

Deprecated: Use ServiceDescriptorProto.ProtoReflect.Descriptor instead.

func (*ServiceDescriptorProto) GetMethod

func (*ServiceDescriptorProto) GetName

func (x *ServiceDescriptorProto) GetName() string

func (*ServiceDescriptorProto) GetOptions

func (x *ServiceDescriptorProto) GetOptions() *ServiceOptions

func (*ServiceDescriptorProto) ProtoMessage

func (*ServiceDescriptorProto) ProtoMessage()

func (*ServiceDescriptorProto) ProtoReflect

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

func (*ServiceDescriptorProto) Reset

func (x *ServiceDescriptorProto) Reset()

func (*ServiceDescriptorProto) String

func (x *ServiceDescriptorProto) String() string

func (*ServiceDescriptorProto) Validate

func (m *ServiceDescriptorProto) Validate() error

Validate checks the field values on ServiceDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceDescriptorProto) ValidateAll

func (m *ServiceDescriptorProto) ValidateAll() error

ValidateAll checks the field values on ServiceDescriptorProto with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceDescriptorProtoMultiError, or nil if none found.

type ServiceDescriptorProtoMultiError

type ServiceDescriptorProtoMultiError []error

ServiceDescriptorProtoMultiError is an error wrapping multiple validation errors returned by ServiceDescriptorProto.ValidateAll() if the designated constraints aren't met.

func (ServiceDescriptorProtoMultiError) AllErrors

func (m ServiceDescriptorProtoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceDescriptorProtoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceDescriptorProtoValidationError

type ServiceDescriptorProtoValidationError struct {
	// contains filtered or unexported fields
}

ServiceDescriptorProtoValidationError is the validation error returned by ServiceDescriptorProto.Validate if the designated constraints aren't met.

func (ServiceDescriptorProtoValidationError) Cause

Cause function returns cause value.

func (ServiceDescriptorProtoValidationError) Error

Error satisfies the builtin error interface

func (ServiceDescriptorProtoValidationError) ErrorName

ErrorName returns error name.

func (ServiceDescriptorProtoValidationError) Field

Field function returns field value.

func (ServiceDescriptorProtoValidationError) Key

Key function returns key value.

func (ServiceDescriptorProtoValidationError) Reason

Reason function returns reason value.

type ServiceOptions

type ServiceOptions struct {

	// Is this service deprecated?
	// Depending on the target platform, this can emit Deprecated annotations
	// for the service, or it will be completely ignored; in the very least,
	// this is a formalization for deprecating services.
	Deprecated *bool `protobuf:"varint,33,opt,name=deprecated,def=0" json:"deprecated,omitempty"`
	// The parser stores options it doesn't recognize here. See above.
	UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceOptions) Descriptor deprecated

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

Deprecated: Use ServiceOptions.ProtoReflect.Descriptor instead.

func (*ServiceOptions) GetDeprecated

func (x *ServiceOptions) GetDeprecated() bool

func (*ServiceOptions) GetUninterpretedOption

func (x *ServiceOptions) GetUninterpretedOption() []*UninterpretedOption

func (*ServiceOptions) ProtoMessage

func (*ServiceOptions) ProtoMessage()

func (*ServiceOptions) ProtoReflect

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

func (*ServiceOptions) Reset

func (x *ServiceOptions) Reset()

func (*ServiceOptions) String

func (x *ServiceOptions) String() string

func (*ServiceOptions) Validate

func (m *ServiceOptions) Validate() error

Validate checks the field values on ServiceOptions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceOptions) ValidateAll

func (m *ServiceOptions) ValidateAll() error

ValidateAll checks the field values on ServiceOptions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceOptionsMultiError, or nil if none found.

type ServiceOptionsMultiError

type ServiceOptionsMultiError []error

ServiceOptionsMultiError is an error wrapping multiple validation errors returned by ServiceOptions.ValidateAll() if the designated constraints aren't met.

func (ServiceOptionsMultiError) AllErrors

func (m ServiceOptionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceOptionsMultiError) Error

func (m ServiceOptionsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ServiceOptionsValidationError

type ServiceOptionsValidationError struct {
	// contains filtered or unexported fields
}

ServiceOptionsValidationError is the validation error returned by ServiceOptions.Validate if the designated constraints aren't met.

func (ServiceOptionsValidationError) Cause

Cause function returns cause value.

func (ServiceOptionsValidationError) Error

Error satisfies the builtin error interface

func (ServiceOptionsValidationError) ErrorName

func (e ServiceOptionsValidationError) ErrorName() string

ErrorName returns error name.

func (ServiceOptionsValidationError) Field

Field function returns field value.

func (ServiceOptionsValidationError) Key

Key function returns key value.

func (ServiceOptionsValidationError) Reason

Reason function returns reason value.

type SourceCodeInfo

type SourceCodeInfo struct {

	// A Location identifies a piece of source code in a .proto file which
	// corresponds to a particular definition.  This information is intended
	// to be useful to IDEs, code indexers, documentation generators, and similar
	// tools.
	//
	// For example, say we have a file like:
	//
	//	message Foo {
	//	  optional string foo = 1;
	//	}
	//
	// Let's look at just the field definition:
	//
	//	optional string foo = 1;
	//	^       ^^     ^^  ^  ^^^
	//	a       bc     de  f  ghi
	//
	// We have the following locations:
	//
	//	span   path               represents
	//	[a,i)  [ 4, 0, 2, 0 ]     The whole field definition.
	//	[a,b)  [ 4, 0, 2, 0, 4 ]  The label (optional).
	//	[c,d)  [ 4, 0, 2, 0, 5 ]  The type (string).
	//	[e,f)  [ 4, 0, 2, 0, 1 ]  The name (foo).
	//	[g,h)  [ 4, 0, 2, 0, 3 ]  The number (1).
	//
	// Notes:
	//   - A location may refer to a repeated field itself (i.e. not to any
	//     particular index within it).  This is used whenever a set of elements are
	//     logically enclosed in a single code segment.  For example, an entire
	//     extend block (possibly containing multiple extension definitions) will
	//     have an outer location whose path refers to the "extensions" repeated
	//     field without an index.
	//   - Multiple locations may have the same path.  This happens when a single
	//     logical declaration is spread out across multiple places.  The most
	//     obvious example is the "extend" block again -- there may be multiple
	//     extend blocks in the same scope, each of which will have the same path.
	//   - A location's span is not always a subset of its parent's span.  For
	//     example, the "extendee" of an extension declaration appears at the
	//     beginning of the "extend" block and is shared by all extensions within
	//     the block.
	//   - Just because a location's span is a subset of some other location's span
	//     does not mean that it is a descendant.  For example, a "group" defines
	//     both a type and a field in a single declaration.  Thus, the locations
	//     corresponding to the type and field and their components will overlap.
	//   - Code which tries to interpret locations should probably be designed to
	//     ignore those that it doesn't understand, as more types of locations could
	//     be recorded in the future.
	Location []*SourceCodeInfo_Location `protobuf:"bytes,1,rep,name=location" json:"location,omitempty"`
	// contains filtered or unexported fields
}

Encapsulates information about the original source file from which a FileDescriptorProto was generated.

func (*SourceCodeInfo) Descriptor deprecated

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

Deprecated: Use SourceCodeInfo.ProtoReflect.Descriptor instead.

func (*SourceCodeInfo) GetLocation

func (x *SourceCodeInfo) GetLocation() []*SourceCodeInfo_Location

func (*SourceCodeInfo) ProtoMessage

func (*SourceCodeInfo) ProtoMessage()

func (*SourceCodeInfo) ProtoReflect

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

func (*SourceCodeInfo) Reset

func (x *SourceCodeInfo) Reset()

func (*SourceCodeInfo) String

func (x *SourceCodeInfo) String() string

func (*SourceCodeInfo) Validate

func (m *SourceCodeInfo) Validate() error

Validate checks the field values on SourceCodeInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SourceCodeInfo) ValidateAll

func (m *SourceCodeInfo) ValidateAll() error

ValidateAll checks the field values on SourceCodeInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SourceCodeInfoMultiError, or nil if none found.

type SourceCodeInfoMultiError

type SourceCodeInfoMultiError []error

SourceCodeInfoMultiError is an error wrapping multiple validation errors returned by SourceCodeInfo.ValidateAll() if the designated constraints aren't met.

func (SourceCodeInfoMultiError) AllErrors

func (m SourceCodeInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SourceCodeInfoMultiError) Error

func (m SourceCodeInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SourceCodeInfoValidationError

type SourceCodeInfoValidationError struct {
	// contains filtered or unexported fields
}

SourceCodeInfoValidationError is the validation error returned by SourceCodeInfo.Validate if the designated constraints aren't met.

func (SourceCodeInfoValidationError) Cause

Cause function returns cause value.

func (SourceCodeInfoValidationError) Error

Error satisfies the builtin error interface

func (SourceCodeInfoValidationError) ErrorName

func (e SourceCodeInfoValidationError) ErrorName() string

ErrorName returns error name.

func (SourceCodeInfoValidationError) Field

Field function returns field value.

func (SourceCodeInfoValidationError) Key

Key function returns key value.

func (SourceCodeInfoValidationError) Reason

Reason function returns reason value.

type SourceCodeInfo_Location

type SourceCodeInfo_Location struct {

	// Identifies which part of the FileDescriptorProto was defined at this
	// location.
	//
	// Each element is a field number or an index.  They form a path from
	// the root FileDescriptorProto to the place where the definition occurs.
	// For example, this path:
	//
	//	[ 4, 3, 2, 7, 1 ]
	//
	// refers to:
	//
	//	file.message_type(3)  // 4, 3
	//	    .field(7)         // 2, 7
	//	    .name()           // 1
	//
	// This is because FileDescriptorProto.message_type has field number 4:
	//
	//	repeated DescriptorProto message_type = 4;
	//
	// and DescriptorProto.field has field number 2:
	//
	//	repeated FieldDescriptorProto field = 2;
	//
	// and FieldDescriptorProto.name has field number 1:
	//
	//	optional string name = 1;
	//
	// Thus, the above path gives the location of a field name.  If we removed
	// the last element:
	//
	//	[ 4, 3, 2, 7 ]
	//
	// this path refers to the whole field declaration (from the beginning
	// of the label to the terminating semicolon).
	Path []int32 `protobuf:"varint,1,rep,packed,name=path" json:"path,omitempty"`
	// Always has exactly three or four elements: start line, start column,
	// end line (optional, otherwise assumed same as start line), end column.
	// These are packed into a single field for efficiency.  Note that line
	// and column numbers are zero-based -- typically you will want to add
	// 1 to each before displaying to a user.
	Span []int32 `protobuf:"varint,2,rep,packed,name=span" json:"span,omitempty"`
	// If this SourceCodeInfo represents a complete declaration, these are any
	// comments appearing before and after the declaration which appear to be
	// attached to the declaration.
	//
	// A series of line comments appearing on consecutive lines, with no other
	// tokens appearing on those lines, will be treated as a single comment.
	//
	// leading_detached_comments will keep paragraphs of comments that appear
	// before (but not connected to) the current element. Each paragraph,
	// separated by empty lines, will be one comment element in the repeated
	// field.
	//
	// Only the comment content is provided; comment markers (e.g. //) are
	// stripped out.  For block comments, leading whitespace and an asterisk
	// will be stripped from the beginning of each line other than the first.
	// Newlines are included in the output.
	//
	// Examples:
	//
	//	optional int32 foo = 1;  // Comment attached to foo.
	//	// Comment attached to bar.
	//	optional int32 bar = 2;
	//
	//	optional string baz = 3;
	//	// Comment attached to baz.
	//	// Another line attached to baz.
	//
	//	// Comment attached to qux.
	//	//
	//	// Another line attached to qux.
	//	optional double qux = 4;
	//
	//	// Detached comment for corge. This is not leading or trailing comments
	//	// to qux or corge because there are blank lines separating it from
	//	// both.
	//
	//	// Detached comment for corge paragraph 2.
	//
	//	optional string corge = 5;
	//	/* Block comment attached
	//	 * to corge.  Leading asterisks
	//	 * will be removed. */
	//	/* Block comment attached to
	//	 * grault. */
	//	optional int32 grault = 6;
	//
	//	// ignored detached comments.
	LeadingComments         *string  `protobuf:"bytes,3,opt,name=leading_comments,json=leadingComments" json:"leading_comments,omitempty"`
	TrailingComments        *string  `protobuf:"bytes,4,opt,name=trailing_comments,json=trailingComments" json:"trailing_comments,omitempty"`
	LeadingDetachedComments []string `protobuf:"bytes,6,rep,name=leading_detached_comments,json=leadingDetachedComments" json:"leading_detached_comments,omitempty"`
	// contains filtered or unexported fields
}

func (*SourceCodeInfo_Location) Descriptor deprecated

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

Deprecated: Use SourceCodeInfo_Location.ProtoReflect.Descriptor instead.

func (*SourceCodeInfo_Location) GetLeadingComments

func (x *SourceCodeInfo_Location) GetLeadingComments() string

func (*SourceCodeInfo_Location) GetLeadingDetachedComments

func (x *SourceCodeInfo_Location) GetLeadingDetachedComments() []string

func (*SourceCodeInfo_Location) GetPath

func (x *SourceCodeInfo_Location) GetPath() []int32

func (*SourceCodeInfo_Location) GetSpan

func (x *SourceCodeInfo_Location) GetSpan() []int32

func (*SourceCodeInfo_Location) GetTrailingComments

func (x *SourceCodeInfo_Location) GetTrailingComments() string

func (*SourceCodeInfo_Location) ProtoMessage

func (*SourceCodeInfo_Location) ProtoMessage()

func (*SourceCodeInfo_Location) ProtoReflect

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

func (*SourceCodeInfo_Location) Reset

func (x *SourceCodeInfo_Location) Reset()

func (*SourceCodeInfo_Location) String

func (x *SourceCodeInfo_Location) String() string

func (*SourceCodeInfo_Location) Validate

func (m *SourceCodeInfo_Location) Validate() error

Validate checks the field values on SourceCodeInfo_Location with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SourceCodeInfo_Location) ValidateAll

func (m *SourceCodeInfo_Location) ValidateAll() error

ValidateAll checks the field values on SourceCodeInfo_Location with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SourceCodeInfo_LocationMultiError, or nil if none found.

type SourceCodeInfo_LocationMultiError

type SourceCodeInfo_LocationMultiError []error

SourceCodeInfo_LocationMultiError is an error wrapping multiple validation errors returned by SourceCodeInfo_Location.ValidateAll() if the designated constraints aren't met.

func (SourceCodeInfo_LocationMultiError) AllErrors

func (m SourceCodeInfo_LocationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SourceCodeInfo_LocationMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SourceCodeInfo_LocationValidationError

type SourceCodeInfo_LocationValidationError struct {
	// contains filtered or unexported fields
}

SourceCodeInfo_LocationValidationError is the validation error returned by SourceCodeInfo_Location.Validate if the designated constraints aren't met.

func (SourceCodeInfo_LocationValidationError) Cause

Cause function returns cause value.

func (SourceCodeInfo_LocationValidationError) Error

Error satisfies the builtin error interface

func (SourceCodeInfo_LocationValidationError) ErrorName

ErrorName returns error name.

func (SourceCodeInfo_LocationValidationError) Field

Field function returns field value.

func (SourceCodeInfo_LocationValidationError) Key

Key function returns key value.

func (SourceCodeInfo_LocationValidationError) Reason

Reason function returns reason value.

type UninterpretedOption

type UninterpretedOption struct {
	Name []*UninterpretedOption_NamePart `protobuf:"bytes,2,rep,name=name" json:"name,omitempty"`
	// The value of the uninterpreted option, in whatever type the tokenizer
	// identified it as during parsing. Exactly one of these should be set.
	IdentifierValue  *string  `protobuf:"bytes,3,opt,name=identifier_value,json=identifierValue" json:"identifier_value,omitempty"`
	PositiveIntValue *uint64  `protobuf:"varint,4,opt,name=positive_int_value,json=positiveIntValue" json:"positive_int_value,omitempty"`
	NegativeIntValue *int64   `protobuf:"varint,5,opt,name=negative_int_value,json=negativeIntValue" json:"negative_int_value,omitempty"`
	DoubleValue      *float64 `protobuf:"fixed64,6,opt,name=double_value,json=doubleValue" json:"double_value,omitempty"`
	StringValue      []byte   `protobuf:"bytes,7,opt,name=string_value,json=stringValue" json:"string_value,omitempty"`
	AggregateValue   *string  `protobuf:"bytes,8,opt,name=aggregate_value,json=aggregateValue" json:"aggregate_value,omitempty"`
	// contains filtered or unexported fields
}

A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.

func (*UninterpretedOption) Descriptor deprecated

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

Deprecated: Use UninterpretedOption.ProtoReflect.Descriptor instead.

func (*UninterpretedOption) GetAggregateValue

func (x *UninterpretedOption) GetAggregateValue() string

func (*UninterpretedOption) GetDoubleValue

func (x *UninterpretedOption) GetDoubleValue() float64

func (*UninterpretedOption) GetIdentifierValue

func (x *UninterpretedOption) GetIdentifierValue() string

func (*UninterpretedOption) GetName

func (*UninterpretedOption) GetNegativeIntValue

func (x *UninterpretedOption) GetNegativeIntValue() int64

func (*UninterpretedOption) GetPositiveIntValue

func (x *UninterpretedOption) GetPositiveIntValue() uint64

func (*UninterpretedOption) GetStringValue

func (x *UninterpretedOption) GetStringValue() []byte

func (*UninterpretedOption) ProtoMessage

func (*UninterpretedOption) ProtoMessage()

func (*UninterpretedOption) ProtoReflect

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

func (*UninterpretedOption) Reset

func (x *UninterpretedOption) Reset()

func (*UninterpretedOption) String

func (x *UninterpretedOption) String() string

func (*UninterpretedOption) Validate

func (m *UninterpretedOption) Validate() error

Validate checks the field values on UninterpretedOption with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UninterpretedOption) ValidateAll

func (m *UninterpretedOption) ValidateAll() error

ValidateAll checks the field values on UninterpretedOption with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UninterpretedOptionMultiError, or nil if none found.

type UninterpretedOptionMultiError

type UninterpretedOptionMultiError []error

UninterpretedOptionMultiError is an error wrapping multiple validation errors returned by UninterpretedOption.ValidateAll() if the designated constraints aren't met.

func (UninterpretedOptionMultiError) AllErrors

func (m UninterpretedOptionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UninterpretedOptionMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UninterpretedOptionValidationError

type UninterpretedOptionValidationError struct {
	// contains filtered or unexported fields
}

UninterpretedOptionValidationError is the validation error returned by UninterpretedOption.Validate if the designated constraints aren't met.

func (UninterpretedOptionValidationError) Cause

Cause function returns cause value.

func (UninterpretedOptionValidationError) Error

Error satisfies the builtin error interface

func (UninterpretedOptionValidationError) ErrorName

ErrorName returns error name.

func (UninterpretedOptionValidationError) Field

Field function returns field value.

func (UninterpretedOptionValidationError) Key

Key function returns key value.

func (UninterpretedOptionValidationError) Reason

Reason function returns reason value.

type UninterpretedOption_NamePart

type UninterpretedOption_NamePart struct {
	NamePart    *string `protobuf:"bytes,1,req,name=name_part,json=namePart" json:"name_part,omitempty"`
	IsExtension *bool   `protobuf:"varint,2,req,name=is_extension,json=isExtension" json:"is_extension,omitempty"`
	// contains filtered or unexported fields
}

The name of the uninterpreted option. Each string represents a segment in a dot-separated name. is_extension is true iff a segment represents an extension (denoted with parentheses in options specs in .proto files). E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents "foo.(bar.baz).qux".

func (*UninterpretedOption_NamePart) Descriptor deprecated

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

Deprecated: Use UninterpretedOption_NamePart.ProtoReflect.Descriptor instead.

func (*UninterpretedOption_NamePart) GetIsExtension

func (x *UninterpretedOption_NamePart) GetIsExtension() bool

func (*UninterpretedOption_NamePart) GetNamePart

func (x *UninterpretedOption_NamePart) GetNamePart() string

func (*UninterpretedOption_NamePart) ProtoMessage

func (*UninterpretedOption_NamePart) ProtoMessage()

func (*UninterpretedOption_NamePart) ProtoReflect

func (*UninterpretedOption_NamePart) Reset

func (x *UninterpretedOption_NamePart) Reset()

func (*UninterpretedOption_NamePart) String

func (*UninterpretedOption_NamePart) Validate

func (m *UninterpretedOption_NamePart) Validate() error

Validate checks the field values on UninterpretedOption_NamePart with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UninterpretedOption_NamePart) ValidateAll

func (m *UninterpretedOption_NamePart) ValidateAll() error

ValidateAll checks the field values on UninterpretedOption_NamePart with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UninterpretedOption_NamePartMultiError, or nil if none found.

type UninterpretedOption_NamePartMultiError

type UninterpretedOption_NamePartMultiError []error

UninterpretedOption_NamePartMultiError is an error wrapping multiple validation errors returned by UninterpretedOption_NamePart.ValidateAll() if the designated constraints aren't met.

func (UninterpretedOption_NamePartMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (UninterpretedOption_NamePartMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UninterpretedOption_NamePartValidationError

type UninterpretedOption_NamePartValidationError struct {
	// contains filtered or unexported fields
}

UninterpretedOption_NamePartValidationError is the validation error returned by UninterpretedOption_NamePart.Validate if the designated constraints aren't met.

func (UninterpretedOption_NamePartValidationError) Cause

Cause function returns cause value.

func (UninterpretedOption_NamePartValidationError) Error

Error satisfies the builtin error interface

func (UninterpretedOption_NamePartValidationError) ErrorName

ErrorName returns error name.

func (UninterpretedOption_NamePartValidationError) Field

Field function returns field value.

func (UninterpretedOption_NamePartValidationError) Key

Key function returns key value.

func (UninterpretedOption_NamePartValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

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