query

package
v1.0.6 Latest Latest
Warning

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

Go to latest
Published: Aug 12, 2025 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	EnumQueryRequest_Status_name = map[int32]string{
		0: "UNKNOWN",
		1: "OK",
		2: "CANCELLED",
		3: "UNKNOWN_ERROR",
	}
	EnumQueryRequest_Status_value = map[string]int32{
		"UNKNOWN":       0,
		"OK":            1,
		"CANCELLED":     2,
		"UNKNOWN_ERROR": 3,
	}
)

Enum value maps for EnumQueryRequest_Status.

View Source
var File_query_query_proto protoreflect.FileDescriptor

Functions

func AppendBoolQueryGorillaRoute

func AppendBoolQueryGorillaRoute(router *mux.Router, service BoolQueryGorillaService, opts ...gorilla.Option) *mux.Router

func AppendDoubleQueryGorillaRoute

func AppendDoubleQueryGorillaRoute(router *mux.Router, service DoubleQueryGorillaService, opts ...gorilla.Option) *mux.Router

func AppendEnumQueryGorillaRoute

func AppendEnumQueryGorillaRoute(router *mux.Router, service EnumQueryGorillaService, opts ...gorilla.Option) *mux.Router

func AppendFloatQueryGorillaRoute

func AppendFloatQueryGorillaRoute(router *mux.Router, service FloatQueryGorillaService, opts ...gorilla.Option) *mux.Router

func AppendInt32QueryGorillaRoute

func AppendInt32QueryGorillaRoute(router *mux.Router, service Int32QueryGorillaService, opts ...gorilla.Option) *mux.Router

func AppendInt64QueryGorillaRoute

func AppendInt64QueryGorillaRoute(router *mux.Router, service Int64QueryGorillaService, opts ...gorilla.Option) *mux.Router

func AppendStringQueryGorillaRoute

func AppendStringQueryGorillaRoute(router *mux.Router, service StringQueryGorillaService, opts ...gorilla.Option) *mux.Router

func AppendUint32QueryGorillaRoute

func AppendUint32QueryGorillaRoute(router *mux.Router, service Uint32QueryGorillaService, opts ...gorilla.Option) *mux.Router

func AppendUint64QueryGorillaRoute

func AppendUint64QueryGorillaRoute(router *mux.Router, service Uint64QueryGorillaService, opts ...gorilla.Option) *mux.Router

Types

type BoolQueryGorillaService

type BoolQueryGorillaService interface {
	BoolQuery(ctx context.Context, request *BoolQueryRequest) (*httpbody.HttpBody, error)
}

type BoolQueryRequest

type BoolQueryRequest struct {
	Bool         bool                    `protobuf:"varint,1,opt,name=bool,proto3" json:"bool,omitempty"`
	OptBool      *bool                   `protobuf:"varint,2,opt,name=opt_bool,json=optBool,proto3,oneof" json:"opt_bool,omitempty"`
	WrapBool     *wrapperspb.BoolValue   `protobuf:"bytes,3,opt,name=wrap_bool,json=wrapBool,proto3" json:"wrap_bool,omitempty"`
	ListBool     []bool                  `protobuf:"varint,4,rep,packed,name=list_bool,json=listBool,proto3" json:"list_bool,omitempty"`
	ListWrapBool []*wrapperspb.BoolValue `protobuf:"bytes,5,rep,name=list_wrap_bool,json=listWrapBool,proto3" json:"list_wrap_bool,omitempty"`
	// contains filtered or unexported fields
}

func (*BoolQueryRequest) Descriptor deprecated

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

Deprecated: Use BoolQueryRequest.ProtoReflect.Descriptor instead.

func (*BoolQueryRequest) GetBool

func (x *BoolQueryRequest) GetBool() bool

func (*BoolQueryRequest) GetListBool

func (x *BoolQueryRequest) GetListBool() []bool

func (*BoolQueryRequest) GetListWrapBool

func (x *BoolQueryRequest) GetListWrapBool() []*wrapperspb.BoolValue

