...

Package wrapperspb

import "google.golang.org/protobuf/types/known/wrapperspb"
Overview
Index

Overview ▾

Index ▾

Variables
type BoolValue
    func Bool(v bool) *BoolValue
    func (*BoolValue) Descriptor() ([]byte, []int)
    func (x *BoolValue) GetValue() bool
    func (*BoolValue) ProtoMessage()
    func (x *BoolValue) ProtoReflect() protoreflect.Message
    func (x *BoolValue) Reset()
    func (x *BoolValue) String() string
type BytesValue
    func Bytes(v []byte) *BytesValue
    func (*BytesValue) Descriptor() ([]byte, []int)
    func (x *BytesValue) GetValue() []byte
    func (*BytesValue) ProtoMessage()
    func (x *BytesValue) ProtoReflect() protoreflect.Message
    func (x *BytesValue) Reset()
    func (x *BytesValue) String() string
type DoubleValue
    func Double(v float64) *DoubleValue
    func (*DoubleValue) Descriptor() ([]byte, []int)
    func (x *DoubleValue) GetValue() float64
    func (*DoubleValue) ProtoMessage()
    func (x *DoubleValue) ProtoReflect() protoreflect.Message
    func (x *DoubleValue) Reset()
    func (x *DoubleValue) String() string
type FloatValue
    func Float(v float32) *FloatValue
    func (*FloatValue) Descriptor() ([]byte, []int)
    func (x *FloatValue) GetValue() float32
    func (*FloatValue) ProtoMessage()
    func (x *FloatValue) ProtoReflect() protoreflect.Message
    func (x *FloatValue) Reset()
    func (x *FloatValue) String() string
type Int32Value
    func Int32(v int32) *Int32Value
    func (*Int32Value) Descriptor() ([]byte, []int)
    func (x *Int32Value) GetValue() int32
    func (*Int32Value) ProtoMessage()
    func (x *Int32Value) ProtoReflect() protoreflect.Message
    func (x *Int32Value) Reset()
    func (x *Int32Value) String() string
type Int64Value
    func Int64(v int64) *Int64Value
    func (*Int64Value) Descriptor() ([]byte, []int)
    func (x *Int64Value) GetValue() int64
    func (*Int64Value) ProtoMessage()
    func (x *Int64Value) ProtoReflect() protoreflect.Message
    func (x *Int64Value) Reset()
    func (x *Int64Value) String() string
type StringValue
    func String(v string) *StringValue
    func (*StringValue) Descriptor() ([]byte, []int)
    func (x *StringValue) GetValue() string
    func (*StringValue) ProtoMessage()
    func (x *StringValue) ProtoReflect() protoreflect.Message
    func (x *StringValue) Reset()
    func (x *StringValue) String() string
type UInt32Value
    func UInt32(v uint32) *UInt32Value
    func (*UInt32Value) Descriptor() ([]byte, []int)
    func (x *UInt32Value) GetValue() uint32
    func (*UInt32Value) ProtoMessage()
    func (x *UInt32Value) ProtoReflect() protoreflect.Message
    func (x *UInt32Value) Reset()
    func (x *UInt32Value) String() string
type UInt64Value
    func UInt64(v uint64) *UInt64Value
    func (*UInt64Value) Descriptor() ([]byte, []int)
    func (x *UInt64Value) GetValue() uint64
    func (*UInt64Value) ProtoMessage()
    func (x *UInt64Value) ProtoReflect() protoreflect.Message
    func (x *UInt64Value) Reset()
    func (x *UInt64Value) String() string

Package files

wrappers.pb.go

Variables

var File_google_protobuf_wrappers_proto protoreflect.FileDescriptor

type BoolValue

Wrapper message for `bool`.

The JSON representation for `BoolValue` is JSON `true` and `false`.

