clearDoubleValue
Clears the value of doubleValue
. Subsequent reads from it will return its default value.
mutating func clearDoubleValue()
Clears the value of doubleValue
. Subsequent reads from it will return its default value.
mutating func clearDoubleValue()
s13SwiftProtobuf07Google_B20_UninterpretedOptionV16clearDoubleValueyyF
What are these?8T246
import SwiftProtobuf
Support library for Swift code generated by protoc-gen-swift.
struct Google_Protobuf_UninterpretedOption
A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.
init()
static let _protobuf_nameMap: _NameMap
static let protoMessageName: String
var aggregateValue: String { get set }
var doubleValue: Double { get set }
var hasAggregateValue: Bool { get }
Returns true if aggregateValue
has been explicitly set.
var hasDoubleValue: Bool { get }
Returns true if doubleValue
has been explicitly set.
var hasIdentifierValue: Bool { get }
Returns true if identifierValue
has been explicitly set.
var hasNegativeIntValue: Bool { get }
Returns true if negativeIntValue
has been explicitly set.
var hasPositiveIntValue: Bool { get }
Returns true if positiveIntValue
has been explicitly set.
var hasStringValue: Bool { get }
Returns true if stringValue
has been explicitly set.
var identifierValue: String { get set }
The value of the uninterpreted option, in whatever type the tokenizer identified it as during parsing. Exactly one of these should be set.
var isInitialized: Bool { get }
var name: [Google_Protobuf_UninterpretedOption.NamePart]
var negativeIntValue: Int64 { get set }
var positiveIntValue: UInt64 { get set }
var stringValue: Data { get set }
var unknownFields: UnknownStorage
static func == (lhs: Google_Protobuf_UninterpretedOption, rhs: Google_Protobuf_UninterpretedOption) -> Bool
mutating func clearAggregateValue()
Clears the value of aggregateValue
. Subsequent reads from it will return its default value.
mutating func clearIdentifierValue()
Clears the value of identifierValue
. Subsequent reads from it will return its default value.
mutating func clearNegativeIntValue()
Clears the value of negativeIntValue
. Subsequent reads from it will return its default value.
mutating func clearPositiveIntValue()
Clears the value of positiveIntValue
. Subsequent reads from it will return its default value.
mutating func clearStringValue()
Clears the value of stringValue
. 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
struct NamePart
The name of the uninterpreted option. Each string represents a segment in a dot-separated name. is_extension is true iff a segment represents an extension (denoted with parentheses in options specs in .proto files). E.g.,{ [“foo”, false], [“bar.baz”, true], [“moo”, false] } represents “foo.(bar.baz).moo”.