isInitialized
descriptor.pb.swift:5057var isInitialized: Bool { get }
var isInitialized: Bool { get }
s13SwiftProtobuf07Google_B19_FeatureSetDefaultsV0dE14EditionDefaultV13isInitializedSbvp
What are these?54IBO
import SwiftProtobuf
Support library for Swift code generated by protoc-gen-swift.
struct FeatureSetEditionDefault
A map from every known edition with a unique set of defaults to its defaults. Not all editions may be contained here. For a given edition, the defaults at the closest matching edition ordered at or before it should be used. This field must be in strict ascending order by edition.
struct Google_Protobuf_FeatureSetDefaults
A compiled specification for the defaults of a set of features. These messages are generated from FeatureSet extensions and can be used to seed feature resolution. The resolution with this object becomes a simple search for the closest matching edition, followed by proto merges.
@frozen struct Bool
A value type whose instances are either true
or false
.
init()
static let _protobuf_nameMap: _NameMap
static let protoMessageName: String
var edition: Google_Protobuf_Edition { get set }
var fixedFeatures: Google_Protobuf_FeatureSet { get set }
Defaults of features that can’t be overridden in this edition.
var hasEdition: Bool { get }
Returns true if edition
has been explicitly set.
var hasFixedFeatures: Bool { get }
Returns true if fixedFeatures
has been explicitly set.
var hasOverridableFeatures: Bool { get }
Returns true if overridableFeatures
has been explicitly set.
var overridableFeatures: Google_Protobuf_FeatureSet { get set }
Defaults of features that can be overridden in this edition.
var unknownFields: UnknownStorage
static func == (lhs: Google_Protobuf_FeatureSetDefaults.FeatureSetEditionDefault, rhs: Google_Protobuf_FeatureSetDefaults.FeatureSetEditionDefault) -> Bool
mutating func clearEdition()
Clears the value of edition
. Subsequent reads from it will return its default value.
mutating func clearFixedFeatures()
Clears the value of fixedFeatures
. Subsequent reads from it will return its default value.
mutating func clearOverridableFeatures()
Clears the value of overridableFeatures
. 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