valuesv1

package
v0.6.3 Latest Latest
Warning

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

Go to latest
Published: May 30, 2024 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_autokitteh_values_v1_values_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Boolean

type Boolean struct {
	V bool `protobuf:"varint,1,opt,name=v,proto3" json:"v,omitempty"`
	// contains filtered or unexported fields
}

func (*Boolean) Descriptor deprecated

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

Deprecated: Use Boolean.ProtoReflect.Descriptor instead.

func (*Boolean) GetV

func (x *Boolean) GetV() bool

func (*Boolean) ProtoMessage

func (*Boolean) ProtoMessage()

func (*Boolean) ProtoReflect

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

func (*Boolean) Reset

func (x *Boolean) Reset()

func (*Boolean) String

func (x *Boolean) String() string

type Bytes

type Bytes struct {
	V []byte `protobuf:"bytes,1,opt,name=v,proto3" json:"v,omitempty"`
	// contains filtered or unexported fields
}

func (*Bytes) Descriptor deprecated

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

Deprecated: Use Bytes.ProtoReflect.Descriptor instead.

func (*Bytes) GetV

func (x *Bytes) GetV() []byte

func (*Bytes) ProtoMessage

func (*Bytes) ProtoMessage()

func (*Bytes) ProtoReflect

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

func (*Bytes) Reset

func (x *Bytes) Reset()

func (*Bytes) String

func (x *Bytes) String() string

type Dict