func (*BoolQueryRequest) GetOptBool

func (x *BoolQueryRequest) GetOptBool() bool

func (*BoolQueryRequest) GetWrapBool

func (x *BoolQueryRequest) GetWrapBool() *wrapperspb.BoolValue

func (*BoolQueryRequest) ProtoMessage

func (*BoolQueryRequest) ProtoMessage()

func (*BoolQueryRequest) ProtoReflect

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

func (*BoolQueryRequest) Reset

func (x *BoolQueryRequest) Reset()

func (*BoolQueryRequest) String

func (x *BoolQueryRequest) String() string

type DoubleQueryGorillaService

type DoubleQueryGorillaService interface {
	DoubleQuery(ctx context.Context, request *DoubleQueryRequest) (*httpbody.HttpBody, error)
}

type DoubleQueryRequest

type DoubleQueryRequest struct {
	Double         float64                   `protobuf:"fixed64,1,opt,name=double,proto3" json:"double,omitempty"`
	OptDouble      *float64                  `protobuf:"fixed64,2,opt,name=opt_double,json=optDouble,proto3,oneof" json:"opt_double,omitempty"`
	WrapDouble     *wrapperspb.DoubleValue   `protobuf:"bytes,3,opt,name=wrap_double,json=wrapDouble,proto3" json:"wrap_double,omitempty"`
	ListDouble     []float64                 `protobuf:"fixed64,4,rep,packed,name=list_double,json=listDouble,proto3" json:"list_double,omitempty"`
	ListWrapDouble []*wrapperspb.DoubleValue `protobuf:"bytes,5,rep,name=list_wrap_double,json=listWrapDouble,proto3" json:"list_wrap_double,omitempty"`
	// contains filtered or unexported fields
}

func (*DoubleQueryRequest) Descriptor deprecated

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

Deprecated: Use DoubleQueryRequest.ProtoReflect.Descriptor instead.

func (*DoubleQueryRequest) GetDouble

func (x *DoubleQueryRequest) GetDouble() float64

func (*DoubleQueryRequest) GetListDouble

func (x *DoubleQueryRequest) GetListDouble() []float64

func (*DoubleQueryRequest) GetListWrapDouble

func (x *DoubleQueryRequest) GetListWrapDouble() []*wrapperspb.DoubleValue

func (*DoubleQueryRequest) GetOptDouble

func (x *DoubleQueryRequest) GetOptDouble() float64

func (*DoubleQueryRequest) GetWrapDouble

func (x *DoubleQueryRequest) GetWrapDouble() *wrapperspb.DoubleValue

func (*DoubleQueryRequest) ProtoMessage

func (*DoubleQueryRequest) ProtoMessage()

func (*DoubleQueryRequest) ProtoReflect

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

func (*DoubleQueryRequest) Reset

func (x *DoubleQueryRequest) Reset()

func (*DoubleQueryRequest) String

func (x *DoubleQueryRequest) String() string

type EnumQueryGorillaService

type EnumQueryGorillaService interface {
	EnumQuery(ctx context.Context, request *EnumQueryRequest) (*httpbody.HttpBody, error)
}

type EnumQueryRequest

