Documentation ¶
Index ¶
- Variables
- type Array
- type Struct
- type Value
- func (*Value) Descriptor() ([]byte, []int)deprecated
- func (x *Value) GetArray() *Array
- func (x *Value) GetBase64() []byte
- func (x *Value) GetBoolean() bool
- func (x *Value) GetDatetime() string
- func (x *Value) GetDouble() float64
- func (x *Value) GetInt() int32
- func (m *Value) GetScalarOneof() isValue_ScalarOneof
- func (x *Value) GetString_() string
- func (x *Value) GetStruct() *Struct
- func (*Value) ProtoMessage()
- func (x *Value) ProtoReflect() protoreflect.Message
- func (x *Value) Reset()
- func (x *Value) String() string
- type Value_Array
- type Value_Base64
- type Value_Boolean
- type Value_Datetime
- type Value_Double
- type Value_Int
- type Value_String_
- type Value_Struct
Constants ¶
This section is empty.
Variables ¶
View Source
var File_chromiumos_config_api_test_xmlrpc_xmlrpc_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Array ¶
type Array struct { Values []*Value `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"` // contains filtered or unexported fields }
func (*Array) Descriptor
deprecated
func (*Array) ProtoMessage ¶
func (*Array) ProtoMessage()
func (*Array) ProtoReflect ¶
func (x *Array) ProtoReflect() protoreflect.Message
type Struct ¶
type Struct struct { Members map[string]*Value `` /* 155-byte string literal not displayed */ // contains filtered or unexported fields }
func (*Struct) Descriptor
deprecated
func (*Struct) GetMembers ¶
func (*Struct) ProtoMessage ¶
func (*Struct) ProtoMessage()
func (*Struct) ProtoReflect ¶
func (x *Struct) ProtoReflect() protoreflect.Message
type Value ¶
type Value struct { // Types that are assignable to ScalarOneof: // *Value_Int // *Value_Boolean // *Value_String_ // *Value_Double // *Value_Datetime // *Value_Base64 // *Value_Struct // *Value_Array ScalarOneof isValue_ScalarOneof `protobuf_oneof:"scalar_oneof"` // contains filtered or unexported fields }
Value represents a value in XML-RPC.
func (*Value) Descriptor
deprecated
func (*Value) GetBoolean ¶
func (*Value) GetDatetime ¶
func (*Value) GetScalarOneof ¶
func (m *Value) GetScalarOneof() isValue_ScalarOneof
func (*Value) GetString_ ¶
func (*Value) ProtoMessage ¶
func (*Value) ProtoMessage()
func (*Value) ProtoReflect ¶
func (x *Value) ProtoReflect() protoreflect.Message
type Value_Array ¶
type Value_Array struct {
Array *Array `protobuf:"bytes,9,opt,name=array,proto3,oneof"`
}
type Value_Base64 ¶
type Value_Base64 struct {
Base64 []byte `protobuf:"bytes,7,opt,name=base64,proto3,oneof"`
}
type Value_Boolean ¶
type Value_Boolean struct {
Boolean bool `protobuf:"varint,3,opt,name=boolean,proto3,oneof"`
}
type Value_Datetime ¶
type Value_Datetime struct { // ISO8601 datetime Datetime string `protobuf:"bytes,6,opt,name=datetime,proto3,oneof"` }
type Value_Double ¶
type Value_Double struct {
Double float64 `protobuf:"fixed64,5,opt,name=double,proto3,oneof"`
}
type Value_Int ¶
type Value_Int struct {
Int int32 `protobuf:"zigzag32,2,opt,name=int,proto3,oneof"`
}
type Value_String_ ¶
type Value_String_ struct {
String_ string `protobuf:"bytes,4,opt,name=string,proto3,oneof"`
}
type Value_Struct ¶
type Value_Struct struct {
Struct *Struct `protobuf:"bytes,8,opt,name=struct,proto3,oneof"`
}
Click to show internal directories.
Click to hide internal directories.