type Dict struct {
	Items []*Dict_Item `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

Dict cannot be a simple map since the keys might be values themselves.

func (*Dict) Descriptor deprecated

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

Deprecated: Use Dict.ProtoReflect.Descriptor instead.

func (*Dict) GetItems

func (x *Dict) GetItems() []*Dict_Item

func (*Dict) ProtoMessage

func (*Dict) ProtoMessage()

func (*Dict) ProtoReflect

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

func (*Dict) Reset

func (x *Dict) Reset()

func (*Dict) String

func (x *Dict) String() string

type Dict_Item

type Dict_Item struct {
	K *Value `protobuf:"bytes,1,opt,name=k,proto3" json:"k,omitempty"`
	V *Value `protobuf:"bytes,2,opt,name=v,proto3" json:"v,omitempty"`
	// contains filtered or unexported fields
}

func (*Dict_Item) Descriptor deprecated

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

Deprecated: Use Dict_Item.ProtoReflect.Descriptor instead.

func (*Dict_Item) GetK

func (x *Dict_Item) GetK() *Value

func (*Dict_Item) GetV

func (x *Dict_Item) GetV() *Value

func (*Dict_Item) ProtoMessage

func (*Dict_Item) ProtoMessage()

func (*Dict_Item) ProtoReflect

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

func (*Dict_Item) Reset

func (x *Dict_Item) Reset()

func (*Dict_Item) String

func (x *Dict_Item) String() string

type Duration

type Duration struct {
	V *durationpb.Duration `protobuf:"bytes,1,opt,name=v,proto3" json:"v,omitempty"`
	// contains filtered or unexported fields
}

func (*Duration) Descriptor deprecated

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

Deprecated: Use Duration.ProtoReflect.Descriptor instead.

func (*Duration) GetV

func (x *Duration) GetV() *durationpb.Duration

func (*Duration) ProtoMessage

func (*Duration) ProtoMessage()

func (*Duration) ProtoReflect

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

func (*Duration) Reset

func (x *Duration) Reset()

func (*Duration) String

func (x *Duration) String() string

type Float

type Float struct {
	V float64 `protobuf:"fixed64,1,opt,name=v,proto3" json:"v,omitempty"`
	// contains filtered or unexported fields
}

func (*Float) Descriptor deprecated

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

Deprecated: Use Float.ProtoReflect.Descriptor instead.

func (*Float) GetV

func (x *Float) GetV() float64

func (*Float) ProtoMessage

func (*Float) ProtoMessage()

func (*Float) ProtoReflect

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

func (*Float) Reset

func (x *Float) Reset()

func (*Float) String

func (x *Float) String() string

type Function

type Function struct {

	// executor identifies who owns the execution of the function.
	// essentially, where the function is defined. that entity
	// is responsible of the execution of the function.
	ExecutorId string       `protobuf:"bytes,1,opt,name=executor_id,json=executorId,proto3" json:"executor_id,omitempty"`
	Name       string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Desc       *v1.Function `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc,omitempty"`
	// Data that is transfered along with the function itself.
	// This can be used by the function implementing the name
	// above, to store data in its internal scope.
	Data  []byte   `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	Flags []string `protobuf:"bytes,5,rep,name=flags,proto3" json:"flags,omitempty"`
	// contains filtered or unexported fields
}

func (*Function) Descriptor deprecated

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

Deprecated: Use Function.ProtoReflect.Descriptor instead.

func (*Function) GetData

func (x *Function) GetData() []byte

func (*Function) GetDesc

func (x *Function) GetDesc() *v1.Function

func (*Function) GetExecutorId

func (x *Function) GetExecutorId() string

func (*Function) GetFlags

func (x *Function) GetFlags() []string

func (*Function) GetName

func (x *Function) GetName() string

func (*Function) ProtoMessage

func (*Function) ProtoMessage()

func (*Function) ProtoReflect

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

func (*Function) Reset

func (x *Function) Reset()

func (*Function) String

func (x *Function) String() string

type Integer

type Integer struct {
	V int64 `protobuf:"varint,1,opt,name=v,proto3" json:"v,omitempty"`
	// contains filtered or unexported fields
}

func (*Integer) Descriptor deprecated

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

Deprecated: Use Integer.ProtoReflect.Descriptor instead.

func (*Integer) GetV

func (x *Integer) GetV() int64

func (*Integer) ProtoMessage

func (*Integer) ProtoMessage()

func (*Integer) ProtoReflect

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

func (*Integer) Reset

func (x *Integer) Reset()

func (*Integer) String

func (x *Integer) String() string

type List

type List struct {
	Vs []*Value `protobuf:"bytes,1,rep,name=vs,proto3" json:"vs,omitempty"`
	// contains filtered or unexported fields
}

func (*List) Descriptor deprecated

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

Deprecated: Use List.ProtoReflect.Descriptor instead.

func (*List) GetVs

func (x *List) GetVs() []*Value

func (*List) ProtoMessage

func (*List) ProtoMessage()

func (*List) ProtoReflect

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

func (*List) Reset

func (x *List) Reset()

func (*List) String

func (x *List) String() string

type Module

type Module struct {
	Name    string            `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Members map[string]*Value `` /* 155-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Module) Descriptor deprecated

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

Deprecated: Use Module.ProtoReflect.Descriptor instead.

func (*Module) GetMembers

func (x *Module) GetMembers() map[string]*Value

func (*Module) GetName

func (x *Module) GetName() string

func (*Module) ProtoMessage

func (*Module) ProtoMessage()

func (*Module) ProtoReflect

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

func (*Module) Reset

func (x *Module) Reset()

func (*Module) String

func (x *Module) String() string

type Nothing

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

func (*Nothing) Descriptor deprecated

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

Deprecated: Use Nothing.ProtoReflect.Descriptor instead.

func (*Nothing) ProtoMessage

func (*Nothing) ProtoMessage()

func (*Nothing) ProtoReflect

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

func (*Nothing) Reset

func (x *Nothing) Reset()

func (*Nothing) String

func (x *Nothing) String() string

type Set

type Set struct {
	Vs []*Value `protobuf:"bytes,1,rep,name=vs,proto3" json:"vs,omitempty"`
	// contains filtered or unexported fields
}

func (*Set) Descriptor deprecated

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

Deprecated: Use Set.ProtoReflect.Descriptor instead.

func (*Set) GetVs

func (x *Set) GetVs() []*Value

func (*Set) ProtoMessage

func (*Set) ProtoMessage()

func (*Set) ProtoReflect

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

func (*Set) Reset

func (x *Set) Reset()

func (*Set) String

func (x *Set) String() string

type String

type String struct {
	V string `protobuf:"bytes,1,opt,name=v,proto3" json:"v,omitempty"`
	// contains filtered or unexported fields
}

func (*String) Descriptor deprecated

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

Deprecated: Use String.ProtoReflect.Descriptor instead.

func (*String) GetV

func (x *String) GetV() string

func (*String) ProtoMessage

func (*String) ProtoMessage()

func (*String) ProtoReflect

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

func (*String) Reset

func (x *String) Reset()

func (*String) String

func (x *String) String() string

type Struct

type Struct struct {
	Ctor   *Value            `protobuf:"bytes,1,opt,name=ctor,proto3" json:"ctor,omitempty"`
	Fields map[string]*Value `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Struct) Descriptor deprecated

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

Deprecated: Use Struct.ProtoReflect.Descriptor instead.

func (*Struct) GetCtor

func (x *Struct) GetCtor() *Value

func (*Struct) GetFields

func (x *Struct) GetFields() map[string]*Value

func (*Struct) ProtoMessage

func (*Struct) ProtoMessage()

func (*Struct) ProtoReflect

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

func (*Struct) Reset

func (x *Struct) Reset()

func (*Struct) String

func (x *Struct) String() string

type Symbol

type Symbol struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Symbol) Descriptor deprecated

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

Deprecated: Use Symbol.ProtoReflect.Descriptor instead.

func (*Symbol) GetName

func (x *Symbol) GetName() string

func (*Symbol) ProtoMessage

func (*Symbol) ProtoMessage()

func (*Symbol) ProtoReflect

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

func (*Symbol) Reset

func (x *Symbol) Reset()

func (*Symbol) String

func (x *Symbol) String() string

type Time

type Time struct {
	V *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=v,proto3" json:"v,omitempty"`
	// contains filtered or unexported fields
}

func (*Time) Descriptor deprecated

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

Deprecated: Use Time.ProtoReflect.Descriptor instead.

func (*Time) GetV

func (x *Time) GetV() *timestamppb.Timestamp

func (*Time) ProtoMessage

func (*Time) ProtoMessage()

func (*Time) ProtoReflect

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

func (*Time) Reset

func (x *Time) Reset()

func (*Time) String

func (x *Time) String() string

type Value

type Value struct {

	// one of the following fields must be set.
	Nothing  *Nothing  `protobuf:"bytes,1,opt,name=nothing,proto3" json:"nothing,omitempty"`
	Boolean  *Boolean  `protobuf:"bytes,2,opt,name=boolean,proto3" json:"boolean,omitempty"`
	String_  *String   `protobuf:"bytes,3,opt,name=string,proto3" json:"string,omitempty"`
	Integer  *Integer  `protobuf:"bytes,4,opt,name=integer,proto3" json:"integer,omitempty"`
	Float    *Float    `protobuf:"bytes,5,opt,name=float,proto3" json:"float,omitempty"`
	List     *List     `protobuf:"bytes,6,opt,name=list,proto3" json:"list,omitempty"`
	Set      *Set      `protobuf:"bytes,7,opt,name=set,proto3" json:"set,omitempty"`
	Dict     *Dict     `protobuf:"bytes,8,opt,name=dict,proto3" json:"dict,omitempty"`
	Bytes    *Bytes    `protobuf:"bytes,9,opt,name=bytes,proto3" json:"bytes,omitempty"`
	Time     *Time     `protobuf:"bytes,10,opt,name=time,proto3" json:"time,omitempty"`
	Duration *Duration `protobuf:"bytes,11,opt,name=duration,proto3" json:"duration,omitempty"`
	Struct   *Struct   `protobuf:"bytes,12,opt,name=struct,proto3" json:"struct,omitempty"`
	Module   *Module   `protobuf:"bytes,13,opt,name=module,proto3" json:"module,omitempty"`
	Symbol   *Symbol   `protobuf:"bytes,14,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Function *Function `protobuf:"bytes,15,opt,name=function,proto3" json:"function,omitempty"`
	// contains filtered or unexported fields
}

func (*Value) Descriptor deprecated

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

Deprecated: Use Value.ProtoReflect.Descriptor instead.

func (*Value) GetBoolean

func (x *Value) GetBoolean() *Boolean

func (*Value) GetBytes

func (x *Value) GetBytes() *Bytes

func (*Value) GetDict

func (x *Value) GetDict() *Dict

func (*Value) GetDuration

func (x *Value) GetDuration() *Duration

func (*Value) GetFloat

func (x *Value) GetFloat() *Float

func (*Value) GetFunction

func (x *Value) GetFunction() *Function

func (*Value) GetInteger

func (x *Value) GetInteger() *Integer

func (*Value) GetList

func (x *Value) GetList() *List

func (*Value) GetModule

func (x *Value) GetModule() *Module

func (*Value) GetNothing

func (x *Value) GetNothing() *Nothing

func (*Value) GetSet

func (x *Value) GetSet() *Set

func (*Value) GetString_

func (x *Value) GetString_() *String

func (*Value) GetStruct

func (x *Value) GetStruct() *Struct

func (*Value) GetSymbol

func (x *Value) GetSymbol() *Symbol

func (*Value) GetTime

func (x *Value) GetTime() *Time

func (*Value) ProtoMessage

func (*Value) ProtoMessage()

func (*Value) ProtoReflect

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

func (*Value) Reset

func (x *Value) Reset()

func (*Value) String

func (x *Value) String() string

Jump to

Keyboard shortcuts

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