type EnumQueryRequest struct {
	Status     EnumQueryRequest_Status   `protobuf:"varint,1,opt,name=status,proto3,enum=leo.gorilla.example.query.v1.EnumQueryRequest_Status" json:"status,omitempty"`
	OptStatus  *EnumQueryRequest_Status  `` /* 153-byte string literal not displayed */
	ListStatus []EnumQueryRequest_Status `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*EnumQueryRequest) Descriptor deprecated

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

Deprecated: Use EnumQueryRequest.ProtoReflect.Descriptor instead.

func (*EnumQueryRequest) GetListStatus

func (x *EnumQueryRequest) GetListStatus() []EnumQueryRequest_Status

func (*EnumQueryRequest) GetOptStatus

func (x *EnumQueryRequest) GetOptStatus() EnumQueryRequest_Status

func (*EnumQueryRequest) GetStatus

func (*EnumQueryRequest) ProtoMessage

func (*EnumQueryRequest) ProtoMessage()

func (*EnumQueryRequest) ProtoReflect

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

func (*EnumQueryRequest) Reset

func (x *EnumQueryRequest) Reset()

func (*EnumQueryRequest) String

func (x *EnumQueryRequest) String() string

type EnumQueryRequest_Status

type EnumQueryRequest_Status int32
const (
	EnumQueryRequest_UNKNOWN       EnumQueryRequest_Status = 0
	EnumQueryRequest_OK            EnumQueryRequest_Status = 1
	EnumQueryRequest_CANCELLED     EnumQueryRequest_Status = 2
	EnumQueryRequest_UNKNOWN_ERROR EnumQueryRequest_Status = 3
)

func (EnumQueryRequest_Status) Descriptor

func (EnumQueryRequest_Status) Enum

func (EnumQueryRequest_Status) EnumDescriptor deprecated

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

Deprecated: Use EnumQueryRequest_Status.Descriptor instead.

func (EnumQueryRequest_Status) Number

func (EnumQueryRequest_Status) String

func (x EnumQueryRequest_Status) String() string

func (EnumQueryRequest_Status) Type

type FloatQueryGorillaService

type FloatQueryGorillaService interface {
	FloatQuery(ctx context.Context, request *FloatQueryRequest) (*httpbody.HttpBody, error)
}

type FloatQueryRequest

type FloatQueryRequest struct {
	Float         float32                  `protobuf:"fixed32,1,opt,name=float,proto3" json:"float,omitempty"`
	OptFloat      *float32                 `protobuf:"fixed32,2,opt,name=opt_float,json=optFloat,proto3,oneof" json:"opt_float,omitempty"`
	WrapFloat     *wrapperspb.FloatValue   `protobuf:"bytes,3,opt,name=wrap_float,json=wrapFloat,proto3" json:"wrap_float,omitempty"`
	ListFloat     []float32                `protobuf:"fixed32,4,rep,packed,name=list_float,json=listFloat,proto3" json:"list_float,omitempty"`
	ListWrapFloat []*wrapperspb.FloatValue `protobuf:"bytes,5,rep,name=list_wrap_float,json=listWrapFloat,proto3" json:"list_wrap_float,omitempty"`
	// contains filtered or unexported fields
}

func (*FloatQueryRequest) Descriptor deprecated

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

Deprecated: Use FloatQueryRequest.ProtoReflect.Descriptor instead.

func (*FloatQueryRequest) GetFloat

func (x *FloatQueryRequest) GetFloat() float32

func (*FloatQueryRequest) GetListFloat

func (x *FloatQueryRequest) GetListFloat() []float32

func (*FloatQueryRequest) GetListWrapFloat

func (x *FloatQueryRequest) GetListWrapFloat() []*wrapperspb.FloatValue

func (*FloatQueryRequest) GetOptFloat

func (x *FloatQueryRequest) GetOptFloat() float32

func (*FloatQueryRequest) GetWrapFloat

func (x *FloatQueryRequest) GetWrapFloat() *wrapperspb.FloatValue

func (*FloatQueryRequest) ProtoMessage

func (*FloatQueryRequest) ProtoMessage()

func (*FloatQueryRequest) ProtoReflect

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

func (*FloatQueryRequest) Reset

func (x *FloatQueryRequest) Reset()

func (*FloatQueryRequest) String

func (x *FloatQueryRequest) String() string

type Int32QueryGorillaService

type Int32QueryGorillaService interface {
	Int32Query(ctx context.Context, request *Int32QueryRequest) (*httpbody.HttpBody, error)
}

type Int32QueryRequest

type Int32QueryRequest struct {
	Int32         int32                    `protobuf:"varint,1,opt,name=int32,proto3" json:"int32,omitempty"`
	Sint32        int32                    `protobuf:"zigzag32,2,opt,name=sint32,proto3" json:"sint32,omitempty"`
	Sfixed32      int32                    `protobuf:"fixed32,3,opt,name=sfixed32,proto3" json:"sfixed32,omitempty"`
	OptInt32      *int32                   `protobuf:"varint,4,opt,name=opt_int32,json=optInt32,proto3,oneof" json:"opt_int32,omitempty"`
	OptSint32     *int32                   `protobuf:"zigzag32,5,opt,name=opt_sint32,json=optSint32,proto3,oneof" json:"opt_sint32,omitempty"`
	OptSfixed32   *int32                   `protobuf:"fixed32,6,opt,name=opt_sfixed32,json=optSfixed32,proto3,oneof" json:"opt_sfixed32,omitempty"`
	WrapInt32     *wrapperspb.Int32Value   `protobuf:"bytes,7,opt,name=wrap_int32,json=wrapInt32,proto3" json:"wrap_int32,omitempty"`
	ListInt32     []int32                  `protobuf:"varint,8,rep,packed,name=list_int32,json=listInt32,proto3" json:"list_int32,omitempty"`
	ListSint32    []int32                  `protobuf:"zigzag32,9,rep,packed,name=list_sint32,json=listSint32,proto3" json:"list_sint32,omitempty"`
	ListSfixed32  []int32                  `protobuf:"fixed32,10,rep,packed,name=list_sfixed32,json=listSfixed32,proto3" json:"list_sfixed32,omitempty"`
	ListWrapInt32 []*wrapperspb.Int32Value `protobuf:"bytes,11,rep,name=list_wrap_int32,json=listWrapInt32,proto3" json:"list_wrap_int32,omitempty"`
	// contains filtered or unexported fields
}

func (*Int32QueryRequest) Descriptor deprecated

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

Deprecated: Use Int32QueryRequest.ProtoReflect.Descriptor instead.

func (*Int32QueryRequest) GetInt32

func (x *Int32QueryRequest) GetInt32() int32

func (*Int32QueryRequest) GetListInt32

func (x *Int32QueryRequest) GetListInt32() []int32

func (*Int32QueryRequest) GetListSfixed32

func (x *Int32QueryRequest) GetListSfixed32() []int32

func (*Int32QueryRequest) GetListSint32

func (x *Int32QueryRequest) GetListSint32() []int32

func (*Int32QueryRequest) GetListWrapInt32

func (x *Int32QueryRequest) GetListWrapInt32() []*wrapperspb.Int32Value

func (*Int32QueryRequest) GetOptInt32

func (x *Int32QueryRequest) GetOptInt32() int32

func (*Int32QueryRequest) GetOptSfixed32

func (x *Int32QueryRequest) GetOptSfixed32() int32

func (*Int32QueryRequest) GetOptSint32

func (x *Int32QueryRequest) GetOptSint32() int32

func (*Int32QueryRequest) GetSfixed32

func (x *Int32QueryRequest) GetSfixed32() int32

func (*Int32QueryRequest) GetSint32

func (x *Int32QueryRequest) GetSint32() int32

func (*Int32QueryRequest) GetWrapInt32

func (x *Int32QueryRequest) GetWrapInt32() *wrapperspb.Int32Value

func (*Int32QueryRequest) ProtoMessage

func (*Int32QueryRequest) ProtoMessage()

func (*Int32QueryRequest) ProtoReflect

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

func (*Int32QueryRequest) Reset

func (x *Int32QueryRequest) Reset()

func (*Int32QueryRequest) String

func (x *Int32QueryRequest) String() string

type Int64QueryGorillaService

type Int64QueryGorillaService interface {
	Int64Query(ctx context.Context, request *Int64QueryRequest) (*httpbody.HttpBody, error)
}

type Int64QueryRequest

type Int64QueryRequest struct {
	Int64         int64                    `protobuf:"varint,1,opt,name=int64,proto3" json:"int64,omitempty"`
	Sint64        int64                    `protobuf:"zigzag64,2,opt,name=sint64,proto3" json:"sint64,omitempty"`
	Sfixed64      int64                    `protobuf:"fixed64,3,opt,name=sfixed64,proto3" json:"sfixed64,omitempty"`
	OptInt64      *int64                   `protobuf:"varint,4,opt,name=opt_int64,json=optInt64,proto3,oneof" json:"opt_int64,omitempty"`
	OptSint64     *int64                   `protobuf:"zigzag64,5,opt,name=opt_sint64,json=optSint64,proto3,oneof" json:"opt_sint64,omitempty"`
	OptSfixed64   *int64                   `protobuf:"fixed64,6,opt,name=opt_sfixed64,json=optSfixed64,proto3,oneof" json:"opt_sfixed64,omitempty"`
	WrapInt64     *wrapperspb.Int64Value   `protobuf:"bytes,7,opt,name=wrap_int64,json=wrapInt64,proto3" json:"wrap_int64,omitempty"`
	ListInt64     []int64                  `protobuf:"varint,8,rep,packed,name=list_int64,json=listInt64,proto3" json:"list_int64,omitempty"`
	ListSint64    []int64                  `protobuf:"zigzag64,9,rep,packed,name=list_sint64,json=listSint64,proto3" json:"list_sint64,omitempty"`
	ListSfixed64  []int64                  `protobuf:"fixed64,10,rep,packed,name=list_sfixed64,json=listSfixed64,proto3" json:"list_sfixed64,omitempty"`
	ListWrapInt64 []*wrapperspb.Int64Value `protobuf:"bytes,11,rep,name=list_wrap_int64,json=listWrapInt64,proto3" json:"list_wrap_int64,omitempty"`
	// contains filtered or unexported fields
}

func (*Int64QueryRequest) Descriptor deprecated

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

Deprecated: Use Int64QueryRequest.ProtoReflect.Descriptor instead.

func (*Int64QueryRequest) GetInt64

func (x *Int64QueryRequest) GetInt64() int64

func (*Int64QueryRequest) GetListInt64

func (x *Int64QueryRequest) GetListInt64() []int64

func (*Int64QueryRequest) GetListSfixed64

func (x *Int64QueryRequest) GetListSfixed64() []int64

func (*Int64QueryRequest) GetListSint64

func (x *Int64QueryRequest) GetListSint64() []int64

func (*Int64QueryRequest) GetListWrapInt64

func (x *Int64QueryRequest) GetListWrapInt64() []*wrapperspb.Int64Value

func (*Int64QueryRequest) GetOptInt64

func (x *Int64QueryRequest) GetOptInt64() int64

func (*Int64QueryRequest) GetOptSfixed64

func (x *Int64QueryRequest) GetOptSfixed64() int64

func (*Int64QueryRequest) GetOptSint64

func (x *Int64QueryRequest) GetOptSint64() int64

func (*Int64QueryRequest) GetSfixed64

func (x *Int64QueryRequest) GetSfixed64() int64

func (*Int64QueryRequest) GetSint64

func (x *Int64QueryRequest) GetSint64() int64

func (*Int64QueryRequest) GetWrapInt64

func (x *Int64QueryRequest) GetWrapInt64() *wrapperspb.Int64Value

func (*Int64QueryRequest) ProtoMessage

func (*Int64QueryRequest) ProtoMessage()

func (*Int64QueryRequest) ProtoReflect

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

func (*Int64QueryRequest) Reset

func (x *Int64QueryRequest) Reset()

func (*Int64QueryRequest) String

func (x *Int64QueryRequest) String() string

type StringQueryGorillaService

type StringQueryGorillaService interface {
	StringQuery(ctx context.Context, request *StringQueryRequest) (*httpbody.HttpBody, error)
}

type StringQueryRequest

type StringQueryRequest struct {
	String_        string                    `protobuf:"bytes,1,opt,name=string,proto3" json:"string,omitempty"`
	OptString      *string                   `protobuf:"bytes,2,opt,name=opt_string,json=optString,proto3,oneof" json:"opt_string,omitempty"`
	WrapString     *wrapperspb.StringValue   `protobuf:"bytes,3,opt,name=wrap_string,json=wrapString,proto3" json:"wrap_string,omitempty"`
	ListString     []string                  `protobuf:"bytes,4,rep,name=list_string,json=listString,proto3" json:"list_string,omitempty"`
	ListWrapString []*wrapperspb.StringValue `protobuf:"bytes,5,rep,name=list_wrap_string,json=listWrapString,proto3" json:"list_wrap_string,omitempty"`
	// contains filtered or unexported fields
}

func (*StringQueryRequest) Descriptor deprecated

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

Deprecated: Use StringQueryRequest.ProtoReflect.Descriptor instead.

func (*StringQueryRequest) GetListString

func (x *StringQueryRequest) GetListString() []string

func (*StringQueryRequest) GetListWrapString

func (x *StringQueryRequest) GetListWrapString() []*wrapperspb.StringValue

func (*StringQueryRequest) GetOptString

func (x *StringQueryRequest) GetOptString() string

func (*StringQueryRequest) GetString_

func (x *StringQueryRequest) GetString_() string

func (*StringQueryRequest) GetWrapString

func (x *StringQueryRequest) GetWrapString() *wrapperspb.StringValue

func (*StringQueryRequest) ProtoMessage

func (*StringQueryRequest) ProtoMessage()

func (*StringQueryRequest) ProtoReflect

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

func (*StringQueryRequest) Reset

func (x *StringQueryRequest) Reset()

func (*StringQueryRequest) String

func (x *StringQueryRequest) String() string

type Uint32QueryGorillaService

type Uint32QueryGorillaService interface {
	Uint32Query(ctx context.Context, request *Uint32QueryRequest) (*httpbody.HttpBody, error)
}

type Uint32QueryRequest

type Uint32QueryRequest struct {
	Uint32         uint32                    `protobuf:"varint,1,opt,name=uint32,proto3" json:"uint32,omitempty"`
	Fixed32        uint32                    `protobuf:"fixed32,2,opt,name=fixed32,proto3" json:"fixed32,omitempty"`
	OptUint32      *uint32                   `protobuf:"varint,3,opt,name=opt_uint32,json=optUint32,proto3,oneof" json:"opt_uint32,omitempty"`
	OptFixed32     *uint32                   `protobuf:"fixed32,4,opt,name=opt_fixed32,json=optFixed32,proto3,oneof" json:"opt_fixed32,omitempty"`
	WrapUint32     *wrapperspb.UInt32Value   `protobuf:"bytes,5,opt,name=wrap_uint32,json=wrapUint32,proto3" json:"wrap_uint32,omitempty"`
	ListUint32     []uint32                  `protobuf:"varint,6,rep,packed,name=list_uint32,json=listUint32,proto3" json:"list_uint32,omitempty"`
	ListFixed32    []uint32                  `protobuf:"fixed32,7,rep,packed,name=list_fixed32,json=listFixed32,proto3" json:"list_fixed32,omitempty"`
	ListWrapUint32 []*wrapperspb.UInt32Value `protobuf:"bytes,8,rep,name=list_wrap_uint32,json=listWrapUint32,proto3" json:"list_wrap_uint32,omitempty"`
	// contains filtered or unexported fields
}

func (*Uint32QueryRequest) Descriptor deprecated

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

Deprecated: Use Uint32QueryRequest.ProtoReflect.Descriptor instead.

func (*Uint32QueryRequest) GetFixed32

func (x *Uint32QueryRequest) GetFixed32() uint32

func (*Uint32QueryRequest) GetListFixed32

func (x *Uint32QueryRequest) GetListFixed32() []uint32

func (*Uint32QueryRequest) GetListUint32

func (x *Uint32QueryRequest) GetListUint32() []uint32

func (*Uint32QueryRequest) GetListWrapUint32

func (x *Uint32QueryRequest) GetListWrapUint32() []*wrapperspb.UInt32Value

func (*Uint32QueryRequest) GetOptFixed32

func (x *Uint32QueryRequest) GetOptFixed32() uint32

func (*Uint32QueryRequest) GetOptUint32

func (x *Uint32QueryRequest) GetOptUint32() uint32

func (*Uint32QueryRequest) GetUint32

func (x *Uint32QueryRequest) GetUint32() uint32

func (*Uint32QueryRequest) GetWrapUint32

func (x *Uint32QueryRequest) GetWrapUint32() *wrapperspb.UInt32Value

func (*Uint32QueryRequest) ProtoMessage

func (*Uint32QueryRequest) ProtoMessage()

func (*Uint32QueryRequest) ProtoReflect

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

func (*Uint32QueryRequest) Reset

func (x *Uint32QueryRequest) Reset()

func (*Uint32QueryRequest) String

func (x *Uint32QueryRequest) String() string

type Uint64QueryGorillaService

type Uint64QueryGorillaService interface {
	Uint64Query(ctx context.Context, request *Uint64QueryRequest) (*httpbody.HttpBody, error)
}

type Uint64QueryRequest

type Uint64QueryRequest struct {
	Uint64         uint64                    `protobuf:"varint,1,opt,name=uint64,proto3" json:"uint64,omitempty"`
	Fixed64        uint64                    `protobuf:"fixed64,2,opt,name=fixed64,proto3" json:"fixed64,omitempty"`
	OptUint64      *uint64                   `protobuf:"varint,3,opt,name=opt_uint64,json=optUint64,proto3,oneof" json:"opt_uint64,omitempty"`
	OptFixed64     *uint64                   `protobuf:"fixed64,4,opt,name=opt_fixed64,json=optFixed64,proto3,oneof" json:"opt_fixed64,omitempty"`
	WrapUint64     *wrapperspb.UInt64Value   `protobuf:"bytes,5,opt,name=wrap_uint64,json=wrapUint64,proto3" json:"wrap_uint64,omitempty"`
	ListUint64     []uint64                  `protobuf:"varint,6,rep,packed,name=list_uint64,json=listUint64,proto3" json:"list_uint64,omitempty"`
	ListFixed64    []uint64                  `protobuf:"fixed64,7,rep,packed,name=list_fixed64,json=listFixed64,proto3" json:"list_fixed64,omitempty"`
	ListWrapUint64 []*wrapperspb.UInt64Value `protobuf:"bytes,8,rep,name=list_wrap_uint64,json=listWrapUint64,proto3" json:"list_wrap_uint64,omitempty"`
	// contains filtered or unexported fields
}

func (*Uint64QueryRequest) Descriptor deprecated

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

Deprecated: Use Uint64QueryRequest.ProtoReflect.Descriptor instead.

func (*Uint64QueryRequest) GetFixed64

func (x *Uint64QueryRequest) GetFixed64() uint64

func (*Uint64QueryRequest) GetListFixed64

func (x *Uint64QueryRequest) GetListFixed64() []uint64

func (*Uint64QueryRequest) GetListUint64

func (x *Uint64QueryRequest) GetListUint64() []uint64

func (*Uint64QueryRequest) GetListWrapUint64

func (x *Uint64QueryRequest) GetListWrapUint64() []*wrapperspb.UInt64Value

func (*Uint64QueryRequest) GetOptFixed64

func (x *Uint64QueryRequest) GetOptFixed64() uint64

func (*Uint64QueryRequest) GetOptUint64

func (x *Uint64QueryRequest) GetOptUint64() uint64

func (*Uint64QueryRequest) GetUint64

func (x *Uint64QueryRequest) GetUint64() uint64

func (*Uint64QueryRequest) GetWrapUint64

func (x *Uint64QueryRequest) GetWrapUint64() *wrapperspb.UInt64Value

func (*Uint64QueryRequest) ProtoMessage

func (*Uint64QueryRequest) ProtoMessage()

func (*Uint64QueryRequest) ProtoReflect

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

func (*Uint64QueryRequest) Reset

func (x *Uint64QueryRequest) Reset()

func (*Uint64QueryRequest) String

func (x *Uint64QueryRequest) String() string

Jump to

Keyboard shortcuts

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