==(_:_:)
descriptor.pb.swift:5193static func == (lhs: Google_Protobuf_SourceCodeInfo.Location, rhs: Google_Protobuf_SourceCodeInfo.Location) -> Bool
static func == (lhs: Google_Protobuf_SourceCodeInfo.Location, rhs: Google_Protobuf_SourceCodeInfo.Location) -> Bool
s13SwiftProtobuf07Google_B15_SourceCodeInfoV8LocationV2eeoiySbAE_AEtFZ
What are these?2GRBB
import SwiftProtobuf
Support library for Swift code generated by protoc-gen-swift.
struct Location
struct Google_Protobuf_SourceCodeInfo
Encapsulates information about the original source file from which a FileDescriptorProto was generated.
@frozen struct Bool
A value type whose instances are either true
or false
.
init()
static let _protobuf_nameMap: _NameMap
static let protoMessageName: String
var hasLeadingComments: Bool { get }
Returns true if leadingComments
has been explicitly set.
var hasTrailingComments: Bool { get }
Returns true if trailingComments
has been explicitly set.
var leadingComments: String { get set }
If this SourceCodeInfo represents a complete declaration, these are any comments appearing before and after the declaration which appear to be attached to the declaration.
var leadingDetachedComments: [String]
var path: [Int32]
Identifies which part of the FileDescriptorProto was defined at this location.
var span: [Int32]
Always has exactly three or four elements: start line, start column, end line (optional, otherwise assumed same as start line), end column. These are packed into a single field for efficiency. Note that line and column numbers are zero-based – typically you will want to add 1 to each before displaying to a user.
var trailingComments: String { get set }
var unknownFields: UnknownStorage
mutating func clearLeadingComments()
Clears the value of leadingComments
. Subsequent reads from it will return its default value.
mutating func clearTrailingComments()
Clears the value of trailingComments
. 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