Instance Propertyswift-protobuf 1.29.0SwiftProtobuf
unknownFields
struct.pb.swift:211var unknownFields: UnknownStorage
var unknownFields: UnknownStorage
s13SwiftProtobuf07Google_B10_ListValueV13unknownFieldsAA14UnknownStorageVvp
What are these?2L9IT
import SwiftProtobuf
Support library for Swift code generated by protoc-gen-swift.
struct Google_Protobuf_ListValue
ListValue
is a wrapper around a repeated field of values.
struct UnknownStorage
Contains any unknown fields in a decoded message; that is, fields that were sent on the wire but were not recognized by the generated message implementation or were valid field numbers but with mismatching wire formats (for example, a field encoded as a varint when a fixed32 integer was expected).
init()
init(arrayLiteral elements: Element...)
Creates a new Google_Protobuf_ListValue
from an array literal containing Google_Protobuf_Value
elements.
init(values: [Google_Protobuf_Value])
Creates a new Google_Protobuf_ListValue
from the given array of Google_Protobuf_Value
elements.
static let _protobuf_nameMap: _NameMap
static let protoMessageName: String
var values: [Google_Protobuf_Value]
Repeated field of dynamically typed values.
subscript(index: Int) -> Google_Protobuf_Value { get set }
Accesses the Google_Protobuf_Value
at the specified position.
static func == (lhs: Google_Protobuf_ListValue, rhs: Google_Protobuf_ListValue) -> Bool
mutating func decodeMessage<D>(decoder: inout D) throws where D : Decoder
func traverse<V>(visitor: inout V) throws where V : Visitor
typealias Element = Google_Protobuf_Value