| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933 |
- // swift-interface-format-version: 1.0
- // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
- // swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -module-name SwiftProtobuf
- // swift-module-flags-ignorable: -enable-bare-slash-regex
- import Dispatch
- import Foundation
- import Swift
- import _Concurrency
- import _StringProcessing
- import _SwiftConcurrencyShims
- @preconcurrency public protocol ExtensibleMessage : SwiftProtobuf.Message {
- var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet { get set }
- }
- extension SwiftProtobuf.ExtensibleMessage {
- public mutating func setExtensionValue<F>(ext: SwiftProtobuf.MessageExtension<F, Self>, value: F.ValueType) where F : SwiftProtobuf.ExtensionField
- public func getExtensionValue<F>(ext: SwiftProtobuf.MessageExtension<F, Self>) -> F.ValueType? where F : SwiftProtobuf.ExtensionField
- public func hasExtensionValue<F>(ext: SwiftProtobuf.MessageExtension<F, Self>) -> Swift.Bool where F : SwiftProtobuf.ExtensionField
- public mutating func clearExtensionValue<F>(ext: SwiftProtobuf.MessageExtension<F, Self>) where F : SwiftProtobuf.ExtensionField
- }
- extension SwiftProtobuf.ExtensibleMessage {
- public mutating func setExtensionValue<T>(ext: SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<T>, Self>, value: [T.BaseType]) where T : SwiftProtobuf.FieldType
- public mutating func setExtensionValue<T>(ext: SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<T>, Self>, value: [T.BaseType]) where T : SwiftProtobuf.FieldType
- public mutating func setExtensionValue<E>(ext: SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedEnumExtensionField<E>, Self>, value: [E]) where E : SwiftProtobuf.Enum, E.RawValue == Swift.Int
- public mutating func setExtensionValue<E>(ext: SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedEnumExtensionField<E>, Self>, value: [E]) where E : SwiftProtobuf.Enum, E.RawValue == Swift.Int
- public mutating func setExtensionValue<M>(ext: SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedMessageExtensionField<M>, Self>, value: [M]) where M : Swift.Equatable, M : SwiftProtobuf.Message
- public mutating func setExtensionValue<M>(ext: SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedGroupExtensionField<M>, Self>, value: [M]) where M : Swift.Hashable, M : SwiftProtobuf.Message
- }
- public enum AnyUnpackError : Swift.Error {
- case typeMismatch
- case malformedWellKnownTypeJSON
- case malformedAnyField
- public static func == (a: SwiftProtobuf.AnyUnpackError, b: SwiftProtobuf.AnyUnpackError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FieldMask {
- public init(protoPaths: [Swift.String])
- public init(protoPaths: Swift.String...)
- public init?(jsonPaths: Swift.String...)
- }
- extension SwiftProtobuf.Google_Protobuf_FieldMask {
- public init<M>(allFieldsOf messageType: M.Type) where M : SwiftProtobuf.Message, M : SwiftProtobuf._ProtoNameProviding
- public init<M>(fieldNumbers: [Swift.Int], of messageType: M.Type) throws where M : SwiftProtobuf.Message, M : SwiftProtobuf._ProtoNameProviding
- }
- extension SwiftProtobuf.Google_Protobuf_FieldMask {
- public mutating func addPath<M>(_ path: Swift.String, of messageType: M.Type) throws where M : SwiftProtobuf.Message
- public var canonical: SwiftProtobuf.Google_Protobuf_FieldMask {
- get
- }
- public func union(_ mask: SwiftProtobuf.Google_Protobuf_FieldMask) -> SwiftProtobuf.Google_Protobuf_FieldMask
- public func intersect(_ mask: SwiftProtobuf.Google_Protobuf_FieldMask) -> SwiftProtobuf.Google_Protobuf_FieldMask
- public func subtract(_ mask: SwiftProtobuf.Google_Protobuf_FieldMask) -> SwiftProtobuf.Google_Protobuf_FieldMask
- public func contains(_ path: Swift.String) -> Swift.Bool
- }
- extension SwiftProtobuf.Google_Protobuf_FieldMask {
- public func isValid<M>(for messageType: M.Type) -> Swift.Bool where M : SwiftProtobuf.Message, M : SwiftProtobuf._ProtoNameProviding
- }
- public enum FieldMaskError : Swift.Error {
- case invalidPath
- case invalidFieldNumber
- public static func == (a: SwiftProtobuf.FieldMaskError, b: SwiftProtobuf.FieldMaskError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Struct : Swift.ExpressibleByDictionaryLiteral {
- public typealias Key = Swift.String
- public typealias Value = SwiftProtobuf.Google_Protobuf_Value
- public init(dictionaryLiteral: (Swift.String, SwiftProtobuf.Google_Protobuf_Value)...)
- }
- extension SwiftProtobuf.Google_Protobuf_Struct {
- public init(fields: [Swift.String : SwiftProtobuf.Google_Protobuf_Value])
- public subscript(key: Swift.String) -> SwiftProtobuf.Google_Protobuf_Value? {
- get
- set(newValue)
- }
- }
- extension SwiftProtobuf.Message {
- public static func isPathValid(_ path: Swift.String) -> Swift.Bool
- }
- extension SwiftProtobuf.Google_Protobuf_FieldMask {
- public struct MergeOptions {
- public init()
- public var replaceRepeatedFields: Swift.Bool
- }
- }
- extension SwiftProtobuf.Message {
- public mutating func merge(from source: Self, fieldMask: SwiftProtobuf.Google_Protobuf_FieldMask, mergeOption: SwiftProtobuf.Google_Protobuf_FieldMask.MergeOptions = .init()) throws
- }
- extension SwiftProtobuf.Message where Self : Swift.Equatable, Self : SwiftProtobuf._ProtoNameProviding {
- @discardableResult
- public mutating func trim(keeping fieldMask: SwiftProtobuf.Google_Protobuf_FieldMask) -> Swift.Bool
- }
- public struct TextFormatDecodingOptions : Swift.Sendable {
- public var messageDepthLimit: Swift.Int
- public var ignoreUnknownFields: Swift.Bool
- public var ignoreUnknownExtensionFields: Swift.Bool
- public init()
- }
- public struct BinaryDecodingOptions : Swift.Sendable {
- public var messageDepthLimit: Swift.Int
- public var discardUnknownFields: Swift.Bool
- public init()
- }
- public struct Google_Protobuf_FieldMask : Swift.Sendable {
- public var paths: [Swift.String]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_FieldMask : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FieldMask, rhs: SwiftProtobuf.Google_Protobuf_FieldMask) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Message {
- public func jsonString(options: SwiftProtobuf.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String
- public func jsonUTF8Bytes<Bytes>(options: SwiftProtobuf.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes
- public init(jsonString: Swift.String, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws
- public init(jsonString: Swift.String, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws
- public init<Bytes>(jsonUTF8Bytes: Bytes, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes
- public init<Bytes>(jsonUTF8Bytes: Bytes, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws where Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes
- }
- extension SwiftProtobuf.Google_Protobuf_DoubleValue : Swift.ExpressibleByFloatLiteral {
- public typealias WrappedType = SwiftProtobuf.ProtobufDouble
- public typealias FloatLiteralType = SwiftProtobuf.Google_Protobuf_DoubleValue.WrappedType.BaseType
- public init(_ value: SwiftProtobuf.Google_Protobuf_DoubleValue.WrappedType.BaseType)
- public init(floatLiteral: SwiftProtobuf.Google_Protobuf_DoubleValue.FloatLiteralType)
- }
- extension SwiftProtobuf.Google_Protobuf_FloatValue : Swift.ExpressibleByFloatLiteral {
- public typealias WrappedType = SwiftProtobuf.ProtobufFloat
- public typealias FloatLiteralType = Swift.Float
- public init(_ value: SwiftProtobuf.Google_Protobuf_FloatValue.WrappedType.BaseType)
- public init(floatLiteral: SwiftProtobuf.Google_Protobuf_FloatValue.FloatLiteralType)
- }
- extension SwiftProtobuf.Google_Protobuf_Int64Value : Swift.ExpressibleByIntegerLiteral {
- public typealias WrappedType = SwiftProtobuf.ProtobufInt64
- public typealias IntegerLiteralType = SwiftProtobuf.Google_Protobuf_Int64Value.WrappedType.BaseType
- public init(_ value: SwiftProtobuf.Google_Protobuf_Int64Value.WrappedType.BaseType)
- public init(integerLiteral: SwiftProtobuf.Google_Protobuf_Int64Value.IntegerLiteralType)
- }
- extension SwiftProtobuf.Google_Protobuf_UInt64Value : Swift.ExpressibleByIntegerLiteral {
- public typealias WrappedType = SwiftProtobuf.ProtobufUInt64
- public typealias IntegerLiteralType = SwiftProtobuf.Google_Protobuf_UInt64Value.WrappedType.BaseType
- public init(_ value: SwiftProtobuf.Google_Protobuf_UInt64Value.WrappedType.BaseType)
- public init(integerLiteral: SwiftProtobuf.Google_Protobuf_UInt64Value.IntegerLiteralType)
- }
- extension SwiftProtobuf.Google_Protobuf_Int32Value : Swift.ExpressibleByIntegerLiteral {
- public typealias WrappedType = SwiftProtobuf.ProtobufInt32
- public typealias IntegerLiteralType = SwiftProtobuf.Google_Protobuf_Int32Value.WrappedType.BaseType
- public init(_ value: SwiftProtobuf.Google_Protobuf_Int32Value.WrappedType.BaseType)
- public init(integerLiteral: SwiftProtobuf.Google_Protobuf_Int32Value.IntegerLiteralType)
- }
- extension SwiftProtobuf.Google_Protobuf_UInt32Value : Swift.ExpressibleByIntegerLiteral {
- public typealias WrappedType = SwiftProtobuf.ProtobufUInt32
- public typealias IntegerLiteralType = SwiftProtobuf.Google_Protobuf_UInt32Value.WrappedType.BaseType
- public init(_ value: SwiftProtobuf.Google_Protobuf_UInt32Value.WrappedType.BaseType)
- public init(integerLiteral: SwiftProtobuf.Google_Protobuf_UInt32Value.IntegerLiteralType)
- }
- extension SwiftProtobuf.Google_Protobuf_BoolValue : Swift.ExpressibleByBooleanLiteral {
- public typealias WrappedType = SwiftProtobuf.ProtobufBool
- public typealias BooleanLiteralType = Swift.Bool
- public init(_ value: SwiftProtobuf.Google_Protobuf_BoolValue.WrappedType.BaseType)
- public init(booleanLiteral: Swift.Bool)
- }
- extension SwiftProtobuf.Google_Protobuf_StringValue : Swift.ExpressibleByStringLiteral {
- public typealias WrappedType = SwiftProtobuf.ProtobufString
- public typealias StringLiteralType = Swift.String
- public typealias ExtendedGraphemeClusterLiteralType = Swift.String
- public typealias UnicodeScalarLiteralType = Swift.String
- public init(_ value: SwiftProtobuf.Google_Protobuf_StringValue.WrappedType.BaseType)
- public init(stringLiteral: Swift.String)
- public init(extendedGraphemeClusterLiteral: Swift.String)
- public init(unicodeScalarLiteral: Swift.String)
- }
- extension SwiftProtobuf.Google_Protobuf_BytesValue {
- public typealias WrappedType = SwiftProtobuf.ProtobufBytes
- public init(_ value: SwiftProtobuf.Google_Protobuf_BytesValue.WrappedType.BaseType)
- }
- public protocol Visitor {
- mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws
- mutating func visitSingularDoubleField(value: Swift.Double, fieldNumber: Swift.Int) throws
- mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws
- mutating func visitSingularInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws
- mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws
- mutating func visitSingularUInt64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws
- mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws
- mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws
- mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws
- mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws
- mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws
- mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws
- mutating func visitSingularBoolField(value: Swift.Bool, fieldNumber: Swift.Int) throws
- mutating func visitSingularStringField(value: Swift.String, fieldNumber: Swift.Int) throws
- mutating func visitSingularBytesField(value: Foundation.Data, fieldNumber: Swift.Int) throws
- mutating func visitSingularEnumField<E>(value: E, fieldNumber: Swift.Int) throws where E : SwiftProtobuf.Enum
- mutating func visitSingularMessageField<M>(value: M, fieldNumber: Swift.Int) throws where M : SwiftProtobuf.Message
- mutating func visitSingularGroupField<G>(value: G, fieldNumber: Swift.Int) throws where G : SwiftProtobuf.Message
- mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws
- mutating func visitRepeatedEnumField<E>(value: [E], fieldNumber: Swift.Int) throws where E : SwiftProtobuf.Enum
- mutating func visitRepeatedMessageField<M>(value: [M], fieldNumber: Swift.Int) throws where M : SwiftProtobuf.Message
- mutating func visitRepeatedGroupField<G>(value: [G], fieldNumber: Swift.Int) throws where G : SwiftProtobuf.Message
- mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws
- mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws
- mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws
- mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws
- mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws
- mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws
- mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws
- mutating func visitPackedEnumField<E>(value: [E], fieldNumber: Swift.Int) throws where E : SwiftProtobuf.Enum
- mutating func visitMapField<KeyType, ValueType>(fieldType: SwiftProtobuf._ProtobufMap<KeyType, ValueType>.Type, value: SwiftProtobuf._ProtobufMap<KeyType, ValueType>.BaseType, fieldNumber: Swift.Int) throws where KeyType : SwiftProtobuf.MapKeyType, ValueType : SwiftProtobuf.MapValueType
- mutating func visitMapField<KeyType, ValueType>(fieldType: SwiftProtobuf._ProtobufEnumMap<KeyType, ValueType>.Type, value: SwiftProtobuf._ProtobufEnumMap<KeyType, ValueType>.BaseType, fieldNumber: Swift.Int) throws where KeyType : SwiftProtobuf.MapKeyType, ValueType : SwiftProtobuf.Enum, ValueType.RawValue == Swift.Int
- mutating func visitMapField<KeyType, ValueType>(fieldType: SwiftProtobuf._ProtobufMessageMap<KeyType, ValueType>.Type, value: SwiftProtobuf._ProtobufMessageMap<KeyType, ValueType>.BaseType, fieldNumber: Swift.Int) throws where KeyType : SwiftProtobuf.MapKeyType, ValueType : Swift.Hashable, ValueType : SwiftProtobuf.Message
- mutating func visitExtensionFields(fields: SwiftProtobuf.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws
- mutating func visitExtensionFieldsAsMessageSet(fields: SwiftProtobuf.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws
- mutating func visitUnknown(bytes: Foundation.Data) throws
- }
- extension SwiftProtobuf.Visitor {
- public mutating func visitSingularFloatField(value: Swift.Float, fieldNumber: Swift.Int) throws
- public mutating func visitSingularInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws
- public mutating func visitSingularUInt32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws
- public mutating func visitSingularSInt32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws
- public mutating func visitSingularSInt64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws
- public mutating func visitSingularFixed32Field(value: Swift.UInt32, fieldNumber: Swift.Int) throws
- public mutating func visitSingularFixed64Field(value: Swift.UInt64, fieldNumber: Swift.Int) throws
- public mutating func visitSingularSFixed32Field(value: Swift.Int32, fieldNumber: Swift.Int) throws
- public mutating func visitSingularSFixed64Field(value: Swift.Int64, fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedStringField(value: [Swift.String], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedBytesField(value: [Foundation.Data], fieldNumber: Swift.Int) throws
- public mutating func visitRepeatedEnumField<E>(value: [E], fieldNumber: Swift.Int) throws where E : SwiftProtobuf.Enum
- public mutating func visitRepeatedMessageField<M>(value: [M], fieldNumber: Swift.Int) throws where M : SwiftProtobuf.Message
- public mutating func visitRepeatedGroupField<G>(value: [G], fieldNumber: Swift.Int) throws where G : SwiftProtobuf.Message
- public mutating func visitPackedFloatField(value: [Swift.Float], fieldNumber: Swift.Int) throws
- public mutating func visitPackedDoubleField(value: [Swift.Double], fieldNumber: Swift.Int) throws
- public mutating func visitPackedInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- public mutating func visitPackedInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- public mutating func visitPackedUInt32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws
- public mutating func visitPackedUInt64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws
- public mutating func visitPackedSInt32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- public mutating func visitPackedSInt64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- public mutating func visitPackedFixed32Field(value: [Swift.UInt32], fieldNumber: Swift.Int) throws
- public mutating func visitPackedFixed64Field(value: [Swift.UInt64], fieldNumber: Swift.Int) throws
- public mutating func visitPackedSFixed32Field(value: [Swift.Int32], fieldNumber: Swift.Int) throws
- public mutating func visitPackedSFixed64Field(value: [Swift.Int64], fieldNumber: Swift.Int) throws
- public mutating func visitPackedBoolField(value: [Swift.Bool], fieldNumber: Swift.Int) throws
- public mutating func visitPackedEnumField<E>(value: [E], fieldNumber: Swift.Int) throws where E : SwiftProtobuf.Enum
- public mutating func visitSingularGroupField<G>(value: G, fieldNumber: Swift.Int) throws where G : SwiftProtobuf.Message
- public mutating func visitExtensionFieldsAsMessageSet(fields: SwiftProtobuf.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws
- public mutating func visitExtensionFields(fields: SwiftProtobuf.ExtensionFieldValueSet, start: Swift.Int, end: Swift.Int) throws
- }
- public enum Internal {
- @available(*, deprecated, message: "Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.")
- public static let emptyData: Foundation.Data
- public static func areAllInitialized(_ listOfMessages: [any SwiftProtobuf.Message]) -> Swift.Bool
- public static func areAllInitialized<K>(_ mapToMessages: [K : any SwiftProtobuf.Message]) -> Swift.Bool where K : Swift.Hashable
- }
- public struct ExtensionFieldValueSet : Swift.Hashable, Swift.Sendable {
- public static func == (lhs: SwiftProtobuf.ExtensionFieldValueSet, rhs: SwiftProtobuf.ExtensionFieldValueSet) -> Swift.Bool
- public init()
- public func hash(into hasher: inout Swift.Hasher)
- public func traverse<V>(visitor: inout V, start: Swift.Int, end: Swift.Int) throws where V : SwiftProtobuf.Visitor
- public subscript(index: Swift.Int) -> (any SwiftProtobuf.AnyExtensionField)? {
- get
- set
- }
- public var isInitialized: Swift.Bool {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
- }
- public protocol Decoder {
- mutating func handleConflictingOneOf() throws
- mutating func nextFieldNumber() throws -> Swift.Int?
- mutating func decodeSingularFloatField(value: inout Swift.Float) throws
- mutating func decodeSingularFloatField(value: inout Swift.Float?) throws
- mutating func decodeRepeatedFloatField(value: inout [Swift.Float]) throws
- mutating func decodeSingularDoubleField(value: inout Swift.Double) throws
- mutating func decodeSingularDoubleField(value: inout Swift.Double?) throws
- mutating func decodeRepeatedDoubleField(value: inout [Swift.Double]) throws
- mutating func decodeSingularInt32Field(value: inout Swift.Int32) throws
- mutating func decodeSingularInt32Field(value: inout Swift.Int32?) throws
- mutating func decodeRepeatedInt32Field(value: inout [Swift.Int32]) throws
- mutating func decodeSingularInt64Field(value: inout Swift.Int64) throws
- mutating func decodeSingularInt64Field(value: inout Swift.Int64?) throws
- mutating func decodeRepeatedInt64Field(value: inout [Swift.Int64]) throws
- mutating func decodeSingularUInt32Field(value: inout Swift.UInt32) throws
- mutating func decodeSingularUInt32Field(value: inout Swift.UInt32?) throws
- mutating func decodeRepeatedUInt32Field(value: inout [Swift.UInt32]) throws
- mutating func decodeSingularUInt64Field(value: inout Swift.UInt64) throws
- mutating func decodeSingularUInt64Field(value: inout Swift.UInt64?) throws
- mutating func decodeRepeatedUInt64Field(value: inout [Swift.UInt64]) throws
- mutating func decodeSingularSInt32Field(value: inout Swift.Int32) throws
- mutating func decodeSingularSInt32Field(value: inout Swift.Int32?) throws
- mutating func decodeRepeatedSInt32Field(value: inout [Swift.Int32]) throws
- mutating func decodeSingularSInt64Field(value: inout Swift.Int64) throws
- mutating func decodeSingularSInt64Field(value: inout Swift.Int64?) throws
- mutating func decodeRepeatedSInt64Field(value: inout [Swift.Int64]) throws
- mutating func decodeSingularFixed32Field(value: inout Swift.UInt32) throws
- mutating func decodeSingularFixed32Field(value: inout Swift.UInt32?) throws
- mutating func decodeRepeatedFixed32Field(value: inout [Swift.UInt32]) throws
- mutating func decodeSingularFixed64Field(value: inout Swift.UInt64) throws
- mutating func decodeSingularFixed64Field(value: inout Swift.UInt64?) throws
- mutating func decodeRepeatedFixed64Field(value: inout [Swift.UInt64]) throws
- mutating func decodeSingularSFixed32Field(value: inout Swift.Int32) throws
- mutating func decodeSingularSFixed32Field(value: inout Swift.Int32?) throws
- mutating func decodeRepeatedSFixed32Field(value: inout [Swift.Int32]) throws
- mutating func decodeSingularSFixed64Field(value: inout Swift.Int64) throws
- mutating func decodeSingularSFixed64Field(value: inout Swift.Int64?) throws
- mutating func decodeRepeatedSFixed64Field(value: inout [Swift.Int64]) throws
- mutating func decodeSingularBoolField(value: inout Swift.Bool) throws
- mutating func decodeSingularBoolField(value: inout Swift.Bool?) throws
- mutating func decodeRepeatedBoolField(value: inout [Swift.Bool]) throws
- mutating func decodeSingularStringField(value: inout Swift.String) throws
- mutating func decodeSingularStringField(value: inout Swift.String?) throws
- mutating func decodeRepeatedStringField(value: inout [Swift.String]) throws
- mutating func decodeSingularBytesField(value: inout Foundation.Data) throws
- mutating func decodeSingularBytesField(value: inout Foundation.Data?) throws
- mutating func decodeRepeatedBytesField(value: inout [Foundation.Data]) throws
- mutating func decodeSingularEnumField<E>(value: inout E) throws where E : SwiftProtobuf.Enum, E.RawValue == Swift.Int
- mutating func decodeSingularEnumField<E>(value: inout E?) throws where E : SwiftProtobuf.Enum, E.RawValue == Swift.Int
- mutating func decodeRepeatedEnumField<E>(value: inout [E]) throws where E : SwiftProtobuf.Enum, E.RawValue == Swift.Int
- mutating func decodeSingularMessageField<M>(value: inout M?) throws where M : SwiftProtobuf.Message
- mutating func decodeRepeatedMessageField<M>(value: inout [M]) throws where M : SwiftProtobuf.Message
- mutating func decodeSingularGroupField<G>(value: inout G?) throws where G : SwiftProtobuf.Message
- mutating func decodeRepeatedGroupField<G>(value: inout [G]) throws where G : SwiftProtobuf.Message
- mutating func decodeMapField<KeyType, ValueType>(fieldType: SwiftProtobuf._ProtobufMap<KeyType, ValueType>.Type, value: inout SwiftProtobuf._ProtobufMap<KeyType, ValueType>.BaseType) throws where KeyType : SwiftProtobuf.MapKeyType, ValueType : SwiftProtobuf.MapValueType
- mutating func decodeMapField<KeyType, ValueType>(fieldType: SwiftProtobuf._ProtobufEnumMap<KeyType, ValueType>.Type, value: inout SwiftProtobuf._ProtobufEnumMap<KeyType, ValueType>.BaseType) throws where KeyType : SwiftProtobuf.MapKeyType, ValueType : SwiftProtobuf.Enum, ValueType.RawValue == Swift.Int
- mutating func decodeMapField<KeyType, ValueType>(fieldType: SwiftProtobuf._ProtobufMessageMap<KeyType, ValueType>.Type, value: inout SwiftProtobuf._ProtobufMessageMap<KeyType, ValueType>.BaseType) throws where KeyType : SwiftProtobuf.MapKeyType, ValueType : Swift.Hashable, ValueType : SwiftProtobuf.Message
- mutating func decodeExtensionField(values: inout SwiftProtobuf.ExtensionFieldValueSet, messageType: any SwiftProtobuf.Message.Type, fieldNumber: Swift.Int) throws
- mutating func decodeExtensionFieldsAsMessageSet(values: inout SwiftProtobuf.ExtensionFieldValueSet, messageType: any SwiftProtobuf.Message.Type) throws
- }
- extension SwiftProtobuf.Decoder {
- public mutating func decodeExtensionFieldsAsMessageSet(values: inout SwiftProtobuf.ExtensionFieldValueSet, messageType: any SwiftProtobuf.Message.Type) throws
- }
- extension SwiftProtobuf.Message {
- public init(jsonUTF8Data: Foundation.Data, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws
- public init(jsonUTF8Data: Foundation.Data, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws
- public func jsonUTF8Data(options: SwiftProtobuf.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data
- }
- public struct JSONDecodingOptions : Swift.Sendable {
- public var messageDepthLimit: Swift.Int
- public var ignoreUnknownFields: Swift.Bool
- public init()
- }
- public struct TextFormatEncodingOptions : Swift.Sendable {
- public var printUnknownFields: Swift.Bool
- public init()
- }
- #if compiler(>=5.3) && $RethrowsProtocol
- @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
- extension _Concurrency.AsyncSequence where Self.Element == Swift.UInt8 {
- @inlinable public func binaryProtobufDelimitedMessages<M>(of messageType: M.Type = M.self, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) -> SwiftProtobuf.AsyncMessageSequence<Self, M> where M : SwiftProtobuf.Message {
- AsyncMessageSequence<Self, M>(
- base: self,
- extensions: extensions,
- partial: partial,
- options: options
- )
- }
- }
- #endif
- #if compiler(>=5.3) && $RethrowsProtocol
- @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
- public struct AsyncMessageSequence<Base, M> : _Concurrency.AsyncSequence where Base : _Concurrency.AsyncSequence, M : SwiftProtobuf.Message, Base.Element == Swift.UInt8 {
- public typealias Element = M
- public init(base: Base, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions())
- public struct AsyncIterator : _Concurrency.AsyncIteratorProtocol {
- @usableFromInline
- internal var iterator: Base.AsyncIterator?
- @usableFromInline
- internal let extensions: (any SwiftProtobuf.ExtensionMap)?
- @usableFromInline
- internal let partial: Swift.Bool
- @usableFromInline
- internal let options: SwiftProtobuf.BinaryDecodingOptions
- #if compiler(>=5.3) && $AsyncAwait
- @inlinable internal mutating func nextVarInt() async throws -> Swift.UInt64? {
- var messageSize: UInt64 = 0
- var shift: UInt64 = 0
- while let byte = try await iterator?.next() {
- messageSize |= UInt64(byte & 0x7f) << shift
- shift += UInt64(7)
- if shift > 35 {
- iterator = nil
- throw SwiftProtobufError.BinaryStreamDecoding.malformedLength()
- }
- if byte & 0x80 == 0 {
- return messageSize
- }
- }
- if shift > 0 {
- // The stream has ended inside a varint.
- iterator = nil
- throw BinaryDelimited.Error.truncated
- }
- return nil // End of stream reached.
- }
- #endif
- #if compiler(>=5.3) && $AsyncAwait
- @usableFromInline
- internal mutating func readBytes(_ size: Swift.Int) async throws -> [Swift.UInt8]
- #endif
- #if compiler(>=5.3) && $AsyncAwait
- @inlinable public mutating func next() async throws -> M? {
- guard let messageSize = try await nextVarInt() else {
- iterator = nil
- return nil
- }
- guard messageSize <= UInt64(0x7fff_ffff) else {
- iterator = nil
- throw SwiftProtobufError.BinaryDecoding.tooLarge()
- }
- if messageSize == 0 {
- return try M(
- serializedBytes: [],
- extensions: extensions,
- partial: partial,
- options: options
- )
- }
- let buffer = try await readBytes(Int(messageSize))
- return try M(
- serializedBytes: buffer,
- extensions: extensions,
- partial: partial,
- options: options
- )
- }
- #endif
- public typealias Element = M
- }
- public func makeAsyncIterator() -> SwiftProtobuf.AsyncMessageSequence<Base, M>.AsyncIterator
- }
- #endif
- #if compiler(>=5.3) && $RethrowsProtocol
- @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
- extension SwiftProtobuf.AsyncMessageSequence : Swift.Sendable where Base : Swift.Sendable {
- }
- #endif
- #if compiler(>=5.3) && $RethrowsProtocol
- @available(*, unavailable)
- extension SwiftProtobuf.AsyncMessageSequence.AsyncIterator : Swift.Sendable {
- }
- #endif
- public struct BinaryEncodingOptions : Swift.Sendable {
- public var useDeterministicOrdering: Swift.Bool
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_Value : Swift.ExpressibleByIntegerLiteral {
- public typealias IntegerLiteralType = Swift.Int64
- public init(integerLiteral value: Swift.Int64)
- }
- extension SwiftProtobuf.Google_Protobuf_Value : Swift.ExpressibleByFloatLiteral {
- public typealias FloatLiteralType = Swift.Double
- public init(floatLiteral value: Swift.Double)
- }
- extension SwiftProtobuf.Google_Protobuf_Value : Swift.ExpressibleByBooleanLiteral {
- public typealias BooleanLiteralType = Swift.Bool
- public init(booleanLiteral value: Swift.Bool)
- }
- extension SwiftProtobuf.Google_Protobuf_Value : Swift.ExpressibleByStringLiteral {
- public typealias StringLiteralType = Swift.String
- public typealias ExtendedGraphemeClusterLiteralType = Swift.String
- public typealias UnicodeScalarLiteralType = Swift.String
- public init(stringLiteral value: Swift.String)
- public init(unicodeScalarLiteral value: Swift.String)
- public init(extendedGraphemeClusterLiteral value: Swift.String)
- }
- extension SwiftProtobuf.Google_Protobuf_Value : Swift.ExpressibleByNilLiteral {
- public init(nilLiteral: ())
- }
- extension SwiftProtobuf.Google_Protobuf_Value {
- public init(numberValue: Swift.Double)
- public init(stringValue: Swift.String)
- public init(boolValue: Swift.Bool)
- public init(structValue: SwiftProtobuf.Google_Protobuf_Struct)
- public init(listValue: SwiftProtobuf.Google_Protobuf_ListValue)
- }
- @preconcurrency public protocol Message : Swift.CustomDebugStringConvertible, Swift.Sendable {
- init()
- static var protoMessageName: Swift.String { get }
- var isInitialized: Swift.Bool { get }
- var unknownFields: SwiftProtobuf.UnknownStorage { get set }
- mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- func hash(into hasher: inout Swift.Hasher)
- func isEqualTo(message: any SwiftProtobuf.Message) -> Swift.Bool
- }
- extension SwiftProtobuf.Message {
- public var isInitialized: Swift.Bool {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public var debugDescription: Swift.String {
- get
- }
- public static func with(_ populator: (inout Self) throws -> Swift.Void) rethrows -> Self
- }
- @preconcurrency public protocol _MessageImplementationBase : Swift.Hashable, SwiftProtobuf.Message {
- func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool
- }
- extension SwiftProtobuf._MessageImplementationBase {
- public func isEqualTo(message: any SwiftProtobuf.Message) -> Swift.Bool
- public static func == (lhs: Self, rhs: Self) -> Swift.Bool
- public func _protobuf_generated_isEqualTo(other: Self) -> Swift.Bool
- }
- @preconcurrency public protocol FieldType : Swift.Sendable {
- associatedtype BaseType : Swift.Hashable, Swift.Sendable
- static var proto3DefaultValue: Self.BaseType { get }
- static func decodeSingular<D>(value: inout Self.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- static func decodeRepeated<D>(value: inout [Self.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- static func visitSingular<V>(value: Self.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- static func visitRepeated<V>(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- static func visitPacked<V>(value: [Self.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- @preconcurrency public protocol MapKeyType : SwiftProtobuf.FieldType {
- static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool
- }
- extension SwiftProtobuf.MapKeyType where Self.BaseType : Swift.Comparable {
- public static func _lessThan(lhs: Self.BaseType, rhs: Self.BaseType) -> Swift.Bool
- }
- @preconcurrency public protocol MapValueType : SwiftProtobuf.FieldType {
- }
- public struct ProtobufFloat : SwiftProtobuf.FieldType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Float
- public static var proto3DefaultValue: Swift.Float {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufFloat.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufFloat.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufFloat.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufFloat.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufDouble : SwiftProtobuf.FieldType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Double
- public static var proto3DefaultValue: Swift.Double {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufDouble.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufDouble.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufDouble.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufDouble.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufInt32 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Int32
- public static var proto3DefaultValue: Swift.Int32 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufInt32.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufInt32.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufInt64 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Int64
- public static var proto3DefaultValue: Swift.Int64 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufInt64.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufInt64.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufUInt32 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.UInt32
- public static var proto3DefaultValue: Swift.UInt32 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufUInt32.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufUInt32.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufUInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufUInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufUInt64 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.UInt64
- public static var proto3DefaultValue: Swift.UInt64 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufUInt64.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufUInt64.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufUInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufUInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufSInt32 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Int32
- public static var proto3DefaultValue: Swift.Int32 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufSInt32.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufSInt32.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufSInt32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufSInt32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufSInt64 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Int64
- public static var proto3DefaultValue: Swift.Int64 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufSInt64.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufSInt64.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufSInt64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufSInt64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufFixed32 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.UInt32
- public static var proto3DefaultValue: Swift.UInt32 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufFixed32.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufFixed32.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufFixed64 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.UInt64
- public static var proto3DefaultValue: Swift.UInt64 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufFixed64.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufFixed64.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufSFixed32 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Int32
- public static var proto3DefaultValue: Swift.Int32 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufSFixed32.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufSFixed32.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufSFixed32.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufSFixed32.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufSFixed64 : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Int64
- public static var proto3DefaultValue: Swift.Int64 {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufSFixed64.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufSFixed64.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufSFixed64.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufSFixed64.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufBool : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.Bool
- public static var proto3DefaultValue: Swift.Bool {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufBool.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufBool.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufBool.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufBool.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func _lessThan(lhs: SwiftProtobuf.ProtobufBool.BaseType, rhs: SwiftProtobuf.ProtobufBool.BaseType) -> Swift.Bool
- }
- public struct ProtobufString : SwiftProtobuf.FieldType, SwiftProtobuf.MapKeyType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Swift.String
- public static var proto3DefaultValue: Swift.String {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufString.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufString.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufString.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufString.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- public struct ProtobufBytes : SwiftProtobuf.FieldType, SwiftProtobuf.MapValueType {
- public typealias BaseType = Foundation.Data
- public static var proto3DefaultValue: Foundation.Data {
- get
- }
- public static func decodeSingular<D>(value: inout SwiftProtobuf.ProtobufBytes.BaseType?, from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func decodeRepeated<D>(value: inout [SwiftProtobuf.ProtobufBytes.BaseType], from decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public static func visitSingular<V>(value: SwiftProtobuf.ProtobufBytes.BaseType, fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitRepeated<V>(value: [SwiftProtobuf.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func visitPacked<V>(value: [SwiftProtobuf.ProtobufBytes.BaseType], fieldNumber: Swift.Int, with visitor: inout V) throws where V : SwiftProtobuf.Visitor
- }
- extension SwiftProtobuf.Google_Protobuf_Duration {
- public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0)
- }
- extension SwiftProtobuf.Google_Protobuf_Duration : Swift.ExpressibleByFloatLiteral {
- public typealias FloatLiteralType = Swift.Double
- public init(floatLiteral value: Swift.Double)
- }
- extension SwiftProtobuf.Google_Protobuf_Duration {
- public init(timeInterval: Foundation.TimeInterval)
- public var timeInterval: Foundation.TimeInterval {
- get
- }
- }
- prefix public func - (operand: SwiftProtobuf.Google_Protobuf_Duration) -> SwiftProtobuf.Google_Protobuf_Duration
- public func + (lhs: SwiftProtobuf.Google_Protobuf_Duration, rhs: SwiftProtobuf.Google_Protobuf_Duration) -> SwiftProtobuf.Google_Protobuf_Duration
- public func - (lhs: SwiftProtobuf.Google_Protobuf_Duration, rhs: SwiftProtobuf.Google_Protobuf_Duration) -> SwiftProtobuf.Google_Protobuf_Duration
- public func - (lhs: SwiftProtobuf.Google_Protobuf_Timestamp, rhs: SwiftProtobuf.Google_Protobuf_Timestamp) -> SwiftProtobuf.Google_Protobuf_Duration
- extension SwiftProtobuf.Message {
- public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self]
- public static func array(fromJSONUTF8Data jsonUTF8Data: Foundation.Data, extensions: any SwiftProtobuf.ExtensionMap = SimpleExtensionMap(), options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self]
- public static func jsonUTF8Data<C>(from collection: C, options: SwiftProtobuf.JSONEncodingOptions = JSONEncodingOptions()) throws -> Foundation.Data where Self == C.Element, C : Swift.Collection
- }
- public struct _ProtobufMap<KeyType, ValueType> where KeyType : SwiftProtobuf.MapKeyType, ValueType : SwiftProtobuf.FieldType {
- public typealias Key = KeyType.BaseType
- public typealias Value = ValueType.BaseType
- public typealias BaseType = [SwiftProtobuf._ProtobufMap<KeyType, ValueType>.Key : SwiftProtobuf._ProtobufMap<KeyType, ValueType>.Value]
- }
- public struct _ProtobufMessageMap<KeyType, ValueType> where KeyType : SwiftProtobuf.MapKeyType, ValueType : Swift.Hashable, ValueType : SwiftProtobuf.Message {
- public typealias Key = KeyType.BaseType
- public typealias Value = ValueType
- public typealias BaseType = [SwiftProtobuf._ProtobufMessageMap<KeyType, ValueType>.Key : SwiftProtobuf._ProtobufMessageMap<KeyType, ValueType>.Value]
- }
- public struct _ProtobufEnumMap<KeyType, ValueType> where KeyType : SwiftProtobuf.MapKeyType, ValueType : SwiftProtobuf.Enum {
- public typealias Key = KeyType.BaseType
- public typealias Value = ValueType
- public typealias BaseType = [SwiftProtobuf._ProtobufEnumMap<KeyType, ValueType>.Key : SwiftProtobuf._ProtobufEnumMap<KeyType, ValueType>.Value]
- }
- public struct JSONEncodingOptions : Swift.Sendable {
- public var alwaysPrintInt64sAsNumbers: Swift.Bool
- public var alwaysPrintEnumsAsInts: Swift.Bool
- public var preserveProtoFieldNames: Swift.Bool
- public var useDeterministicOrdering: Swift.Bool
- public init()
- }
- public enum JSONDecodingError : Swift.Error {
- case failure
- case malformedNumber
- case numberRange
- case malformedMap
- case malformedBool
- case malformedString
- case invalidUTF8
- case missingFieldNames
- case schemaMismatch
- case unrecognizedEnumValue
- case illegalNull
- case unquotedMapKey
- case leadingZero
- case truncated
- case malformedDuration
- case malformedTimestamp
- case malformedFieldMask
- case trailingGarbage
- case conflictingOneOf
- case messageDepthLimit
- case unknownField(Swift.String)
- }
- public struct SwiftProtobufError : Swift.Error, @unchecked Swift.Sendable {
- public var code: SwiftProtobuf.SwiftProtobufError.Code {
- get
- set
- }
- public init(code: SwiftProtobuf.SwiftProtobufError.Code, message: Swift.String, location: SwiftProtobuf.SwiftProtobufError.SourceLocation)
- }
- extension SwiftProtobuf.SwiftProtobufError {
- public struct Code : Swift.Hashable, Swift.Sendable, Swift.CustomStringConvertible {
- public var description: Swift.String {
- get
- }
- public static var binaryDecodingError: SwiftProtobuf.SwiftProtobufError.Code {
- get
- }
- public static var binaryStreamDecodingError: SwiftProtobuf.SwiftProtobufError.Code {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public static func == (a: SwiftProtobuf.SwiftProtobufError.Code, b: SwiftProtobuf.SwiftProtobufError.Code) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct SourceLocation : Swift.Sendable, Swift.Hashable {
- public var function: Swift.String
- public var file: Swift.String
- public var line: Swift.Int
- public init(function: Swift.String, file: Swift.String, line: Swift.Int)
- @usableFromInline
- internal static func here(function: Swift.String = #function, file: Swift.String = #fileID, line: Swift.Int = #line) -> SwiftProtobuf.SwiftProtobufError.SourceLocation
- public func hash(into hasher: inout Swift.Hasher)
- public static func == (a: SwiftProtobuf.SwiftProtobufError.SourceLocation, b: SwiftProtobuf.SwiftProtobufError.SourceLocation) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- }
- extension SwiftProtobuf.SwiftProtobufError : Swift.CustomStringConvertible {
- public var description: Swift.String {
- get
- }
- }
- extension SwiftProtobuf.SwiftProtobufError : Swift.CustomDebugStringConvertible {
- public var debugDescription: Swift.String {
- get
- }
- }
- extension SwiftProtobuf.SwiftProtobufError {
- public enum BinaryDecoding {
- public static func tooLarge(function: Swift.String = #function, file: Swift.String = #fileID, line: Swift.Int = #line) -> SwiftProtobuf.SwiftProtobufError
- }
- public enum BinaryStreamDecoding {
- public static func tooLarge(function: Swift.String = #function, file: Swift.String = #fileID, line: Swift.Int = #line) -> SwiftProtobuf.SwiftProtobufError
- public static func malformedLength(function: Swift.String = #function, file: Swift.String = #fileID, line: Swift.Int = #line) -> SwiftProtobuf.SwiftProtobufError
- public static func noBytesAvailable(function: Swift.String = #function, file: Swift.String = #fileID, line: Swift.Int = #line) -> SwiftProtobuf.SwiftProtobufError
- }
- }
- extension SwiftProtobuf.Google_Protobuf_ListValue : Swift.ExpressibleByArrayLiteral {
- public typealias Element = SwiftProtobuf.Google_Protobuf_Value
- public init(arrayLiteral elements: SwiftProtobuf.Google_Protobuf_ListValue.Element...)
- public typealias ArrayLiteralElement = SwiftProtobuf.Google_Protobuf_ListValue.Element
- }
- extension SwiftProtobuf.Google_Protobuf_ListValue {
- public init(values: [SwiftProtobuf.Google_Protobuf_Value])
- public subscript(index: Swift.Int) -> SwiftProtobuf.Google_Protobuf_Value {
- get
- set(newValue)
- }
- }
- @preconcurrency public protocol ExtensionMap : Swift.Sendable {
- subscript(messageType: any SwiftProtobuf.Message.Type, fieldNumber: Swift.Int) -> (any SwiftProtobuf.AnyMessageExtension)? { get }
- func fieldNumberForProto(messageType: any SwiftProtobuf.Message.Type, protoFieldName: Swift.String) -> Swift.Int?
- }
- public struct Google_Protobuf_Api : Swift.Sendable {
- public var name: Swift.String
- public var methods: [SwiftProtobuf.Google_Protobuf_Method]
- public var options: [SwiftProtobuf.Google_Protobuf_Option]
- public var version: Swift.String
- public var sourceContext: SwiftProtobuf.Google_Protobuf_SourceContext {
- get
- set
- }
- public var hasSourceContext: Swift.Bool {
- get
- }
- public mutating func clearSourceContext()
- public var mixins: [SwiftProtobuf.Google_Protobuf_Mixin]
- public var syntax: SwiftProtobuf.Google_Protobuf_Syntax
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_Method : Swift.Sendable {
- public var name: Swift.String
- public var requestTypeURL: Swift.String
- public var requestStreaming: Swift.Bool
- public var responseTypeURL: Swift.String
- public var responseStreaming: Swift.Bool
- public var options: [SwiftProtobuf.Google_Protobuf_Option]
- public var syntax: SwiftProtobuf.Google_Protobuf_Syntax
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_Mixin : Swift.Sendable {
- public var name: Swift.String
- public var root: Swift.String
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_Api : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Api, rhs: SwiftProtobuf.Google_Protobuf_Api) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Method : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Method, rhs: SwiftProtobuf.Google_Protobuf_Method) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Mixin : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Mixin, rhs: SwiftProtobuf.Google_Protobuf_Mixin) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- public enum TextFormatDecodingError : Swift.Error {
- case malformedText
- case malformedNumber
- case trailingGarbage
- case truncated
- case invalidUTF8
- case schemaMismatch
- case missingFieldNames
- case unknownField
- case unrecognizedEnumValue
- case conflictingOneOf
- case internalExtensionError
- case messageDepthLimit
- public static func == (a: SwiftProtobuf.TextFormatDecodingError, b: SwiftProtobuf.TextFormatDecodingError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public protocol _ProtoNameProviding {
- static var _protobuf_nameMap: SwiftProtobuf._NameMap { get }
- }
- extension SwiftProtobuf.Google_Protobuf_Any {
- @discardableResult
- public static func register(messageType: any SwiftProtobuf.Message.Type) -> Swift.Bool
- public static func messageType(forTypeURL url: Swift.String) -> (any SwiftProtobuf.Message.Type)?
- public static func messageType(forMessageName name: Swift.String) -> (any SwiftProtobuf.Message.Type)?
- }
- public struct Google_Protobuf_Duration : Swift.Sendable {
- public var seconds: Swift.Int64
- public var nanos: Swift.Int32
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_Duration : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Duration, rhs: SwiftProtobuf.Google_Protobuf_Duration) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- public enum JSONEncodingError : Swift.Error, Swift.Hashable {
- case anyTranscodeFailure
- case timestampRange
- case durationRange
- case fieldMaskConversion
- case missingFieldNames
- case missingValue
- case valueNumberNotFinite
- public static func == (a: SwiftProtobuf.JSONEncodingError, b: SwiftProtobuf.JSONEncodingError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public protocol SwiftProtobufContiguousBytes {
- init(repeating: Swift.UInt8, count: Swift.Int)
- init<S>(_ sequence: S) where S : Swift.Sequence, S.Element == Swift.UInt8
- var count: Swift.Int { get }
- func withUnsafeBytes<R>(_ body: (Swift.UnsafeRawBufferPointer) throws -> R) rethrows -> R
- mutating func withUnsafeMutableBytes<R>(_ body: (Swift.UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R
- }
- extension Swift.Array : SwiftProtobuf.SwiftProtobufContiguousBytes where Element == Swift.UInt8 {
- }
- extension Foundation.Data : SwiftProtobuf.SwiftProtobufContiguousBytes {
- }
- public enum BinaryDelimited {
- public enum Error : Swift.Error {
- case unknownStreamError
- case truncated
- public static func == (a: SwiftProtobuf.BinaryDelimited.Error, b: SwiftProtobuf.BinaryDelimited.Error) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public static func serialize(message: any SwiftProtobuf.Message, to stream: Foundation.OutputStream, partial: Swift.Bool = false) throws
- public static func parse<M>(messageType: M.Type, from stream: Foundation.InputStream, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws -> M where M : SwiftProtobuf.Message
- public static func merge<M>(into message: inout M, from stream: Foundation.InputStream, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws where M : SwiftProtobuf.Message
- }
- public struct Google_Protobuf_Empty : Swift.Sendable {
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_Empty : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Empty, rhs: SwiftProtobuf.Google_Protobuf_Empty) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct Version {
- public static let major: Swift.Int
- public static let minor: Swift.Int
- public static let revision: Swift.Int
- public static let versionString: Swift.String
- }
- public enum Google_Protobuf_Edition : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case unknown
- case legacy
- case proto2
- case proto3
- case edition2023
- case edition2024
- case edition1TestOnly
- case edition2TestOnly
- case edition99997TestOnly
- case edition99998TestOnly
- case edition99999TestOnly
- case max
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_Edition]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_Edition] {
- get
- }
- }
- public struct Google_Protobuf_FileDescriptorSet : Swift.Sendable {
- public var file: [SwiftProtobuf.Google_Protobuf_FileDescriptorProto]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_FileDescriptorProto : Swift.Sendable {
- public var name: Swift.String {
- get
- set
- }
- public var hasName: Swift.Bool {
- get
- }
- public mutating func clearName()
- public var package: Swift.String {
- get
- set
- }
- public var hasPackage: Swift.Bool {
- get
- }
- public mutating func clearPackage()
- public var dependency: [Swift.String]
- public var publicDependency: [Swift.Int32]
- public var weakDependency: [Swift.Int32]
- public var messageType: [SwiftProtobuf.Google_Protobuf_DescriptorProto]
- public var enumType: [SwiftProtobuf.Google_Protobuf_EnumDescriptorProto]
- public var service: [SwiftProtobuf.Google_Protobuf_ServiceDescriptorProto]
- public var `extension`: [SwiftProtobuf.Google_Protobuf_FieldDescriptorProto]
- public var options: SwiftProtobuf.Google_Protobuf_FileOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var sourceCodeInfo: SwiftProtobuf.Google_Protobuf_SourceCodeInfo {
- get
- set
- }
- public var hasSourceCodeInfo: Swift.Bool {
- get
- }
- public mutating func clearSourceCodeInfo()
- public var syntax: Swift.String {
- get
- set
- }
- public var hasSyntax: Swift.Bool {
- get
- }
- public mutating func clearSyntax()
- public var edition: SwiftProtobuf.Google_Protobuf_Edition {
- get
- set
- }
- public var hasEdition: Swift.Bool {
- get
- }
- public mutating func clearEdition()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_DescriptorProto : @unchecked Swift.Sendable {
- public var name: Swift.String {
- get
- set
- }
- public var hasName: Swift.Bool {
- get
- }
- public mutating func clearName()
- public var field: [SwiftProtobuf.Google_Protobuf_FieldDescriptorProto] {
- get
- set
- }
- public var `extension`: [SwiftProtobuf.Google_Protobuf_FieldDescriptorProto] {
- get
- set
- }
- public var nestedType: [SwiftProtobuf.Google_Protobuf_DescriptorProto] {
- get
- set
- }
- public var enumType: [SwiftProtobuf.Google_Protobuf_EnumDescriptorProto] {
- get
- set
- }
- public var extensionRange: [SwiftProtobuf.Google_Protobuf_DescriptorProto.ExtensionRange] {
- get
- set
- }
- public var oneofDecl: [SwiftProtobuf.Google_Protobuf_OneofDescriptorProto] {
- get
- set
- }
- public var options: SwiftProtobuf.Google_Protobuf_MessageOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var reservedRange: [SwiftProtobuf.Google_Protobuf_DescriptorProto.ReservedRange] {
- get
- set
- }
- public var reservedName: [Swift.String] {
- get
- set
- }
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public struct ExtensionRange : Swift.Sendable {
- public var start: Swift.Int32 {
- get
- set
- }
- public var hasStart: Swift.Bool {
- get
- }
- public mutating func clearStart()
- public var end: Swift.Int32 {
- get
- set
- }
- public var hasEnd: Swift.Bool {
- get
- }
- public mutating func clearEnd()
- public var options: SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct ReservedRange : Swift.Sendable {
- public var start: Swift.Int32 {
- get
- set
- }
- public var hasStart: Swift.Bool {
- get
- }
- public mutating func clearStart()
- public var end: Swift.Int32 {
- get
- set
- }
- public var hasEnd: Swift.Bool {
- get
- }
- public mutating func clearEnd()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public init()
- }
- public struct Google_Protobuf_ExtensionRangeOptions : SwiftProtobuf.ExtensibleMessage, Swift.Sendable {
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption]
- public var declaration: [SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions.Declaration]
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var verification: SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions.VerificationState {
- get
- set
- }
- public var hasVerification: Swift.Bool {
- get
- }
- public mutating func clearVerification()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum VerificationState : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case declaration
- case unverified
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions.VerificationState]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions.VerificationState] {
- get
- }
- }
- public struct Declaration : Swift.Sendable {
- public var number: Swift.Int32 {
- get
- set
- }
- public var hasNumber: Swift.Bool {
- get
- }
- public mutating func clearNumber()
- public var fullName: Swift.String {
- get
- set
- }
- public var hasFullName: Swift.Bool {
- get
- }
- public mutating func clearFullName()
- public var type: Swift.String {
- get
- set
- }
- public var hasType: Swift.Bool {
- get
- }
- public mutating func clearType()
- public var reserved: Swift.Bool {
- get
- set
- }
- public var hasReserved: Swift.Bool {
- get
- }
- public mutating func clearReserved()
- public var repeated: Swift.Bool {
- get
- set
- }
- public var hasRepeated: Swift.Bool {
- get
- }
- public mutating func clearRepeated()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_FieldDescriptorProto : Swift.Sendable {
- public var name: Swift.String {
- get
- set
- }
- public var hasName: Swift.Bool {
- get
- }
- public mutating func clearName()
- public var number: Swift.Int32 {
- get
- set
- }
- public var hasNumber: Swift.Bool {
- get
- }
- public mutating func clearNumber()
- public var label: SwiftProtobuf.Google_Protobuf_FieldDescriptorProto.Label {
- get
- set
- }
- public var hasLabel: Swift.Bool {
- get
- }
- public mutating func clearLabel()
- public var type: SwiftProtobuf.Google_Protobuf_FieldDescriptorProto.TypeEnum {
- get
- set
- }
- public var hasType: Swift.Bool {
- get
- }
- public mutating func clearType()
- public var typeName: Swift.String {
- get
- set
- }
- public var hasTypeName: Swift.Bool {
- get
- }
- public mutating func clearTypeName()
- public var extendee: Swift.String {
- get
- set
- }
- public var hasExtendee: Swift.Bool {
- get
- }
- public mutating func clearExtendee()
- public var defaultValue: Swift.String {
- get
- set
- }
- public var hasDefaultValue: Swift.Bool {
- get
- }
- public mutating func clearDefaultValue()
- public var oneofIndex: Swift.Int32 {
- get
- set
- }
- public var hasOneofIndex: Swift.Bool {
- get
- }
- public mutating func clearOneofIndex()
- public var jsonName: Swift.String {
- get
- set
- }
- public var hasJsonName: Swift.Bool {
- get
- }
- public mutating func clearJsonName()
- public var options: SwiftProtobuf.Google_Protobuf_FieldOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var proto3Optional: Swift.Bool {
- get
- set
- }
- public var hasProto3Optional: Swift.Bool {
- get
- }
- public mutating func clearProto3Optional()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum TypeEnum : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case double
- case float
- case int64
- case uint64
- case int32
- case fixed64
- case fixed32
- case bool
- case string
- case group
- case message
- case bytes
- case uint32
- case `enum`
- case sfixed32
- case sfixed64
- case sint32
- case sint64
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FieldDescriptorProto.TypeEnum]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FieldDescriptorProto.TypeEnum] {
- get
- }
- }
- public enum Label : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case optional
- case repeated
- case required
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FieldDescriptorProto.Label]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FieldDescriptorProto.Label] {
- get
- }
- }
- public init()
- }
- public struct Google_Protobuf_OneofDescriptorProto : Swift.Sendable {
- public var name: Swift.String {
- get
- set
- }
- public var hasName: Swift.Bool {
- get
- }
- public mutating func clearName()
- public var options: SwiftProtobuf.Google_Protobuf_OneofOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_EnumDescriptorProto : Swift.Sendable {
- public var name: Swift.String {
- get
- set
- }
- public var hasName: Swift.Bool {
- get
- }
- public mutating func clearName()
- public var value: [SwiftProtobuf.Google_Protobuf_EnumValueDescriptorProto]
- public var options: SwiftProtobuf.Google_Protobuf_EnumOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var reservedRange: [SwiftProtobuf.Google_Protobuf_EnumDescriptorProto.EnumReservedRange]
- public var reservedName: [Swift.String]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public struct EnumReservedRange : Swift.Sendable {
- public var start: Swift.Int32 {
- get
- set
- }
- public var hasStart: Swift.Bool {
- get
- }
- public mutating func clearStart()
- public var end: Swift.Int32 {
- get
- set
- }
- public var hasEnd: Swift.Bool {
- get
- }
- public mutating func clearEnd()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public init()
- }
- public struct Google_Protobuf_EnumValueDescriptorProto : Swift.Sendable {
- public var name: Swift.String {
- get
- set
- }
- public var hasName: Swift.Bool {
- get
- }
- public mutating func clearName()
- public var number: Swift.Int32 {
- get
- set
- }
- public var hasNumber: Swift.Bool {
- get
- }
- public mutating func clearNumber()
- public var options: SwiftProtobuf.Google_Protobuf_EnumValueOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_ServiceDescriptorProto : Swift.Sendable {
- public var name: Swift.String {
- get
- set
- }
- public var hasName: Swift.Bool {
- get
- }
- public mutating func clearName()
- public var method: [SwiftProtobuf.Google_Protobuf_MethodDescriptorProto]
- public var options: SwiftProtobuf.Google_Protobuf_ServiceOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_MethodDescriptorProto : Swift.Sendable {
- public var name: Swift.String {
- get
- set
- }
- public var hasName: Swift.Bool {
- get
- }
- public mutating func clearName()
- public var inputType: Swift.String {
- get
- set
- }
- public var hasInputType: Swift.Bool {
- get
- }
- public mutating func clearInputType()
- public var outputType: Swift.String {
- get
- set
- }
- public var hasOutputType: Swift.Bool {
- get
- }
- public mutating func clearOutputType()
- public var options: SwiftProtobuf.Google_Protobuf_MethodOptions {
- get
- set
- }
- public var hasOptions: Swift.Bool {
- get
- }
- public mutating func clearOptions()
- public var clientStreaming: Swift.Bool {
- get
- set
- }
- public var hasClientStreaming: Swift.Bool {
- get
- }
- public mutating func clearClientStreaming()
- public var serverStreaming: Swift.Bool {
- get
- set
- }
- public var hasServerStreaming: Swift.Bool {
- get
- }
- public mutating func clearServerStreaming()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_FileOptions : SwiftProtobuf.ExtensibleMessage, @unchecked Swift.Sendable {
- public var javaPackage: Swift.String {
- get
- set
- }
- public var hasJavaPackage: Swift.Bool {
- get
- }
- public mutating func clearJavaPackage()
- public var javaOuterClassname: Swift.String {
- get
- set
- }
- public var hasJavaOuterClassname: Swift.Bool {
- get
- }
- public mutating func clearJavaOuterClassname()
- public var javaMultipleFiles: Swift.Bool {
- get
- set
- }
- public var hasJavaMultipleFiles: Swift.Bool {
- get
- }
- public mutating func clearJavaMultipleFiles()
- public var javaGenerateEqualsAndHash: Swift.Bool {
- get
- set
- }
- public var hasJavaGenerateEqualsAndHash: Swift.Bool {
- get
- }
- public mutating func clearJavaGenerateEqualsAndHash()
- public var javaStringCheckUtf8: Swift.Bool {
- get
- set
- }
- public var hasJavaStringCheckUtf8: Swift.Bool {
- get
- }
- public mutating func clearJavaStringCheckUtf8()
- public var optimizeFor: SwiftProtobuf.Google_Protobuf_FileOptions.OptimizeMode {
- get
- set
- }
- public var hasOptimizeFor: Swift.Bool {
- get
- }
- public mutating func clearOptimizeFor()
- public var goPackage: Swift.String {
- get
- set
- }
- public var hasGoPackage: Swift.Bool {
- get
- }
- public mutating func clearGoPackage()
- public var ccGenericServices: Swift.Bool {
- get
- set
- }
- public var hasCcGenericServices: Swift.Bool {
- get
- }
- public mutating func clearCcGenericServices()
- public var javaGenericServices: Swift.Bool {
- get
- set
- }
- public var hasJavaGenericServices: Swift.Bool {
- get
- }
- public mutating func clearJavaGenericServices()
- public var pyGenericServices: Swift.Bool {
- get
- set
- }
- public var hasPyGenericServices: Swift.Bool {
- get
- }
- public mutating func clearPyGenericServices()
- public var deprecated: Swift.Bool {
- get
- set
- }
- public var hasDeprecated: Swift.Bool {
- get
- }
- public mutating func clearDeprecated()
- public var ccEnableArenas: Swift.Bool {
- get
- set
- }
- public var hasCcEnableArenas: Swift.Bool {
- get
- }
- public mutating func clearCcEnableArenas()
- public var objcClassPrefix: Swift.String {
- get
- set
- }
- public var hasObjcClassPrefix: Swift.Bool {
- get
- }
- public mutating func clearObjcClassPrefix()
- public var csharpNamespace: Swift.String {
- get
- set
- }
- public var hasCsharpNamespace: Swift.Bool {
- get
- }
- public mutating func clearCsharpNamespace()
- public var swiftPrefix: Swift.String {
- get
- set
- }
- public var hasSwiftPrefix: Swift.Bool {
- get
- }
- public mutating func clearSwiftPrefix()
- public var phpClassPrefix: Swift.String {
- get
- set
- }
- public var hasPhpClassPrefix: Swift.Bool {
- get
- }
- public mutating func clearPhpClassPrefix()
- public var phpNamespace: Swift.String {
- get
- set
- }
- public var hasPhpNamespace: Swift.Bool {
- get
- }
- public mutating func clearPhpNamespace()
- public var phpMetadataNamespace: Swift.String {
- get
- set
- }
- public var hasPhpMetadataNamespace: Swift.Bool {
- get
- }
- public mutating func clearPhpMetadataNamespace()
- public var rubyPackage: Swift.String {
- get
- set
- }
- public var hasRubyPackage: Swift.Bool {
- get
- }
- public mutating func clearRubyPackage()
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption] {
- get
- set
- }
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum OptimizeMode : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case speed
- case codeSize
- case liteRuntime
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FileOptions.OptimizeMode]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FileOptions.OptimizeMode] {
- get
- }
- }
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_MessageOptions : SwiftProtobuf.ExtensibleMessage, Swift.Sendable {
- public var messageSetWireFormat: Swift.Bool {
- get
- set
- }
- public var hasMessageSetWireFormat: Swift.Bool {
- get
- }
- public mutating func clearMessageSetWireFormat()
- public var noStandardDescriptorAccessor: Swift.Bool {
- get
- set
- }
- public var hasNoStandardDescriptorAccessor: Swift.Bool {
- get
- }
- public mutating func clearNoStandardDescriptorAccessor()
- public var deprecated: Swift.Bool {
- get
- set
- }
- public var hasDeprecated: Swift.Bool {
- get
- }
- public mutating func clearDeprecated()
- public var mapEntry: Swift.Bool {
- get
- set
- }
- public var hasMapEntry: Swift.Bool {
- get
- }
- public mutating func clearMapEntry()
- public var deprecatedLegacyJsonFieldConflicts: Swift.Bool {
- get
- set
- }
- public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool {
- get
- }
- public mutating func clearDeprecatedLegacyJsonFieldConflicts()
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_FieldOptions : SwiftProtobuf.ExtensibleMessage, @unchecked Swift.Sendable {
- public var ctype: SwiftProtobuf.Google_Protobuf_FieldOptions.CType {
- get
- set
- }
- public var hasCtype: Swift.Bool {
- get
- }
- public mutating func clearCtype()
- public var packed: Swift.Bool {
- get
- set
- }
- public var hasPacked: Swift.Bool {
- get
- }
- public mutating func clearPacked()
- public var jstype: SwiftProtobuf.Google_Protobuf_FieldOptions.JSType {
- get
- set
- }
- public var hasJstype: Swift.Bool {
- get
- }
- public mutating func clearJstype()
- public var lazy: Swift.Bool {
- get
- set
- }
- public var hasLazy: Swift.Bool {
- get
- }
- public mutating func clearLazy()
- public var unverifiedLazy: Swift.Bool {
- get
- set
- }
- public var hasUnverifiedLazy: Swift.Bool {
- get
- }
- public mutating func clearUnverifiedLazy()
- public var deprecated: Swift.Bool {
- get
- set
- }
- public var hasDeprecated: Swift.Bool {
- get
- }
- public mutating func clearDeprecated()
- public var weak: Swift.Bool {
- get
- set
- }
- public var hasWeak: Swift.Bool {
- get
- }
- public mutating func clearWeak()
- public var debugRedact: Swift.Bool {
- get
- set
- }
- public var hasDebugRedact: Swift.Bool {
- get
- }
- public mutating func clearDebugRedact()
- public var retention: SwiftProtobuf.Google_Protobuf_FieldOptions.OptionRetention {
- get
- set
- }
- public var hasRetention: Swift.Bool {
- get
- }
- public mutating func clearRetention()
- public var targets: [SwiftProtobuf.Google_Protobuf_FieldOptions.OptionTargetType] {
- get
- set
- }
- public var editionDefaults: [SwiftProtobuf.Google_Protobuf_FieldOptions.EditionDefault] {
- get
- set
- }
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var featureSupport: SwiftProtobuf.Google_Protobuf_FieldOptions.FeatureSupport {
- get
- set
- }
- public var hasFeatureSupport: Swift.Bool {
- get
- }
- public mutating func clearFeatureSupport()
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption] {
- get
- set
- }
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum CType : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case string
- case cord
- case stringPiece
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FieldOptions.CType]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FieldOptions.CType] {
- get
- }
- }
- public enum JSType : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case jsNormal
- case jsString
- case jsNumber
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FieldOptions.JSType]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FieldOptions.JSType] {
- get
- }
- }
- public enum OptionRetention : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case retentionUnknown
- case retentionRuntime
- case retentionSource
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FieldOptions.OptionRetention]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FieldOptions.OptionRetention] {
- get
- }
- }
- public enum OptionTargetType : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case targetTypeUnknown
- case targetTypeFile
- case targetTypeExtensionRange
- case targetTypeMessage
- case targetTypeField
- case targetTypeOneof
- case targetTypeEnum
- case targetTypeEnumEntry
- case targetTypeService
- case targetTypeMethod
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FieldOptions.OptionTargetType]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FieldOptions.OptionTargetType] {
- get
- }
- }
- public struct EditionDefault : Swift.Sendable {
- public var edition: SwiftProtobuf.Google_Protobuf_Edition {
- get
- set
- }
- public var hasEdition: Swift.Bool {
- get
- }
- public mutating func clearEdition()
- public var value: Swift.String {
- get
- set
- }
- public var hasValue: Swift.Bool {
- get
- }
- public mutating func clearValue()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct FeatureSupport : Swift.Sendable {
- public var editionIntroduced: SwiftProtobuf.Google_Protobuf_Edition {
- get
- set
- }
- public var hasEditionIntroduced: Swift.Bool {
- get
- }
- public mutating func clearEditionIntroduced()
- public var editionDeprecated: SwiftProtobuf.Google_Protobuf_Edition {
- get
- set
- }
- public var hasEditionDeprecated: Swift.Bool {
- get
- }
- public mutating func clearEditionDeprecated()
- public var deprecationWarning: Swift.String {
- get
- set
- }
- public var hasDeprecationWarning: Swift.Bool {
- get
- }
- public mutating func clearDeprecationWarning()
- public var editionRemoved: SwiftProtobuf.Google_Protobuf_Edition {
- get
- set
- }
- public var hasEditionRemoved: Swift.Bool {
- get
- }
- public mutating func clearEditionRemoved()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_OneofOptions : SwiftProtobuf.ExtensibleMessage, Swift.Sendable {
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_EnumOptions : SwiftProtobuf.ExtensibleMessage, Swift.Sendable {
- public var allowAlias: Swift.Bool {
- get
- set
- }
- public var hasAllowAlias: Swift.Bool {
- get
- }
- public mutating func clearAllowAlias()
- public var deprecated: Swift.Bool {
- get
- set
- }
- public var hasDeprecated: Swift.Bool {
- get
- }
- public mutating func clearDeprecated()
- public var deprecatedLegacyJsonFieldConflicts: Swift.Bool {
- get
- set
- }
- public var hasDeprecatedLegacyJsonFieldConflicts: Swift.Bool {
- get
- }
- public mutating func clearDeprecatedLegacyJsonFieldConflicts()
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_EnumValueOptions : SwiftProtobuf.ExtensibleMessage, Swift.Sendable {
- public var deprecated: Swift.Bool {
- get
- set
- }
- public var hasDeprecated: Swift.Bool {
- get
- }
- public mutating func clearDeprecated()
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var debugRedact: Swift.Bool {
- get
- set
- }
- public var hasDebugRedact: Swift.Bool {
- get
- }
- public mutating func clearDebugRedact()
- public var featureSupport: SwiftProtobuf.Google_Protobuf_FieldOptions.FeatureSupport {
- get
- set
- }
- public var hasFeatureSupport: Swift.Bool {
- get
- }
- public mutating func clearFeatureSupport()
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_ServiceOptions : SwiftProtobuf.ExtensibleMessage, Swift.Sendable {
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var deprecated: Swift.Bool {
- get
- set
- }
- public var hasDeprecated: Swift.Bool {
- get
- }
- public mutating func clearDeprecated()
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_MethodOptions : SwiftProtobuf.ExtensibleMessage, Swift.Sendable {
- public var deprecated: Swift.Bool {
- get
- set
- }
- public var hasDeprecated: Swift.Bool {
- get
- }
- public mutating func clearDeprecated()
- public var idempotencyLevel: SwiftProtobuf.Google_Protobuf_MethodOptions.IdempotencyLevel {
- get
- set
- }
- public var hasIdempotencyLevel: Swift.Bool {
- get
- }
- public mutating func clearIdempotencyLevel()
- public var features: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFeatures: Swift.Bool {
- get
- }
- public mutating func clearFeatures()
- public var uninterpretedOption: [SwiftProtobuf.Google_Protobuf_UninterpretedOption]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum IdempotencyLevel : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case idempotencyUnknown
- case noSideEffects
- case idempotent
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_MethodOptions.IdempotencyLevel]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_MethodOptions.IdempotencyLevel] {
- get
- }
- }
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_UninterpretedOption : @unchecked Swift.Sendable {
- public var name: [SwiftProtobuf.Google_Protobuf_UninterpretedOption.NamePart]
- public var identifierValue: Swift.String {
- get
- set
- }
- public var hasIdentifierValue: Swift.Bool {
- get
- }
- public mutating func clearIdentifierValue()
- public var positiveIntValue: Swift.UInt64 {
- get
- set
- }
- public var hasPositiveIntValue: Swift.Bool {
- get
- }
- public mutating func clearPositiveIntValue()
- public var negativeIntValue: Swift.Int64 {
- get
- set
- }
- public var hasNegativeIntValue: Swift.Bool {
- get
- }
- public mutating func clearNegativeIntValue()
- public var doubleValue: Swift.Double {
- get
- set
- }
- public var hasDoubleValue: Swift.Bool {
- get
- }
- public mutating func clearDoubleValue()
- public var stringValue: Foundation.Data {
- get
- set
- }
- public var hasStringValue: Swift.Bool {
- get
- }
- public mutating func clearStringValue()
- public var aggregateValue: Swift.String {
- get
- set
- }
- public var hasAggregateValue: Swift.Bool {
- get
- }
- public mutating func clearAggregateValue()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public struct NamePart : Swift.Sendable {
- public var namePart: Swift.String {
- get
- set
- }
- public var hasNamePart: Swift.Bool {
- get
- }
- public mutating func clearNamePart()
- public var isExtension: Swift.Bool {
- get
- set
- }
- public var hasIsExtension: Swift.Bool {
- get
- }
- public mutating func clearIsExtension()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public init()
- }
- public struct Google_Protobuf_FeatureSet : SwiftProtobuf.ExtensibleMessage, Swift.Sendable {
- public var fieldPresence: SwiftProtobuf.Google_Protobuf_FeatureSet.FieldPresence {
- get
- set
- }
- public var hasFieldPresence: Swift.Bool {
- get
- }
- public mutating func clearFieldPresence()
- public var enumType: SwiftProtobuf.Google_Protobuf_FeatureSet.EnumType {
- get
- set
- }
- public var hasEnumType: Swift.Bool {
- get
- }
- public mutating func clearEnumType()
- public var repeatedFieldEncoding: SwiftProtobuf.Google_Protobuf_FeatureSet.RepeatedFieldEncoding {
- get
- set
- }
- public var hasRepeatedFieldEncoding: Swift.Bool {
- get
- }
- public mutating func clearRepeatedFieldEncoding()
- public var utf8Validation: SwiftProtobuf.Google_Protobuf_FeatureSet.Utf8Validation {
- get
- set
- }
- public var hasUtf8Validation: Swift.Bool {
- get
- }
- public mutating func clearUtf8Validation()
- public var messageEncoding: SwiftProtobuf.Google_Protobuf_FeatureSet.MessageEncoding {
- get
- set
- }
- public var hasMessageEncoding: Swift.Bool {
- get
- }
- public mutating func clearMessageEncoding()
- public var jsonFormat: SwiftProtobuf.Google_Protobuf_FeatureSet.JsonFormat {
- get
- set
- }
- public var hasJsonFormat: Swift.Bool {
- get
- }
- public mutating func clearJsonFormat()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum FieldPresence : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case unknown
- case explicit
- case implicit
- case legacyRequired
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FeatureSet.FieldPresence]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FeatureSet.FieldPresence] {
- get
- }
- }
- public enum EnumType : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case unknown
- case open
- case closed
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FeatureSet.EnumType]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FeatureSet.EnumType] {
- get
- }
- }
- public enum RepeatedFieldEncoding : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case unknown
- case packed
- case expanded
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FeatureSet.RepeatedFieldEncoding]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FeatureSet.RepeatedFieldEncoding] {
- get
- }
- }
- public enum Utf8Validation : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case unknown
- case verify
- case none
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FeatureSet.Utf8Validation]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FeatureSet.Utf8Validation] {
- get
- }
- }
- public enum MessageEncoding : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case unknown
- case lengthPrefixed
- case delimited
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FeatureSet.MessageEncoding]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FeatureSet.MessageEncoding] {
- get
- }
- }
- public enum JsonFormat : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case unknown
- case allow
- case legacyBestEffort
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_FeatureSet.JsonFormat]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_FeatureSet.JsonFormat] {
- get
- }
- }
- public init()
- public var _protobuf_extensionFieldValues: SwiftProtobuf.ExtensionFieldValueSet
- }
- public struct Google_Protobuf_FeatureSetDefaults : Swift.Sendable {
- public var defaults: [SwiftProtobuf.Google_Protobuf_FeatureSetDefaults.FeatureSetEditionDefault]
- public var minimumEdition: SwiftProtobuf.Google_Protobuf_Edition {
- get
- set
- }
- public var hasMinimumEdition: Swift.Bool {
- get
- }
- public mutating func clearMinimumEdition()
- public var maximumEdition: SwiftProtobuf.Google_Protobuf_Edition {
- get
- set
- }
- public var hasMaximumEdition: Swift.Bool {
- get
- }
- public mutating func clearMaximumEdition()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public struct FeatureSetEditionDefault : Swift.Sendable {
- public var edition: SwiftProtobuf.Google_Protobuf_Edition {
- get
- set
- }
- public var hasEdition: Swift.Bool {
- get
- }
- public mutating func clearEdition()
- public var overridableFeatures: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasOverridableFeatures: Swift.Bool {
- get
- }
- public mutating func clearOverridableFeatures()
- public var fixedFeatures: SwiftProtobuf.Google_Protobuf_FeatureSet {
- get
- set
- }
- public var hasFixedFeatures: Swift.Bool {
- get
- }
- public mutating func clearFixedFeatures()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public init()
- }
- public struct Google_Protobuf_SourceCodeInfo : Swift.Sendable {
- public var location: [SwiftProtobuf.Google_Protobuf_SourceCodeInfo.Location]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public struct Location : Swift.Sendable {
- public var path: [Swift.Int32]
- public var span: [Swift.Int32]
- public var leadingComments: Swift.String {
- get
- set
- }
- public var hasLeadingComments: Swift.Bool {
- get
- }
- public mutating func clearLeadingComments()
- public var trailingComments: Swift.String {
- get
- set
- }
- public var hasTrailingComments: Swift.Bool {
- get
- }
- public mutating func clearTrailingComments()
- public var leadingDetachedComments: [Swift.String]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public init()
- }
- public struct Google_Protobuf_GeneratedCodeInfo : Swift.Sendable {
- public var annotation: [SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo.Annotation]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public struct Annotation : Swift.Sendable {
- public var path: [Swift.Int32]
- public var sourceFile: Swift.String {
- get
- set
- }
- public var hasSourceFile: Swift.Bool {
- get
- }
- public mutating func clearSourceFile()
- public var begin: Swift.Int32 {
- get
- set
- }
- public var hasBegin: Swift.Bool {
- get
- }
- public mutating func clearBegin()
- public var end: Swift.Int32 {
- get
- set
- }
- public var hasEnd: Swift.Bool {
- get
- }
- public mutating func clearEnd()
- public var semantic: SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic {
- get
- set
- }
- public var hasSemantic: Swift.Bool {
- get
- }
- public mutating func clearSemantic()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum Semantic : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case none
- case set
- case alias
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic]
- public static var allCases: [SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic] {
- get
- }
- }
- public init()
- }
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_Edition : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FileDescriptorSet : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FileDescriptorSet, rhs: SwiftProtobuf.Google_Protobuf_FileDescriptorSet) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FileDescriptorProto : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FileDescriptorProto, rhs: SwiftProtobuf.Google_Protobuf_FileDescriptorProto) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_DescriptorProto : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_DescriptorProto, rhs: SwiftProtobuf.Google_Protobuf_DescriptorProto) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_DescriptorProto.ExtensionRange : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_DescriptorProto.ExtensionRange, rhs: SwiftProtobuf.Google_Protobuf_DescriptorProto.ExtensionRange) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_DescriptorProto.ReservedRange : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_DescriptorProto.ReservedRange, rhs: SwiftProtobuf.Google_Protobuf_DescriptorProto.ReservedRange) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions, rhs: SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions.VerificationState : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions.Declaration : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions.Declaration, rhs: SwiftProtobuf.Google_Protobuf_ExtensionRangeOptions.Declaration) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FieldDescriptorProto : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FieldDescriptorProto, rhs: SwiftProtobuf.Google_Protobuf_FieldDescriptorProto) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FieldDescriptorProto.TypeEnum : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FieldDescriptorProto.Label : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_OneofDescriptorProto : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_OneofDescriptorProto, rhs: SwiftProtobuf.Google_Protobuf_OneofDescriptorProto) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_EnumDescriptorProto : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_EnumDescriptorProto, rhs: SwiftProtobuf.Google_Protobuf_EnumDescriptorProto) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_EnumDescriptorProto.EnumReservedRange : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_EnumDescriptorProto.EnumReservedRange, rhs: SwiftProtobuf.Google_Protobuf_EnumDescriptorProto.EnumReservedRange) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_EnumValueDescriptorProto : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_EnumValueDescriptorProto, rhs: SwiftProtobuf.Google_Protobuf_EnumValueDescriptorProto) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_ServiceDescriptorProto : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_ServiceDescriptorProto, rhs: SwiftProtobuf.Google_Protobuf_ServiceDescriptorProto) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_MethodDescriptorProto : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_MethodDescriptorProto, rhs: SwiftProtobuf.Google_Protobuf_MethodDescriptorProto) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FileOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FileOptions, rhs: SwiftProtobuf.Google_Protobuf_FileOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FileOptions.OptimizeMode : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_MessageOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_MessageOptions, rhs: SwiftProtobuf.Google_Protobuf_MessageOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FieldOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FieldOptions, rhs: SwiftProtobuf.Google_Protobuf_FieldOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FieldOptions.CType : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FieldOptions.JSType : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FieldOptions.OptionRetention : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FieldOptions.OptionTargetType : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FieldOptions.EditionDefault : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FieldOptions.EditionDefault, rhs: SwiftProtobuf.Google_Protobuf_FieldOptions.EditionDefault) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FieldOptions.FeatureSupport : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FieldOptions.FeatureSupport, rhs: SwiftProtobuf.Google_Protobuf_FieldOptions.FeatureSupport) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_OneofOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_OneofOptions, rhs: SwiftProtobuf.Google_Protobuf_OneofOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_EnumOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_EnumOptions, rhs: SwiftProtobuf.Google_Protobuf_EnumOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_EnumValueOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_EnumValueOptions, rhs: SwiftProtobuf.Google_Protobuf_EnumValueOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_ServiceOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_ServiceOptions, rhs: SwiftProtobuf.Google_Protobuf_ServiceOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_MethodOptions : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_MethodOptions, rhs: SwiftProtobuf.Google_Protobuf_MethodOptions) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_MethodOptions.IdempotencyLevel : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_UninterpretedOption : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_UninterpretedOption, rhs: SwiftProtobuf.Google_Protobuf_UninterpretedOption) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_UninterpretedOption.NamePart : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_UninterpretedOption.NamePart, rhs: SwiftProtobuf.Google_Protobuf_UninterpretedOption.NamePart) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSet : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FeatureSet, rhs: SwiftProtobuf.Google_Protobuf_FeatureSet) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSet.FieldPresence : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSet.EnumType : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSet.RepeatedFieldEncoding : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSet.Utf8Validation : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSet.MessageEncoding : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSet.JsonFormat : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSetDefaults : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FeatureSetDefaults, rhs: SwiftProtobuf.Google_Protobuf_FeatureSetDefaults) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FeatureSetDefaults.FeatureSetEditionDefault : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public var isInitialized: Swift.Bool {
- get
- }
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FeatureSetDefaults.FeatureSetEditionDefault, rhs: SwiftProtobuf.Google_Protobuf_FeatureSetDefaults.FeatureSetEditionDefault) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_SourceCodeInfo : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_SourceCodeInfo, rhs: SwiftProtobuf.Google_Protobuf_SourceCodeInfo) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_SourceCodeInfo.Location : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_SourceCodeInfo.Location, rhs: SwiftProtobuf.Google_Protobuf_SourceCodeInfo.Location) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo, rhs: SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo.Annotation : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo.Annotation, rhs: SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo.Annotation) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_GeneratedCodeInfo.Annotation.Semantic : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- public enum PathDecodingError : Swift.Error {
- case typeMismatch
- case pathNotFound
- public static func == (a: SwiftProtobuf.PathDecodingError, b: SwiftProtobuf.PathDecodingError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct UnknownStorage : Swift.Equatable, @unchecked Swift.Sendable {
- public var data: Foundation.Data {
- get
- }
- public init()
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (a: SwiftProtobuf.UnknownStorage, b: SwiftProtobuf.UnknownStorage) -> Swift.Bool
- }
- @preconcurrency public protocol AnyExtensionField : Swift.CustomDebugStringConvertible, Swift.Sendable {
- func hash(into hasher: inout Swift.Hasher)
- var protobufExtension: any SwiftProtobuf.AnyMessageExtension { get }
- func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- mutating func decodeExtensionField<T>(decoder: inout T) throws where T : SwiftProtobuf.Decoder
- func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- var isInitialized: Swift.Bool { get }
- }
- extension SwiftProtobuf.AnyExtensionField {
- public var isInitialized: Swift.Bool {
- get
- }
- }
- @preconcurrency public protocol ExtensionField : Swift.Hashable, SwiftProtobuf.AnyExtensionField {
- associatedtype ValueType
- var value: Self.ValueType { get set }
- init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: Self.ValueType)
- init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- }
- public struct OptionalExtensionField<T> : SwiftProtobuf.ExtensionField where T : SwiftProtobuf.FieldType {
- public typealias BaseType = T.BaseType
- public typealias ValueType = SwiftProtobuf.OptionalExtensionField<T>.BaseType
- public var value: SwiftProtobuf.OptionalExtensionField<T>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.OptionalExtensionField<T>, rhs: SwiftProtobuf.OptionalExtensionField<T>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.OptionalExtensionField<T>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct RepeatedExtensionField<T> : SwiftProtobuf.ExtensionField where T : SwiftProtobuf.FieldType {
- public typealias BaseType = T.BaseType
- public typealias ValueType = [SwiftProtobuf.RepeatedExtensionField<T>.BaseType]
- public var value: SwiftProtobuf.RepeatedExtensionField<T>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.RepeatedExtensionField<T>, rhs: SwiftProtobuf.RepeatedExtensionField<T>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.RepeatedExtensionField<T>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct PackedExtensionField<T> : SwiftProtobuf.ExtensionField where T : SwiftProtobuf.FieldType {
- public typealias BaseType = T.BaseType
- public typealias ValueType = [SwiftProtobuf.PackedExtensionField<T>.BaseType]
- public var value: SwiftProtobuf.PackedExtensionField<T>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.PackedExtensionField<T>, rhs: SwiftProtobuf.PackedExtensionField<T>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.PackedExtensionField<T>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct OptionalEnumExtensionField<E> : SwiftProtobuf.ExtensionField where E : SwiftProtobuf.Enum, E.RawValue == Swift.Int {
- public typealias BaseType = E
- public typealias ValueType = E
- public var value: SwiftProtobuf.OptionalEnumExtensionField<E>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.OptionalEnumExtensionField<E>, rhs: SwiftProtobuf.OptionalEnumExtensionField<E>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.OptionalEnumExtensionField<E>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct RepeatedEnumExtensionField<E> : SwiftProtobuf.ExtensionField where E : SwiftProtobuf.Enum, E.RawValue == Swift.Int {
- public typealias BaseType = E
- public typealias ValueType = [E]
- public var value: SwiftProtobuf.RepeatedEnumExtensionField<E>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.RepeatedEnumExtensionField<E>, rhs: SwiftProtobuf.RepeatedEnumExtensionField<E>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.RepeatedEnumExtensionField<E>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct PackedEnumExtensionField<E> : SwiftProtobuf.ExtensionField where E : SwiftProtobuf.Enum, E.RawValue == Swift.Int {
- public typealias BaseType = E
- public typealias ValueType = [E]
- public var value: SwiftProtobuf.PackedEnumExtensionField<E>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.PackedEnumExtensionField<E>, rhs: SwiftProtobuf.PackedEnumExtensionField<E>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.PackedEnumExtensionField<E>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct OptionalMessageExtensionField<M> : SwiftProtobuf.ExtensionField where M : Swift.Equatable, M : SwiftProtobuf.Message {
- public typealias BaseType = M
- public typealias ValueType = SwiftProtobuf.OptionalMessageExtensionField<M>.BaseType
- public var value: SwiftProtobuf.OptionalMessageExtensionField<M>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.OptionalMessageExtensionField<M>, rhs: SwiftProtobuf.OptionalMessageExtensionField<M>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.OptionalMessageExtensionField<M>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var isInitialized: Swift.Bool {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct RepeatedMessageExtensionField<M> : SwiftProtobuf.ExtensionField where M : Swift.Equatable, M : SwiftProtobuf.Message {
- public typealias BaseType = M
- public typealias ValueType = [SwiftProtobuf.RepeatedMessageExtensionField<M>.BaseType]
- public var value: SwiftProtobuf.RepeatedMessageExtensionField<M>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.RepeatedMessageExtensionField<M>, rhs: SwiftProtobuf.RepeatedMessageExtensionField<M>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.RepeatedMessageExtensionField<M>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var isInitialized: Swift.Bool {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct OptionalGroupExtensionField<G> : SwiftProtobuf.ExtensionField where G : Swift.Hashable, G : SwiftProtobuf.Message {
- public typealias BaseType = G
- public typealias ValueType = SwiftProtobuf.OptionalGroupExtensionField<G>.BaseType
- public var value: G
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.OptionalGroupExtensionField<G>, rhs: SwiftProtobuf.OptionalGroupExtensionField<G>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.OptionalGroupExtensionField<G>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var isInitialized: Swift.Bool {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct RepeatedGroupExtensionField<G> : SwiftProtobuf.ExtensionField where G : Swift.Hashable, G : SwiftProtobuf.Message {
- public typealias BaseType = G
- public typealias ValueType = [SwiftProtobuf.RepeatedGroupExtensionField<G>.BaseType]
- public var value: SwiftProtobuf.RepeatedGroupExtensionField<G>.ValueType
- public var protobufExtension: any SwiftProtobuf.AnyMessageExtension
- public static func == (lhs: SwiftProtobuf.RepeatedGroupExtensionField<G>, rhs: SwiftProtobuf.RepeatedGroupExtensionField<G>) -> Swift.Bool
- public init(protobufExtension: any SwiftProtobuf.AnyMessageExtension, value: SwiftProtobuf.RepeatedGroupExtensionField<G>.ValueType)
- public var debugDescription: Swift.String {
- get
- }
- public func hash(into hasher: inout Swift.Hasher)
- public func isEqual(other: any SwiftProtobuf.AnyExtensionField) -> Swift.Bool
- public mutating func decodeExtensionField<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public init?<D>(protobufExtension: any SwiftProtobuf.AnyMessageExtension, decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public var isInitialized: Swift.Bool {
- get
- }
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct SimpleExtensionMap : SwiftProtobuf.ExtensionMap, Swift.ExpressibleByArrayLiteral {
- public typealias Element = SwiftProtobuf.AnyMessageExtension
- public init()
- public init(arrayLiteral: any SwiftProtobuf.AnyMessageExtension...)
- public init(_ others: SwiftProtobuf.SimpleExtensionMap...)
- public subscript(messageType: any SwiftProtobuf.Message.Type, fieldNumber: Swift.Int) -> (any SwiftProtobuf.AnyMessageExtension)? {
- get
- }
- public func fieldNumberForProto(messageType: any SwiftProtobuf.Message.Type, protoFieldName: Swift.String) -> Swift.Int?
- public mutating func insert(_ newValue: any SwiftProtobuf.AnyMessageExtension)
- public mutating func insert(contentsOf: [any SwiftProtobuf.AnyMessageExtension])
- public mutating func formUnion(_ other: SwiftProtobuf.SimpleExtensionMap)
- public func union(_ other: SwiftProtobuf.SimpleExtensionMap) -> SwiftProtobuf.SimpleExtensionMap
- public typealias ArrayLiteralElement = any SwiftProtobuf.AnyMessageExtension
- }
- extension SwiftProtobuf.SimpleExtensionMap : Swift.CustomDebugStringConvertible {
- public var debugDescription: Swift.String {
- get
- }
- }
- extension SwiftProtobuf.Message {
- public init(unpackingAny: SwiftProtobuf.Google_Protobuf_Any, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws
- }
- public struct Google_Protobuf_SourceContext : Swift.Sendable {
- public var fileName: Swift.String
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_SourceContext : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_SourceContext, rhs: SwiftProtobuf.Google_Protobuf_SourceContext) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Message {
- @available(*, deprecated, renamed: "init(serializedBytes:extensions:partial:options:)")
- @inlinable public init(serializedData data: Foundation.Data, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws {
- self.init()
- try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options)
- }
- @available(*, deprecated, renamed: "init(serializedBytes:extensions:partial:options:)")
- @inlinable @_disfavoredOverload public init<Bytes>(contiguousBytes bytes: Bytes, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : Foundation.ContiguousBytes {
- self.init()
- try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options)
- }
- @available(*, deprecated, message: "Please conform your Bytes type to `SwiftProtobufContiguousBytes` instead of `Foundation.ContiguousBytes`.")
- @inlinable @_disfavoredOverload public init<Bytes>(serializedBytes bytes: Bytes, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : Foundation.ContiguousBytes {
- self.init()
- try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options)
- }
- @available(*, deprecated, renamed: "merge(serializedBytes:extensions:partial:options:)")
- @inlinable @_disfavoredOverload public mutating func merge<Bytes>(contiguousBytes bytes: Bytes, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : Foundation.ContiguousBytes {
- try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in
- try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options)
- }
- }
- @available(*, deprecated, message: "Please conform your Bytes type to `SwiftProtobufContiguousBytes` instead of `Foundation.ContiguousBytes`.")
- @inlinable @_disfavoredOverload public mutating func merge<Bytes>(serializedBytes bytes: Bytes, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : Foundation.ContiguousBytes {
- try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in
- try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options)
- }
- }
- @inlinable public mutating func merge(serializedData data: Foundation.Data, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws {
- try merge(serializedBytes: data, extensions: extensions, partial: partial, options: options)
- }
- public func serializedData(partial: Swift.Bool = false) throws -> Foundation.Data
- public func serializedData(partial: Swift.Bool = false, options: SwiftProtobuf.BinaryEncodingOptions = BinaryEncodingOptions()) throws -> Foundation.Data
- }
- public enum BinaryEncodingError : Swift.Error, Swift.Hashable {
- case anyTranscodeFailure
- case missingRequiredFields
- public static func == (a: SwiftProtobuf.BinaryEncodingError, b: SwiftProtobuf.BinaryEncodingError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public enum Google_Protobuf_Syntax : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case proto2
- case proto3
- case editions
- case UNRECOGNIZED(Swift.Int)
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public static let allCases: [SwiftProtobuf.Google_Protobuf_Syntax]
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_Syntax]
- }
- public struct Google_Protobuf_Type : Swift.Sendable {
- public var name: Swift.String
- public var fields: [SwiftProtobuf.Google_Protobuf_Field]
- public var oneofs: [Swift.String]
- public var options: [SwiftProtobuf.Google_Protobuf_Option]
- public var sourceContext: SwiftProtobuf.Google_Protobuf_SourceContext {
- get
- set
- }
- public var hasSourceContext: Swift.Bool {
- get
- }
- public mutating func clearSourceContext()
- public var syntax: SwiftProtobuf.Google_Protobuf_Syntax
- public var edition: Swift.String
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_Field : Swift.Sendable {
- public var kind: SwiftProtobuf.Google_Protobuf_Field.Kind
- public var cardinality: SwiftProtobuf.Google_Protobuf_Field.Cardinality
- public var number: Swift.Int32
- public var name: Swift.String
- public var typeURL: Swift.String
- public var oneofIndex: Swift.Int32
- public var packed: Swift.Bool
- public var options: [SwiftProtobuf.Google_Protobuf_Option]
- public var jsonName: Swift.String
- public var defaultValue: Swift.String
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum Kind : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case typeUnknown
- case typeDouble
- case typeFloat
- case typeInt64
- case typeUint64
- case typeInt32
- case typeFixed64
- case typeFixed32
- case typeBool
- case typeString
- case typeGroup
- case typeMessage
- case typeBytes
- case typeUint32
- case typeEnum
- case typeSfixed32
- case typeSfixed64
- case typeSint32
- case typeSint64
- case UNRECOGNIZED(Swift.Int)
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public static let allCases: [SwiftProtobuf.Google_Protobuf_Field.Kind]
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_Field.Kind]
- }
- public enum Cardinality : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case unknown
- case optional
- case required
- case repeated
- case UNRECOGNIZED(Swift.Int)
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public static let allCases: [SwiftProtobuf.Google_Protobuf_Field.Cardinality]
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_Field.Cardinality]
- }
- public init()
- }
- public struct Google_Protobuf_Enum : Swift.Sendable {
- public var name: Swift.String
- public var enumvalue: [SwiftProtobuf.Google_Protobuf_EnumValue]
- public var options: [SwiftProtobuf.Google_Protobuf_Option]
- public var sourceContext: SwiftProtobuf.Google_Protobuf_SourceContext {
- get
- set
- }
- public var hasSourceContext: Swift.Bool {
- get
- }
- public mutating func clearSourceContext()
- public var syntax: SwiftProtobuf.Google_Protobuf_Syntax
- public var edition: Swift.String
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_EnumValue : Swift.Sendable {
- public var name: Swift.String
- public var number: Swift.Int32
- public var options: [SwiftProtobuf.Google_Protobuf_Option]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_Option : Swift.Sendable {
- public var name: Swift.String
- public var value: SwiftProtobuf.Google_Protobuf_Any {
- get
- set
- }
- public var hasValue: Swift.Bool {
- get
- }
- public mutating func clearValue()
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_Syntax : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_Type : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Type, rhs: SwiftProtobuf.Google_Protobuf_Type) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Field : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Field, rhs: SwiftProtobuf.Google_Protobuf_Field) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Field.Kind : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_Field.Cardinality : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_Enum : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Enum, rhs: SwiftProtobuf.Google_Protobuf_Enum) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_EnumValue : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_EnumValue, rhs: SwiftProtobuf.Google_Protobuf_EnumValue) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Option : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Option, rhs: SwiftProtobuf.Google_Protobuf_Option) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- public struct Google_Protobuf_Timestamp : Swift.Sendable {
- public var seconds: Swift.Int64
- public var nanos: Swift.Int32
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_Timestamp : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Timestamp, rhs: SwiftProtobuf.Google_Protobuf_Timestamp) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- @preconcurrency public protocol AnyMessageExtension : Swift.Sendable {
- var fieldNumber: Swift.Int { get }
- var fieldName: Swift.String { get }
- var messageType: any SwiftProtobuf.Message.Type { get }
- func _protobuf_newField<D>(decoder: inout D) throws -> (any SwiftProtobuf.AnyExtensionField)? where D : SwiftProtobuf.Decoder
- }
- final public class MessageExtension<FieldType, MessageType> : SwiftProtobuf.AnyMessageExtension where FieldType : SwiftProtobuf.ExtensionField, MessageType : SwiftProtobuf.Message {
- final public let fieldNumber: Swift.Int
- final public let fieldName: Swift.String
- final public let messageType: any SwiftProtobuf.Message.Type
- public init(_protobuf_fieldNumber: Swift.Int, fieldName: Swift.String)
- final public func _protobuf_newField<D>(decoder: inout D) throws -> (any SwiftProtobuf.AnyExtensionField)? where D : SwiftProtobuf.Decoder
- @objc deinit
- }
- extension SwiftProtobuf.Message {
- public static func jsonString<C>(from collection: C, options: SwiftProtobuf.JSONEncodingOptions = JSONEncodingOptions()) throws -> Swift.String where Self == C.Element, C : Swift.Collection
- public static func jsonUTF8Bytes<C, Bytes>(from collection: C, options: SwiftProtobuf.JSONEncodingOptions = JSONEncodingOptions()) throws -> Bytes where Self == C.Element, C : Swift.Collection, Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes
- public static func array(fromJSONString jsonString: Swift.String, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self]
- public static func array(fromJSONString jsonString: Swift.String, extensions: any SwiftProtobuf.ExtensionMap = SimpleExtensionMap(), options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self]
- public static func array<Bytes>(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes
- public static func array<Bytes>(fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any SwiftProtobuf.ExtensionMap = SimpleExtensionMap(), options: SwiftProtobuf.JSONDecodingOptions = JSONDecodingOptions()) throws -> [Self] where Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes
- }
- public struct _NameMap : Swift.ExpressibleByDictionaryLiteral {
- public enum NameDescription {
- case same(proto: Swift.StaticString)
- case standard(proto: Swift.StaticString)
- case unique(proto: Swift.StaticString, json: Swift.StaticString)
- case aliased(proto: Swift.StaticString, aliases: [Swift.StaticString])
- }
- public init()
- public init(dictionaryLiteral elements: (Swift.Int, SwiftProtobuf._NameMap.NameDescription)...)
- public typealias Key = Swift.Int
- public typealias Value = SwiftProtobuf._NameMap.NameDescription
- }
- extension SwiftProtobuf._NameMap : Swift.Sendable {
- }
- extension SwiftProtobuf.Message {
- public func serializedBytes<Bytes>(partial: Swift.Bool = false, options: SwiftProtobuf.BinaryEncodingOptions = BinaryEncodingOptions()) throws -> Bytes where Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes
- @inlinable public init<Bytes>(serializedBytes bytes: Bytes, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes {
- self.init()
- try merge(serializedBytes: bytes, extensions: extensions, partial: partial, options: options)
- }
- @inlinable public mutating func merge<Bytes>(serializedBytes bytes: Bytes, extensions: (any SwiftProtobuf.ExtensionMap)? = nil, partial: Swift.Bool = false, options: SwiftProtobuf.BinaryDecodingOptions = BinaryDecodingOptions()) throws where Bytes : SwiftProtobuf.SwiftProtobufContiguousBytes {
- try bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in
- try _merge(rawBuffer: body, extensions: extensions, partial: partial, options: options)
- }
- }
- @usableFromInline
- internal mutating func _merge(rawBuffer body: Swift.UnsafeRawBufferPointer, extensions: (any SwiftProtobuf.ExtensionMap)?, partial: Swift.Bool, options: SwiftProtobuf.BinaryDecodingOptions) throws
- }
- public enum BinaryDecodingError : Swift.Error {
- case trailingGarbage
- case truncated
- case invalidUTF8
- case malformedProtobuf
- case missingRequiredFields
- case internalExtensionError
- case messageDepthLimit
- public static func == (a: SwiftProtobuf.BinaryDecodingError, b: SwiftProtobuf.BinaryDecodingError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @preconcurrency public protocol Enum : Swift.Hashable, Swift.RawRepresentable, Swift.Sendable {
- init()
- init?(rawValue: Swift.Int)
- var rawValue: Swift.Int { get }
- }
- extension SwiftProtobuf.Enum {
- public func hash(into hasher: inout Swift.Hasher)
- }
- public struct Google_Protobuf_DoubleValue : Swift.Sendable {
- public var value: Swift.Double
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_FloatValue : Swift.Sendable {
- public var value: Swift.Float
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_Int64Value : Swift.Sendable {
- public var value: Swift.Int64
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_UInt64Value : Swift.Sendable {
- public var value: Swift.UInt64
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_Int32Value : Swift.Sendable {
- public var value: Swift.Int32
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_UInt32Value : Swift.Sendable {
- public var value: Swift.UInt32
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_BoolValue : Swift.Sendable {
- public var value: Swift.Bool
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_StringValue : Swift.Sendable {
- public var value: Swift.String
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_BytesValue : @unchecked Swift.Sendable {
- public var value: Foundation.Data
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_DoubleValue : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_DoubleValue, rhs: SwiftProtobuf.Google_Protobuf_DoubleValue) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_FloatValue : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_FloatValue, rhs: SwiftProtobuf.Google_Protobuf_FloatValue) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Int64Value : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Int64Value, rhs: SwiftProtobuf.Google_Protobuf_Int64Value) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_UInt64Value : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_UInt64Value, rhs: SwiftProtobuf.Google_Protobuf_UInt64Value) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Int32Value : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Int32Value, rhs: SwiftProtobuf.Google_Protobuf_Int32Value) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_UInt32Value : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_UInt32Value, rhs: SwiftProtobuf.Google_Protobuf_UInt32Value) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_BoolValue : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_BoolValue, rhs: SwiftProtobuf.Google_Protobuf_BoolValue) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_StringValue : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_StringValue, rhs: SwiftProtobuf.Google_Protobuf_StringValue) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_BytesValue : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_BytesValue, rhs: SwiftProtobuf.Google_Protobuf_BytesValue) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- public protocol ProtobufAPIVersion_2 {
- }
- public protocol ProtobufAPIVersionCheck {
- associatedtype Version : SwiftProtobuf.ProtobufAPIVersion_2
- }
- public enum Google_Protobuf_NullValue : SwiftProtobuf.Enum, Swift.CaseIterable {
- public typealias RawValue = Swift.Int
- case nullValue
- case UNRECOGNIZED(Swift.Int)
- public init()
- public init?(rawValue: Swift.Int)
- public var rawValue: Swift.Int {
- get
- }
- public static let allCases: [SwiftProtobuf.Google_Protobuf_NullValue]
- public typealias AllCases = [SwiftProtobuf.Google_Protobuf_NullValue]
- }
- public struct Google_Protobuf_Struct : Swift.Sendable {
- public var fields: [Swift.String : SwiftProtobuf.Google_Protobuf_Value]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- public struct Google_Protobuf_Value : Swift.Sendable {
- public var kind: SwiftProtobuf.Google_Protobuf_Value.OneOf_Kind?
- public var nullValue: SwiftProtobuf.Google_Protobuf_NullValue {
- get
- set
- }
- public var numberValue: Swift.Double {
- get
- set
- }
- public var stringValue: Swift.String {
- get
- set
- }
- public var boolValue: Swift.Bool {
- get
- set
- }
- public var structValue: SwiftProtobuf.Google_Protobuf_Struct {
- get
- set
- }
- public var listValue: SwiftProtobuf.Google_Protobuf_ListValue {
- get
- set
- }
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public enum OneOf_Kind : Swift.Equatable, Swift.Sendable {
- case nullValue(SwiftProtobuf.Google_Protobuf_NullValue)
- case numberValue(Swift.Double)
- case stringValue(Swift.String)
- case boolValue(Swift.Bool)
- case structValue(SwiftProtobuf.Google_Protobuf_Struct)
- case listValue(SwiftProtobuf.Google_Protobuf_ListValue)
- public static func == (a: SwiftProtobuf.Google_Protobuf_Value.OneOf_Kind, b: SwiftProtobuf.Google_Protobuf_Value.OneOf_Kind) -> Swift.Bool
- }
- public init()
- }
- public struct Google_Protobuf_ListValue : Swift.Sendable {
- public var values: [SwiftProtobuf.Google_Protobuf_Value]
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_NullValue : SwiftProtobuf._ProtoNameProviding {
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- }
- extension SwiftProtobuf.Google_Protobuf_Struct : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Struct, rhs: SwiftProtobuf.Google_Protobuf_Struct) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Value : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Value, rhs: SwiftProtobuf.Google_Protobuf_Value) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_ListValue : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_ListValue, rhs: SwiftProtobuf.Google_Protobuf_ListValue) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Message {
- public func textFormatString() -> Swift.String
- public func textFormatString(options: SwiftProtobuf.TextFormatEncodingOptions) -> Swift.String
- public init(textFormatString: Swift.String, extensions: (any SwiftProtobuf.ExtensionMap)? = nil) throws
- public init(textFormatString: Swift.String, options: SwiftProtobuf.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any SwiftProtobuf.ExtensionMap)? = nil) throws
- }
- public let defaultAnyTypeURLPrefix: Swift.String
- extension SwiftProtobuf.Google_Protobuf_Any {
- public init(message: any SwiftProtobuf.Message, partial: Swift.Bool = false, typePrefix: Swift.String = defaultAnyTypeURLPrefix) throws
- @_disfavoredOverload public init(textFormatString: Swift.String, extensions: (any SwiftProtobuf.ExtensionMap)? = nil) throws
- public init(textFormatString: Swift.String, options: SwiftProtobuf.TextFormatDecodingOptions = TextFormatDecodingOptions(), extensions: (any SwiftProtobuf.ExtensionMap)? = nil) throws
- public func isA<M>(_ type: M.Type) -> Swift.Bool where M : SwiftProtobuf.Message
- public func hash(into hasher: inout Swift.Hasher)
- }
- public struct Google_Protobuf_Any : @unchecked Swift.Sendable {
- public var typeURL: Swift.String {
- get
- set
- }
- public var value: Foundation.Data {
- get
- set
- }
- public var unknownFields: SwiftProtobuf.UnknownStorage
- public init()
- }
- extension SwiftProtobuf.Google_Protobuf_Any : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
- public static let protoMessageName: Swift.String
- public static let _protobuf_nameMap: SwiftProtobuf._NameMap
- public mutating func decodeMessage<D>(decoder: inout D) throws where D : SwiftProtobuf.Decoder
- public func traverse<V>(visitor: inout V) throws where V : SwiftProtobuf.Visitor
- public static func == (lhs: SwiftProtobuf.Google_Protobuf_Any, rhs: SwiftProtobuf.Google_Protobuf_Any) -> Swift.Bool
- public var hashValue: Swift.Int {
- get
- }
- }
- extension SwiftProtobuf.Google_Protobuf_Timestamp {
- public init(seconds: Swift.Int64 = 0, nanos: Swift.Int32 = 0)
- }
- extension SwiftProtobuf.Google_Protobuf_Timestamp {
- public init(timeIntervalSince1970: Foundation.TimeInterval)
- public init(timeIntervalSinceReferenceDate: Foundation.TimeInterval)
- public init(date: Foundation.Date)
- public var timeIntervalSince1970: Foundation.TimeInterval {
- get
- }
- public var timeIntervalSinceReferenceDate: Foundation.TimeInterval {
- get
- }
- public var date: Foundation.Date {
- get
- }
- }
- public func + (lhs: SwiftProtobuf.Google_Protobuf_Timestamp, rhs: SwiftProtobuf.Google_Protobuf_Duration) -> SwiftProtobuf.Google_Protobuf_Timestamp
- public func + (lhs: SwiftProtobuf.Google_Protobuf_Duration, rhs: SwiftProtobuf.Google_Protobuf_Timestamp) -> SwiftProtobuf.Google_Protobuf_Timestamp
- public func - (lhs: SwiftProtobuf.Google_Protobuf_Timestamp, rhs: SwiftProtobuf.Google_Protobuf_Duration) -> SwiftProtobuf.Google_Protobuf_Timestamp
- extension SwiftProtobuf.AnyUnpackError : Swift.Equatable {}
- extension SwiftProtobuf.AnyUnpackError : Swift.Hashable {}
- extension SwiftProtobuf.FieldMaskError : Swift.Equatable {}
- extension SwiftProtobuf.FieldMaskError : Swift.Hashable {}
- extension SwiftProtobuf.TextFormatDecodingError : Swift.Equatable {}
- extension SwiftProtobuf.TextFormatDecodingError : Swift.Hashable {}
- extension SwiftProtobuf.BinaryDelimited.Error : Swift.Equatable {}
- extension SwiftProtobuf.BinaryDelimited.Error : Swift.Hashable {}
- extension SwiftProtobuf.PathDecodingError : Swift.Equatable {}
- extension SwiftProtobuf.PathDecodingError : Swift.Hashable {}
- extension SwiftProtobuf.BinaryDecodingError : Swift.Equatable {}
- extension SwiftProtobuf.BinaryDecodingError : Swift.Hashable {}
|