type BoolValue struct {

    // The bool value.
    Value bool `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func Bool

func Bool(v bool) *BoolValue

Bool stores v in a new BoolValue and returns a pointer to it.

func (*BoolValue) Descriptor

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

Deprecated: Use BoolValue.ProtoReflect.Descriptor instead.

func (*BoolValue) GetValue

func (x *BoolValue) GetValue() bool

func (*BoolValue) ProtoMessage

func (*BoolValue) ProtoMessage()

func (*BoolValue) ProtoReflect

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

func (*BoolValue) Reset

func (x *BoolValue) Reset()

func (*BoolValue) String

func (x *BoolValue) String() string

type BytesValue

Wrapper message for `bytes`.

The JSON representation for `BytesValue` is JSON string.

type BytesValue struct {

    // The bytes value.
    Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func Bytes

func Bytes(v []byte) *BytesValue

Bytes stores v in a new BytesValue and returns a pointer to it.

func (*BytesValue) Descriptor

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

Deprecated: Use BytesValue.ProtoReflect.Descriptor instead.

func (*BytesValue) GetValue

func (x *BytesValue) GetValue() []byte

func (*BytesValue) ProtoMessage

func (*BytesValue) ProtoMessage()

func (*BytesValue) ProtoReflect

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

func (*BytesValue) Reset

func (x *BytesValue) Reset()

func (*BytesValue) String

func (x *BytesValue) String() string

type DoubleValue

Wrapper message for `double`.

The JSON representation for `DoubleValue` is JSON number.

type DoubleValue struct {

    // The double value.
    Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func Double

func Double(v float64) *DoubleValue

Double stores v in a new DoubleValue and returns a pointer to it.

func (*DoubleValue) Descriptor

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

Deprecated: Use DoubleValue.ProtoReflect.Descriptor instead.

func (*DoubleValue) GetValue

func (x *DoubleValue) GetValue() float64

func (*DoubleValue) ProtoMessage

func (*DoubleValue) ProtoMessage()

func (*DoubleValue) ProtoReflect

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

func (*DoubleValue) Reset

func (x *DoubleValue) Reset()

func (*DoubleValue) String

func (x *DoubleValue) String() string

type FloatValue

Wrapper message for `float`.

The JSON representation for `FloatValue` is JSON number.

type FloatValue struct {

    // The float value.
    Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func Float

func Float(v float32) *FloatValue

Float stores v in a new FloatValue and returns a pointer to it.

func (*FloatValue) Descriptor

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

Deprecated: Use FloatValue.ProtoReflect.Descriptor instead.

func (*FloatValue) GetValue

func (x *FloatValue) GetValue() float32

func (*FloatValue) ProtoMessage

func (*FloatValue) ProtoMessage()

func (*FloatValue) ProtoReflect

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

func (*FloatValue) Reset

func (x *FloatValue) Reset()

func (*FloatValue) String

func (x *FloatValue) String() string

type Int32Value

Wrapper message for `int32`.

The JSON representation for `Int32Value` is JSON number.

type Int32Value struct {

    // The int32 value.
    Value int32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func Int32

func Int32(v int32) *Int32Value

Int32 stores v in a new Int32Value and returns a pointer to it.

func (*Int32Value) Descriptor

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

Deprecated: Use Int32Value.ProtoReflect.Descriptor instead.

func (*Int32Value) GetValue

func (x *Int32Value) GetValue() int32

func (*Int32Value) ProtoMessage

func (*Int32Value) ProtoMessage()

func (*Int32Value) ProtoReflect

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

func (*Int32Value) Reset

func (x *Int32Value) Reset()

func (*Int32Value) String

func (x *Int32Value) String() string

type Int64Value

Wrapper message for `int64`.

The JSON representation for `Int64Value` is JSON string.

type Int64Value struct {

    // The int64 value.
    Value int64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func Int64

func Int64(v int64) *Int64Value

Int64 stores v in a new Int64Value and returns a pointer to it.

func (*Int64Value) Descriptor

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

Deprecated: Use Int64Value.ProtoReflect.Descriptor instead.

func (*Int64Value) GetValue

func (x *Int64Value) GetValue() int64

func (*Int64Value) ProtoMessage

func (*Int64Value) ProtoMessage()

func (*Int64Value) ProtoReflect

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

func (*Int64Value) Reset

func (x *Int64Value) Reset()

func (*Int64Value) String

func (x *Int64Value) String() string

type StringValue

Wrapper message for `string`.

The JSON representation for `StringValue` is JSON string.

type StringValue struct {

    // The string value.
    Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func String

func String(v string) *StringValue

String stores v in a new StringValue and returns a pointer to it.

func (*StringValue) Descriptor

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

Deprecated: Use StringValue.ProtoReflect.Descriptor instead.

func (*StringValue) GetValue

func (x *StringValue) GetValue() string

func (*StringValue) ProtoMessage

func (*StringValue) ProtoMessage()

func (*StringValue) ProtoReflect

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

func (*StringValue) Reset

func (x *StringValue) Reset()

func (*StringValue) String

func (x *StringValue) String() string

type UInt32Value

Wrapper message for `uint32`.

The JSON representation for `UInt32Value` is JSON number.

type UInt32Value struct {

    // The uint32 value.
    Value uint32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func UInt32

func UInt32(v uint32) *UInt32Value

UInt32 stores v in a new UInt32Value and returns a pointer to it.

func (*UInt32Value) Descriptor

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

Deprecated: Use UInt32Value.ProtoReflect.Descriptor instead.

func (*UInt32Value) GetValue

func (x *UInt32Value) GetValue() uint32

func (*UInt32Value) ProtoMessage

func (*UInt32Value) ProtoMessage()

func (*UInt32Value) ProtoReflect

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

func (*UInt32Value) Reset

func (x *UInt32Value) Reset()

func (*UInt32Value) String

func (x *UInt32Value) String() string

type UInt64Value

Wrapper message for `uint64`.

The JSON representation for `UInt64Value` is JSON string.

type UInt64Value struct {

    // The uint64 value.
    Value uint64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
    // contains filtered or unexported fields
}

func UInt64

func UInt64(v uint64) *UInt64Value

UInt64 stores v in a new UInt64Value and returns a pointer to it.

func (*UInt64Value) Descriptor

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

Deprecated: Use UInt64Value.ProtoReflect.Descriptor instead.

func (*UInt64Value) GetValue

func (x *UInt64Value) GetValue() uint64

func (*UInt64Value) ProtoMessage

func (*UInt64Value) ProtoMessage()

func (*UInt64Value) ProtoReflect

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

func (*UInt64Value) Reset

func (x *UInt64Value) Reset()

func (*UInt64Value) String

func (x *UInt64Value) String() string