Documentation
¶
Index ¶
- type Call
- func (*Call) Descriptor() ([]byte, []int)
- func (m *Call) GetArgs() string
- func (m *Call) GetFuncname() string
- func (m *Call) GetName() string
- func (*Call) ProtoMessage()
- func (m *Call) Reset()
- func (m *Call) String() string
- func (m *Call) XXX_DiscardUnknown()
- func (m *Call) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Call) XXX_Merge(src proto.Message)
- func (m *Call) XXX_Size() int
- func (m *Call) XXX_Unmarshal(b []byte) error
- type Create
- func (*Create) Descriptor() ([]byte, []int)
- func (m *Create) GetCode() string
- func (m *Create) GetName() string
- func (*Create) ProtoMessage()
- func (m *Create) Reset()
- func (m *Create) String() string
- func (m *Create) XXX_DiscardUnknown()
- func (m *Create) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Create) XXX_Merge(src proto.Message)
- func (m *Create) XXX_Size() int
- func (m *Create) XXX_Unmarshal(b []byte) error
- type JsAction
- func (*JsAction) Descriptor() ([]byte, []int)
- func (m *JsAction) GetCall() *Call
- func (m *JsAction) GetCreate() *Create
- func (m *JsAction) GetTy() int32
- func (m *JsAction) GetValue() isJsAction_Value
- func (*JsAction) ProtoMessage()
- func (m *JsAction) Reset()
- func (m *JsAction) String() string
- func (m *JsAction) XXX_DiscardUnknown()
- func (m *JsAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *JsAction) XXX_Merge(src proto.Message)
- func (*JsAction) XXX_OneofWrappers() []interface{}
- func (m *JsAction) XXX_Size() int
- func (m *JsAction) XXX_Unmarshal(b []byte) error
- type JsAction_Call
- type JsAction_Create
- type JsLog
- func (*JsLog) Descriptor() ([]byte, []int)
- func (m *JsLog) GetData() string
- func (*JsLog) ProtoMessage()
- func (m *JsLog) Reset()
- func (m *JsLog) String() string
- func (m *JsLog) XXX_DiscardUnknown()
- func (m *JsLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *JsLog) XXX_Merge(src proto.Message)
- func (m *JsLog) XXX_Size() int
- func (m *JsLog) XXX_Unmarshal(b []byte) error
- type QueryResult
- func (*QueryResult) Descriptor() ([]byte, []int)
- func (m *QueryResult) GetData() string
- func (*QueryResult) ProtoMessage()
- func (m *QueryResult) Reset()
- func (m *QueryResult) String() string
- func (m *QueryResult) XXX_DiscardUnknown()
- func (m *QueryResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *QueryResult) XXX_Merge(src proto.Message)
- func (m *QueryResult) XXX_Size() int
- func (m *QueryResult) XXX_Unmarshal(b []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Call ¶
type Call struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Funcname string `protobuf:"bytes,2,opt,name=funcname,proto3" json:"funcname,omitempty"` Args string `protobuf:"bytes,3,opt,name=args,proto3" json:"args,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
call action
func (*Call) Descriptor ¶
func (*Call) GetFuncname ¶
func (*Call) ProtoMessage ¶
func (*Call) ProtoMessage()
func (*Call) XXX_DiscardUnknown ¶
func (m *Call) XXX_DiscardUnknown()
func (*Call) XXX_Unmarshal ¶
type Create ¶
type Create struct { Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
create action
func (*Create) Descriptor ¶
func (*Create) ProtoMessage ¶
func (*Create) ProtoMessage()
func (*Create) XXX_DiscardUnknown ¶
func (m *Create) XXX_DiscardUnknown()
func (*Create) XXX_Marshal ¶
func (*Create) XXX_Unmarshal ¶
type JsAction ¶
type JsAction struct { // Types that are valid to be assigned to Value: // *JsAction_Create // *JsAction_Call Value isJsAction_Value `protobuf_oneof:"value"` Ty int32 `protobuf:"varint,3,opt,name=ty,proto3" json:"ty,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*JsAction) Descriptor ¶
func (*JsAction) ProtoMessage ¶
func (*JsAction) ProtoMessage()
func (*JsAction) XXX_DiscardUnknown ¶
func (m *JsAction) XXX_DiscardUnknown()
func (*JsAction) XXX_Marshal ¶
func (*JsAction) XXX_OneofWrappers ¶
func (*JsAction) XXX_OneofWrappers() []interface{}
XXX_OneofWrappers is for the internal use of the proto package.
func (*JsAction) XXX_Unmarshal ¶
type JsAction_Call ¶
type JsAction_Call struct {
Call *Call `protobuf:"bytes,2,opt,name=call,proto3,oneof"`
}
type JsAction_Create ¶
type JsAction_Create struct {
Create *Create `protobuf:"bytes,1,opt,name=create,proto3,oneof"`
}
type JsLog ¶
type JsLog struct { Data string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*JsLog) Descriptor ¶
func (*JsLog) ProtoMessage ¶
func (*JsLog) ProtoMessage()
func (*JsLog) XXX_DiscardUnknown ¶
func (m *JsLog) XXX_DiscardUnknown()
func (*JsLog) XXX_Marshal ¶
func (*JsLog) XXX_Unmarshal ¶
type QueryResult ¶
type QueryResult struct { Data string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*QueryResult) Descriptor ¶
func (*QueryResult) Descriptor() ([]byte, []int)
func (*QueryResult) GetData ¶
func (m *QueryResult) GetData() string
func (*QueryResult) ProtoMessage ¶
func (*QueryResult) ProtoMessage()
func (*QueryResult) Reset ¶
func (m *QueryResult) Reset()
func (*QueryResult) String ¶
func (m *QueryResult) String() string
func (*QueryResult) XXX_DiscardUnknown ¶
func (m *QueryResult) XXX_DiscardUnknown()
func (*QueryResult) XXX_Marshal ¶
func (m *QueryResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*QueryResult) XXX_Merge ¶
func (m *QueryResult) XXX_Merge(src proto.Message)
func (*QueryResult) XXX_Size ¶
func (m *QueryResult) XXX_Size() int
func (*QueryResult) XXX_Unmarshal ¶
func (m *QueryResult) XXX_Unmarshal(b []byte) error
Click to show internal directories.
Click to hide internal directories.