/* * DO NOT EDIT. * * Generated by the protocol buffer compiler. * Source: echo.proto * */ // Copyright (c) 2015, Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import Foundation import SwiftProtobuf // If the compiler emits an error on this type, it is because this file // was generated by a version of the `protoc` Swift plug-in that is // incompatible with the version of SwiftProtobuf to which you are linking. // Please ensure that your are building against the same version of the API // that was used to generate this file. fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { struct _1: SwiftProtobuf.ProtobufAPIVersion_1 {} typealias Version = _1 } public struct Echo_EchoRequest: SwiftProtobuf.Message { public static let protoMessageName: String = _protobuf_package + ".EchoRequest" /// The text of a message to be echoed. public var text: String = String() public var unknownFields = SwiftProtobuf.UnknownStorage() public init() {} public mutating func decodeMessage(decoder: inout D) throws { while let fieldNumber = try decoder.nextFieldNumber() { switch fieldNumber { case 1: try decoder.decodeSingularStringField(value: &text) default: break } } } public func traverse(visitor: inout V) throws { if !text.isEmpty { try visitor.visitSingularStringField(value: text, fieldNumber: 1) } try unknownFields.traverse(visitor: &visitor) } } public struct Echo_EchoResponse: SwiftProtobuf.Message { public static let protoMessageName: String = _protobuf_package + ".EchoResponse" /// The text of an echo response. public var text: String = String() public var unknownFields = SwiftProtobuf.UnknownStorage() public init() {} public mutating func decodeMessage(decoder: inout D) throws { while let fieldNumber = try decoder.nextFieldNumber() { switch fieldNumber { case 1: try decoder.decodeSingularStringField(value: &text) default: break } } } public func traverse(visitor: inout V) throws { if !text.isEmpty { try visitor.visitSingularStringField(value: text, fieldNumber: 1) } try unknownFields.traverse(visitor: &visitor) } } // MARK: - Code below here is support for the SwiftProtobuf runtime. fileprivate let _protobuf_package = "echo" extension Echo_EchoRequest: SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 1: .same(proto: "text"), ] public func _protobuf_generated_isEqualTo(other: Echo_EchoRequest) -> Bool { if text != other.text {return false} if unknownFields != other.unknownFields {return false} return true } } extension Echo_EchoResponse: SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 1: .same(proto: "text"), ] public func _protobuf_generated_isEqualTo(other: Echo_EchoResponse) -> Bool { if text != other.text {return false} if unknownFields != other.unknownFields {return false} return true } }