unknownFields
descriptor.pb.swift:1766var unknownFields: UnknownStorage
var unknownFields: UnknownStorage
s13SwiftProtobuf07Google_B13_FieldOptionsV14FeatureSupportV13unknownFieldsAA14UnknownStorageVvp
What are these?505PV
import SwiftProtobuf
Support library for Swift code generated by protoc-gen-swift.
struct FeatureSupport
Information about the support window of a feature.
struct Google_Protobuf_FieldOptions
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()
static let _protobuf_nameMap: _NameMap
static let protoMessageName: String
var deprecationWarning: String { get set }
The deprecation warning text if this feature is used after the edition it was marked deprecated in.
var editionDeprecated: Google_Protobuf_Edition { get set }
The edition this feature becomes deprecated in. Using this after this edition may trigger warnings.
var editionIntroduced: Google_Protobuf_Edition { get set }
The edition that this feature was first available in. In editions earlier than this one, the default assigned to EDITION_LEGACY will be used, and proto files will not be able to override it.
var editionRemoved: Google_Protobuf_Edition { get set }
The edition this feature is no longer available in. In editions after this one, the last default assigned will be used, and proto files will not be able to override it.
var hasDeprecationWarning: Bool { get }
Returns true if deprecationWarning
has been explicitly set.
var hasEditionDeprecated: Bool { get }
Returns true if editionDeprecated
has been explicitly set.
var hasEditionIntroduced: Bool { get }
Returns true if editionIntroduced
has been explicitly set.
var hasEditionRemoved: Bool { get }
Returns true if editionRemoved
has been explicitly set.
static func == (lhs: Google_Protobuf_FieldOptions.FeatureSupport, rhs: Google_Protobuf_FieldOptions.FeatureSupport) -> Bool
mutating func clearDeprecationWarning()
Clears the value of deprecationWarning
. Subsequent reads from it will return its default value.
mutating func clearEditionDeprecated()
Clears the value of editionDeprecated
. Subsequent reads from it will return its default value.
mutating func clearEditionIntroduced()
Clears the value of editionIntroduced
. Subsequent reads from it will return its default value.
mutating func clearEditionRemoved()
Clears the value of editionRemoved
. Subsequent reads from it will return its default value.
mutating func decodeMessage<D>(decoder: inout D) throws where D : Decoder
func traverse<V>(visitor: inout V) throws where V : Visitor