-
Notifications
You must be signed in to change notification settings - Fork 68
/
proxy_wasm_intrinsics_lite.pb.cc
5137 lines (4632 loc) · 208 KB
/
proxy_wasm_intrinsics_lite.pb.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2016-2019 Envoy Project Authors
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proxy_wasm_intrinsics_lite.proto
// Protobuf C++ Version: 5.26.1
#include "proxy_wasm_intrinsics_lite.pb.h"
#include <algorithm>
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/io/zero_copy_stream_impl_lite.h"
#include "google/protobuf/generated_message_tctable_impl.h"
// @@protoc_insertion_point(includes)
// Must be included last.
#include "google/protobuf/port_def.inc"
PROTOBUF_PRAGMA_INIT_SEG
namespace _pb = ::google::protobuf;
namespace _pbi = ::google::protobuf::internal;
namespace _fl = ::google::protobuf::internal::field_layout;
inline constexpr GrpcService_HeaderValue::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: key_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
value_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_HeaderValue::GrpcService_HeaderValue(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_HeaderValueDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_HeaderValueDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_HeaderValueDefaultTypeInternal() {}
union {
GrpcService_HeaderValue _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_HeaderValueDefaultTypeInternal _GrpcService_HeaderValue_default_instance_;
inline constexpr GrpcService_GoogleGrpc_GoogleLocalCredentials::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_GoogleLocalCredentials::GrpcService_GoogleGrpc_GoogleLocalCredentials(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_GoogleLocalCredentialsDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_GoogleLocalCredentialsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_GoogleLocalCredentialsDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_GoogleLocalCredentials _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_GoogleLocalCredentialsDefaultTypeInternal _GrpcService_GoogleGrpc_GoogleLocalCredentials_default_instance_;
inline constexpr GrpcService_GoogleGrpc_Empty::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_Empty::GrpcService_GoogleGrpc_Empty(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_EmptyDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_EmptyDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_EmptyDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_Empty _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_EmptyDefaultTypeInternal _GrpcService_GoogleGrpc_Empty_default_instance_;
inline constexpr GrpcService_GoogleGrpc_CallCredentials_StsService::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: token_exchange_service_uri_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
resource_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
audience_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
scope_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
requested_token_type_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
subject_token_path_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
subject_token_type_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
actor_token_path_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
actor_token_type_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials_StsService::GrpcService_GoogleGrpc_CallCredentials_StsService(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_CallCredentials_StsServiceDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials_StsServiceDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_CallCredentials_StsServiceDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_CallCredentials_StsService _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_CallCredentials_StsServiceDefaultTypeInternal _GrpcService_GoogleGrpc_CallCredentials_StsService_default_instance_;
inline constexpr GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentials::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: json_key_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
token_lifetime_seconds_{::uint64_t{0u}},
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentials::GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentials(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentialsDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentialsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentialsDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentials _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentialsDefaultTypeInternal _GrpcService_GoogleGrpc_CallCredentials_ServiceAccountJWTAccessCredentials_default_instance_;
inline constexpr GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentials::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: authorization_token_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
authority_selector_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentials::GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentials(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentialsDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentialsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentialsDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentials _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentialsDefaultTypeInternal _GrpcService_GoogleGrpc_CallCredentials_GoogleIAMCredentials_default_instance_;
inline constexpr GrpcService_EnvoyGrpc::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: cluster_name_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_EnvoyGrpc::GrpcService_EnvoyGrpc(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_EnvoyGrpcDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_EnvoyGrpcDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_EnvoyGrpcDefaultTypeInternal() {}
union {
GrpcService_EnvoyGrpc _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_EnvoyGrpcDefaultTypeInternal _GrpcService_EnvoyGrpc_default_instance_;
inline constexpr DataSource::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: specifier_{},
_cached_size_{0},
_oneof_case_{} {}
template <typename>
PROTOBUF_CONSTEXPR DataSource::DataSource(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct DataSourceDefaultTypeInternal {
PROTOBUF_CONSTEXPR DataSourceDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~DataSourceDefaultTypeInternal() {}
union {
DataSource _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 DataSourceDefaultTypeInternal _DataSource_default_instance_;
inline constexpr Any::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: type_url_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
value_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
_cached_size_{0} {}
template <typename>
PROTOBUF_CONSTEXPR Any::Any(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct AnyDefaultTypeInternal {
PROTOBUF_CONSTEXPR AnyDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~AnyDefaultTypeInternal() {}
union {
Any _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 AnyDefaultTypeInternal _Any_default_instance_;
inline constexpr WKT::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
struct__{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR WKT::WKT(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct WKTDefaultTypeInternal {
PROTOBUF_CONSTEXPR WKTDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~WKTDefaultTypeInternal() {}
union {
WKT _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 WKTDefaultTypeInternal _WKT_default_instance_;
inline constexpr GrpcService_GoogleGrpc_SslCredentials::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
root_certs_{nullptr},
private_key_{nullptr},
cert_chain_{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_SslCredentials::GrpcService_GoogleGrpc_SslCredentials(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_SslCredentialsDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_SslCredentialsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_SslCredentialsDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_SslCredentials _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_SslCredentialsDefaultTypeInternal _GrpcService_GoogleGrpc_SslCredentials_default_instance_;
inline constexpr GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPlugin::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: name_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
config_type_{},
_cached_size_{0},
_oneof_case_{} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPlugin::GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPlugin(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPluginDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPluginDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPluginDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPlugin _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPluginDefaultTypeInternal _GrpcService_GoogleGrpc_CallCredentials_MetadataCredentialsFromPlugin_default_instance_;
inline constexpr GrpcService_GoogleGrpc_ChannelCredentials::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: credential_specifier_{},
_cached_size_{0},
_oneof_case_{} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_ChannelCredentials::GrpcService_GoogleGrpc_ChannelCredentials(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_ChannelCredentialsDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_ChannelCredentialsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_ChannelCredentialsDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_ChannelCredentials _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_ChannelCredentialsDefaultTypeInternal _GrpcService_GoogleGrpc_ChannelCredentials_default_instance_;
inline constexpr GrpcService_GoogleGrpc_CallCredentials::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: credential_specifier_{},
_cached_size_{0},
_oneof_case_{} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentials::GrpcService_GoogleGrpc_CallCredentials(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpc_CallCredentialsDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc_CallCredentialsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpc_CallCredentialsDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc_CallCredentials _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpc_CallCredentialsDefaultTypeInternal _GrpcService_GoogleGrpc_CallCredentials_default_instance_;
inline constexpr GrpcService_GoogleGrpc::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: _cached_size_{0},
call_credentials_{},
target_uri_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
stat_prefix_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
credentials_factory_name_(
&::google::protobuf::internal::fixed_address_empty_string,
::_pbi::ConstantInitialized()),
channel_credentials_{nullptr},
config_{nullptr} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpc::GrpcService_GoogleGrpc(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcService_GoogleGrpcDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcService_GoogleGrpcDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcService_GoogleGrpcDefaultTypeInternal() {}
union {
GrpcService_GoogleGrpc _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcService_GoogleGrpcDefaultTypeInternal _GrpcService_GoogleGrpc_default_instance_;
inline constexpr GrpcService::Impl_::Impl_(
::_pbi::ConstantInitialized) noexcept
: initial_metadata_{},
target_specifier_{},
_cached_size_{0},
_oneof_case_{} {}
template <typename>
PROTOBUF_CONSTEXPR GrpcService::GrpcService(::_pbi::ConstantInitialized)
: _impl_(::_pbi::ConstantInitialized()) {}
struct GrpcServiceDefaultTypeInternal {
PROTOBUF_CONSTEXPR GrpcServiceDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {}
~GrpcServiceDefaultTypeInternal() {}
union {
GrpcService _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 GrpcServiceDefaultTypeInternal _GrpcService_default_instance_;
// ===================================================================
class WKT::_Internal {
public:
using HasBits = decltype(std::declval<WKT>()._impl_._has_bits_);
static constexpr ::int32_t kHasBitsOffset =
8 * PROTOBUF_FIELD_OFFSET(WKT, _impl_._has_bits_);
};
void WKT::clear_struct_() {
PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
if (_impl_.struct__ != nullptr) _impl_.struct__->Clear();
_impl_._has_bits_[0] &= ~0x00000001u;
}
WKT::WKT(::google::protobuf::Arena* arena)
: ::google::protobuf::MessageLite(arena) {
SharedCtor(arena);
// @@protoc_insertion_point(arena_constructor:WKT)
}
inline PROTOBUF_NDEBUG_INLINE WKT::Impl_::Impl_(
::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena,
const Impl_& from)
: _has_bits_{from._has_bits_},
_cached_size_{0} {}
WKT::WKT(
::google::protobuf::Arena* arena,
const WKT& from)
: ::google::protobuf::MessageLite(arena) {
WKT* const _this = this;
(void)_this;
_internal_metadata_.MergeFrom<std::string>(
from._internal_metadata_);
new (&_impl_) Impl_(internal_visibility(), arena, from._impl_);
::uint32_t cached_has_bits = _impl_._has_bits_[0];
_impl_.struct__ = (cached_has_bits & 0x00000001u) ? ::google::protobuf::MessageLite::CopyConstruct<::google::protobuf::Struct>(
arena, *from._impl_.struct__)
: nullptr;
// @@protoc_insertion_point(copy_constructor:WKT)
}
inline PROTOBUF_NDEBUG_INLINE WKT::Impl_::Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* arena)
: _cached_size_{0} {}
inline void WKT::SharedCtor(::_pb::Arena* arena) {
new (&_impl_) Impl_(internal_visibility(), arena);
_impl_.struct__ = {};
}
WKT::~WKT() {
// @@protoc_insertion_point(destructor:WKT)
_internal_metadata_.Delete<std::string>();
SharedDtor();
}
inline void WKT::SharedDtor() {
ABSL_DCHECK(GetArena() == nullptr);
delete _impl_.struct__;
_impl_.~Impl_();
}
const ::google::protobuf::MessageLite::ClassData*
WKT::GetClassData() const {
struct ClassData_ {
::google::protobuf::MessageLite::ClassData header;
char type_name[4];
};
PROTOBUF_CONSTINIT static const ClassData_ _data_ = {
{
nullptr, // OnDemandRegisterArenaDtor
PROTOBUF_FIELD_OFFSET(WKT, _impl_._cached_size_),
true,
},
"WKT",
};
return &_data_.header;
}
PROTOBUF_NOINLINE void WKT::Clear() {
// @@protoc_insertion_point(message_clear_start:WKT)
PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
::uint32_t cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
cached_has_bits = _impl_._has_bits_[0];
if (cached_has_bits & 0x00000001u) {
ABSL_DCHECK(_impl_.struct__ != nullptr);
_impl_.struct__->Clear();
}
_impl_._has_bits_.Clear();
_internal_metadata_.Clear<std::string>();
}
const char* WKT::_InternalParse(
const char* ptr, ::_pbi::ParseContext* ctx) {
ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header);
return ptr;
}
PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::_pbi::TcParseTable<0, 1, 1, 0, 2> WKT::_table_ = {
{
PROTOBUF_FIELD_OFFSET(WKT, _impl_._has_bits_),
0, // no _extensions_
1, 0, // max_field_number, fast_idx_mask
offsetof(decltype(_table_), field_lookup_table),
4294967294, // skipmap
offsetof(decltype(_table_), field_entries),
1, // num_field_entries
1, // num_aux_entries
offsetof(decltype(_table_), aux_entries),
&_WKT_default_instance_._instance,
::_pbi::TcParser::GenericFallbackLite, // fallback
#ifdef PROTOBUF_PREFETCH_PARSE_TABLE
::_pbi::TcParser::GetTable<::WKT>(), // to_prefetch
#endif // PROTOBUF_PREFETCH_PARSE_TABLE
}, {{
// .google.protobuf.Struct struct = 1;
{::_pbi::TcParser::FastMtS1,
{10, 0, 0, PROTOBUF_FIELD_OFFSET(WKT, _impl_.struct__)}},
}}, {{
65535, 65535
}}, {{
// .google.protobuf.Struct struct = 1;
{PROTOBUF_FIELD_OFFSET(WKT, _impl_.struct__), _Internal::kHasBitsOffset + 0, 0,
(0 | ::_fl::kFcOptional | ::_fl::kMessage | ::_fl::kTvTable)},
}}, {{
{::_pbi::TcParser::GetTable<::google::protobuf::Struct>()},
}}, {{
}},
};
::uint8_t* WKT::_InternalSerialize(
::uint8_t* target,
::google::protobuf::io::EpsCopyOutputStream* stream) const {
// @@protoc_insertion_point(serialize_to_array_start:WKT)
::uint32_t cached_has_bits = 0;
(void)cached_has_bits;
cached_has_bits = _impl_._has_bits_[0];
// .google.protobuf.Struct struct = 1;
if (cached_has_bits & 0x00000001u) {
target = ::google::protobuf::internal::WireFormatLite::InternalWriteMessage(
1, *_impl_.struct__, _impl_.struct__->GetCachedSize(), target, stream);
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
target = stream->WriteRaw(
_internal_metadata_.unknown_fields<std::string>(::google::protobuf::internal::GetEmptyString).data(),
static_cast<int>(_internal_metadata_.unknown_fields<std::string>(::google::protobuf::internal::GetEmptyString).size()), target);
}
// @@protoc_insertion_point(serialize_to_array_end:WKT)
return target;
}
::size_t WKT::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:WKT)
::size_t total_size = 0;
::uint32_t cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// .google.protobuf.Struct struct = 1;
cached_has_bits = _impl_._has_bits_[0];
if (cached_has_bits & 0x00000001u) {
total_size +=
1 + ::google::protobuf::internal::WireFormatLite::MessageSize(*_impl_.struct__);
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
total_size += _internal_metadata_.unknown_fields<std::string>(::google::protobuf::internal::GetEmptyString).size();
}
_impl_._cached_size_.Set(::_pbi::ToCachedSize(total_size));
return total_size;
}
void WKT::CheckTypeAndMergeFrom(
const ::google::protobuf::MessageLite& from) {
MergeFrom(*::_pbi::DownCast<const WKT*>(
&from));
}
void WKT::MergeFrom(const WKT& from) {
WKT* const _this = this;
::google::protobuf::Arena* arena = _this->GetArena();
// @@protoc_insertion_point(class_specific_merge_from_start:WKT)
ABSL_DCHECK_NE(&from, _this);
::uint32_t cached_has_bits = 0;
(void) cached_has_bits;
cached_has_bits = from._impl_._has_bits_[0];
if (cached_has_bits & 0x00000001u) {
ABSL_DCHECK(from._impl_.struct__ != nullptr);
if (_this->_impl_.struct__ == nullptr) {
_this->_impl_.struct__ =
::google::protobuf::MessageLite::CopyConstruct<::google::protobuf::Struct>(arena, *from._impl_.struct__);
} else {
_this->_impl_.struct__->MergeFrom(*from._impl_.struct__);
}
}
_this->_impl_._has_bits_[0] |= cached_has_bits;
_this->_internal_metadata_.MergeFrom<std::string>(from._internal_metadata_);
}
void WKT::CopyFrom(const WKT& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:WKT)
if (&from == this) return;
Clear();
MergeFrom(from);
}
PROTOBUF_NOINLINE bool WKT::IsInitialized() const {
return true;
}
void WKT::InternalSwap(WKT* PROTOBUF_RESTRICT other) {
using std::swap;
_internal_metadata_.InternalSwap(&other->_internal_metadata_);
swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]);
swap(_impl_.struct__, other->_impl_.struct__);
}
// ===================================================================
class DataSource::_Internal {
public:
static constexpr ::int32_t kOneofCaseOffset =
PROTOBUF_FIELD_OFFSET(::DataSource, _impl_._oneof_case_);
};
DataSource::DataSource(::google::protobuf::Arena* arena)
: ::google::protobuf::MessageLite(arena) {
SharedCtor(arena);
// @@protoc_insertion_point(arena_constructor:DataSource)
}
inline PROTOBUF_NDEBUG_INLINE DataSource::Impl_::Impl_(
::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena,
const Impl_& from)
: specifier_{},
_cached_size_{0},
_oneof_case_{from._oneof_case_[0]} {}
DataSource::DataSource(
::google::protobuf::Arena* arena,
const DataSource& from)
: ::google::protobuf::MessageLite(arena) {
DataSource* const _this = this;
(void)_this;
_internal_metadata_.MergeFrom<std::string>(
from._internal_metadata_);
new (&_impl_) Impl_(internal_visibility(), arena, from._impl_);
switch (specifier_case()) {
case SPECIFIER_NOT_SET:
break;
case kFilename:
new (&_impl_.specifier_.filename_) decltype(_impl_.specifier_.filename_){arena, from._impl_.specifier_.filename_};
break;
case kInlineBytes:
new (&_impl_.specifier_.inline_bytes_) decltype(_impl_.specifier_.inline_bytes_){arena, from._impl_.specifier_.inline_bytes_};
break;
case kInlineString:
new (&_impl_.specifier_.inline_string_) decltype(_impl_.specifier_.inline_string_){arena, from._impl_.specifier_.inline_string_};
break;
}
// @@protoc_insertion_point(copy_constructor:DataSource)
}
inline PROTOBUF_NDEBUG_INLINE DataSource::Impl_::Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* arena)
: specifier_{},
_cached_size_{0},
_oneof_case_{} {}
inline void DataSource::SharedCtor(::_pb::Arena* arena) {
new (&_impl_) Impl_(internal_visibility(), arena);
}
DataSource::~DataSource() {
// @@protoc_insertion_point(destructor:DataSource)
_internal_metadata_.Delete<std::string>();
SharedDtor();
}
inline void DataSource::SharedDtor() {
ABSL_DCHECK(GetArena() == nullptr);
if (has_specifier()) {
clear_specifier();
}
_impl_.~Impl_();
}
void DataSource::clear_specifier() {
// @@protoc_insertion_point(one_of_clear_start:DataSource)
PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
switch (specifier_case()) {
case kFilename: {
_impl_.specifier_.filename_.Destroy();
break;
}
case kInlineBytes: {
_impl_.specifier_.inline_bytes_.Destroy();
break;
}
case kInlineString: {
_impl_.specifier_.inline_string_.Destroy();
break;
}
case SPECIFIER_NOT_SET: {
break;
}
}
_impl_._oneof_case_[0] = SPECIFIER_NOT_SET;
}
const ::google::protobuf::MessageLite::ClassData*
DataSource::GetClassData() const {
struct ClassData_ {
::google::protobuf::MessageLite::ClassData header;
char type_name[11];
};
PROTOBUF_CONSTINIT static const ClassData_ _data_ = {
{
nullptr, // OnDemandRegisterArenaDtor
PROTOBUF_FIELD_OFFSET(DataSource, _impl_._cached_size_),
true,
},
"DataSource",
};
return &_data_.header;
}
PROTOBUF_NOINLINE void DataSource::Clear() {
// @@protoc_insertion_point(message_clear_start:DataSource)
PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
::uint32_t cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
clear_specifier();
_internal_metadata_.Clear<std::string>();
}
const char* DataSource::_InternalParse(
const char* ptr, ::_pbi::ParseContext* ctx) {
ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header);
return ptr;
}
PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::_pbi::TcParseTable<0, 3, 0, 40, 2> DataSource::_table_ = {
{
0, // no _has_bits_
0, // no _extensions_
3, 0, // max_field_number, fast_idx_mask
offsetof(decltype(_table_), field_lookup_table),
4294967288, // skipmap
offsetof(decltype(_table_), field_entries),
3, // num_field_entries
0, // num_aux_entries
offsetof(decltype(_table_), field_names), // no aux_entries
&_DataSource_default_instance_._instance,
::_pbi::TcParser::GenericFallbackLite, // fallback
#ifdef PROTOBUF_PREFETCH_PARSE_TABLE
::_pbi::TcParser::GetTable<::DataSource>(), // to_prefetch
#endif // PROTOBUF_PREFETCH_PARSE_TABLE
}, {{
{::_pbi::TcParser::MiniParse, {}},
}}, {{
65535, 65535
}}, {{
// string filename = 1;
{PROTOBUF_FIELD_OFFSET(DataSource, _impl_.specifier_.filename_), _Internal::kOneofCaseOffset + 0, 0,
(0 | ::_fl::kFcOneof | ::_fl::kUtf8String | ::_fl::kRepAString)},
// bytes inline_bytes = 2;
{PROTOBUF_FIELD_OFFSET(DataSource, _impl_.specifier_.inline_bytes_), _Internal::kOneofCaseOffset + 0, 0,
(0 | ::_fl::kFcOneof | ::_fl::kBytes | ::_fl::kRepAString)},
// string inline_string = 3;
{PROTOBUF_FIELD_OFFSET(DataSource, _impl_.specifier_.inline_string_), _Internal::kOneofCaseOffset + 0, 0,
(0 | ::_fl::kFcOneof | ::_fl::kUtf8String | ::_fl::kRepAString)},
}},
// no aux_entries
{{
"\12\10\0\15\0\0\0\0"
"DataSource"
"filename"
"inline_string"
}},
};
::uint8_t* DataSource::_InternalSerialize(
::uint8_t* target,
::google::protobuf::io::EpsCopyOutputStream* stream) const {
// @@protoc_insertion_point(serialize_to_array_start:DataSource)
::uint32_t cached_has_bits = 0;
(void)cached_has_bits;
switch (specifier_case()) {
case kFilename: {
const std::string& _s = this->_internal_filename();
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
_s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "DataSource.filename");
target = stream->WriteStringMaybeAliased(1, _s, target);
break;
}
case kInlineBytes: {
const std::string& _s = this->_internal_inline_bytes();
target = stream->WriteBytesMaybeAliased(2, _s, target);
break;
}
case kInlineString: {
const std::string& _s = this->_internal_inline_string();
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
_s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "DataSource.inline_string");
target = stream->WriteStringMaybeAliased(3, _s, target);
break;
}
default:
break;
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
target = stream->WriteRaw(
_internal_metadata_.unknown_fields<std::string>(::google::protobuf::internal::GetEmptyString).data(),
static_cast<int>(_internal_metadata_.unknown_fields<std::string>(::google::protobuf::internal::GetEmptyString).size()), target);
}
// @@protoc_insertion_point(serialize_to_array_end:DataSource)
return target;
}
::size_t DataSource::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:DataSource)
::size_t total_size = 0;
::uint32_t cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
switch (specifier_case()) {
// string filename = 1;
case kFilename: {
total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
this->_internal_filename());
break;
}
// bytes inline_bytes = 2;
case kInlineBytes: {
total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize(
this->_internal_inline_bytes());
break;
}
// string inline_string = 3;
case kInlineString: {
total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
this->_internal_inline_string());
break;
}
case SPECIFIER_NOT_SET: {
break;
}
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
total_size += _internal_metadata_.unknown_fields<std::string>(::google::protobuf::internal::GetEmptyString).size();
}
_impl_._cached_size_.Set(::_pbi::ToCachedSize(total_size));
return total_size;
}
void DataSource::CheckTypeAndMergeFrom(
const ::google::protobuf::MessageLite& from) {
MergeFrom(*::_pbi::DownCast<const DataSource*>(
&from));
}
void DataSource::MergeFrom(const DataSource& from) {
DataSource* const _this = this;
::google::protobuf::Arena* arena = _this->GetArena();
// @@protoc_insertion_point(class_specific_merge_from_start:DataSource)
ABSL_DCHECK_NE(&from, _this);
::uint32_t cached_has_bits = 0;
(void) cached_has_bits;
if (const uint32_t oneof_from_case = from._impl_._oneof_case_[0]) {
const uint32_t oneof_to_case = _this->_impl_._oneof_case_[0];
const bool oneof_needs_init = oneof_to_case != oneof_from_case;
if (oneof_needs_init) {
if (oneof_to_case != 0) {
_this->clear_specifier();
}
_this->_impl_._oneof_case_[0] = oneof_from_case;
}
switch (oneof_from_case) {
case kFilename: {
if (oneof_needs_init) {
_this->_impl_.specifier_.filename_.InitDefault();
}
_this->_impl_.specifier_.filename_.Set(from._internal_filename(), arena);
break;
}
case kInlineBytes: {
if (oneof_needs_init) {
_this->_impl_.specifier_.inline_bytes_.InitDefault();
}
_this->_impl_.specifier_.inline_bytes_.Set(from._internal_inline_bytes(), arena);
break;
}
case kInlineString: {
if (oneof_needs_init) {
_this->_impl_.specifier_.inline_string_.InitDefault();
}
_this->_impl_.specifier_.inline_string_.Set(from._internal_inline_string(), arena);
break;
}
case SPECIFIER_NOT_SET:
break;
}
}
_this->_internal_metadata_.MergeFrom<std::string>(from._internal_metadata_);
}
void DataSource::CopyFrom(const DataSource& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:DataSource)
if (&from == this) return;
Clear();
MergeFrom(from);
}
PROTOBUF_NOINLINE bool DataSource::IsInitialized() const {
return true;
}
void DataSource::InternalSwap(DataSource* PROTOBUF_RESTRICT other) {
using std::swap;
_internal_metadata_.InternalSwap(&other->_internal_metadata_);
swap(_impl_.specifier_, other->_impl_.specifier_);
swap(_impl_._oneof_case_[0], other->_impl_._oneof_case_[0]);
}
// ===================================================================
class Any::_Internal {
public:
};
Any::Any(::google::protobuf::Arena* arena)
: ::google::protobuf::MessageLite(arena) {
SharedCtor(arena);
// @@protoc_insertion_point(arena_constructor:Any)
}
inline PROTOBUF_NDEBUG_INLINE Any::Impl_::Impl_(
::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena,
const Impl_& from)
: type_url_(arena, from.type_url_),
value_(arena, from.value_),
_cached_size_{0} {}
Any::Any(
::google::protobuf::Arena* arena,
const Any& from)
: ::google::protobuf::MessageLite(arena) {
Any* const _this = this;
(void)_this;
_internal_metadata_.MergeFrom<std::string>(
from._internal_metadata_);
new (&_impl_) Impl_(internal_visibility(), arena, from._impl_);
// @@protoc_insertion_point(copy_constructor:Any)
}
inline PROTOBUF_NDEBUG_INLINE Any::Impl_::Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* arena)
: type_url_(arena),
value_(arena),
_cached_size_{0} {}
inline void Any::SharedCtor(::_pb::Arena* arena) {
new (&_impl_) Impl_(internal_visibility(), arena);
}
Any::~Any() {
// @@protoc_insertion_point(destructor:Any)
_internal_metadata_.Delete<std::string>();
SharedDtor();
}
inline void Any::SharedDtor() {
ABSL_DCHECK(GetArena() == nullptr);
_impl_.type_url_.Destroy();
_impl_.value_.Destroy();
_impl_.~Impl_();
}