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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
// This file is generated by rust-protobuf 2.25.2. Do not edit
// @generated

// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

#![allow(unused_attributes)]
#![cfg_attr(rustfmt, rustfmt::skip)]

#![allow(box_pointers)]
#![allow(dead_code)]
#![allow(missing_docs)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(trivial_casts)]
#![allow(unused_imports)]
#![allow(unused_results)]
//! Generated file from `google/api/documentation.proto`

/// Generated files are compatible only with the same version
/// of protobuf runtime.
// const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_25_2;

#[derive(PartialEq,Clone,Default)]
pub struct Documentation {
    // message fields
    pub summary: ::std::string::String,
    pub pages: ::protobuf::RepeatedField<Page>,
    pub rules: ::protobuf::RepeatedField<DocumentationRule>,
    pub documentation_root_url: ::std::string::String,
    pub overview: ::std::string::String,
    // special fields
    pub unknown_fields: ::protobuf::UnknownFields,
    pub cached_size: ::protobuf::CachedSize,
}

impl<'a> ::std::default::Default for &'a Documentation {
    fn default() -> &'a Documentation {
        <Documentation as ::protobuf::Message>::default_instance()
    }
}

impl Documentation {
    pub fn new() -> Documentation {
        ::std::default::Default::default()
    }

    // string summary = 1;


    pub fn get_summary(&self) -> &str {
        &self.summary
    }
    pub fn clear_summary(&mut self) {
        self.summary.clear();
    }

    // Param is passed by value, moved
    pub fn set_summary(&mut self, v: ::std::string::String) {
        self.summary = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_summary(&mut self) -> &mut ::std::string::String {
        &mut self.summary
    }

    // Take field
    pub fn take_summary(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.summary, ::std::string::String::new())
    }

    // repeated .google.api.Page pages = 5;


    pub fn get_pages(&self) -> &[Page] {
        &self.pages
    }
    pub fn clear_pages(&mut self) {
        self.pages.clear();
    }

    // Param is passed by value, moved
    pub fn set_pages(&mut self, v: ::protobuf::RepeatedField<Page>) {
        self.pages = v;
    }

    // Mutable pointer to the field.
    pub fn mut_pages(&mut self) -> &mut ::protobuf::RepeatedField<Page> {
        &mut self.pages
    }

    // Take field
    pub fn take_pages(&mut self) -> ::protobuf::RepeatedField<Page> {
        ::std::mem::replace(&mut self.pages, ::protobuf::RepeatedField::new())
    }

    // repeated .google.api.DocumentationRule rules = 3;


    pub fn get_rules(&self) -> &[DocumentationRule] {
        &self.rules
    }
    pub fn clear_rules(&mut self) {
        self.rules.clear();
    }

    // Param is passed by value, moved
    pub fn set_rules(&mut self, v: ::protobuf::RepeatedField<DocumentationRule>) {
        self.rules = v;
    }

    // Mutable pointer to the field.
    pub fn mut_rules(&mut self) -> &mut ::protobuf::RepeatedField<DocumentationRule> {
        &mut self.rules
    }

    // Take field
    pub fn take_rules(&mut self) -> ::protobuf::RepeatedField<DocumentationRule> {
        ::std::mem::replace(&mut self.rules, ::protobuf::RepeatedField::new())
    }

    // string documentation_root_url = 4;


    pub fn get_documentation_root_url(&self) -> &str {
        &self.documentation_root_url
    }
    pub fn clear_documentation_root_url(&mut self) {
        self.documentation_root_url.clear();
    }

    // Param is passed by value, moved
    pub fn set_documentation_root_url(&mut self, v: ::std::string::String) {
        self.documentation_root_url = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_documentation_root_url(&mut self) -> &mut ::std::string::String {
        &mut self.documentation_root_url
    }

    // Take field
    pub fn take_documentation_root_url(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.documentation_root_url, ::std::string::String::new())
    }

    // string overview = 2;


    pub fn get_overview(&self) -> &str {
        &self.overview
    }
    pub fn clear_overview(&mut self) {
        self.overview.clear();
    }

    // Param is passed by value, moved
    pub fn set_overview(&mut self, v: ::std::string::String) {
        self.overview = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_overview(&mut self) -> &mut ::std::string::String {
        &mut self.overview
    }

    // Take field
    pub fn take_overview(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.overview, ::std::string::String::new())
    }
}

impl ::protobuf::Message for Documentation {
    fn is_initialized(&self) -> bool {
        for v in &self.pages {
            if !v.is_initialized() {
                return false;
            }
        };
        for v in &self.rules {
            if !v.is_initialized() {
                return false;
            }
        };
        true
    }

    fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> {
        while !is.eof()? {
            let (field_number, wire_type) = is.read_tag_unpack()?;
            match field_number {
                1 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.summary)?;
                },
                5 => {
                    ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.pages)?;
                },
                3 => {
                    ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.rules)?;
                },
                4 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.documentation_root_url)?;
                },
                2 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.overview)?;
                },
                _ => {
                    ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
                },
            };
        }
        ::std::result::Result::Ok(())
    }

    // Compute sizes of nested messages
    #[allow(unused_variables)]
    fn compute_size(&self) -> u32 {
        let mut my_size = 0;
        if !self.summary.is_empty() {
            my_size += ::protobuf::rt::string_size(1, &self.summary);
        }
        for value in &self.pages {
            let len = value.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        };
        for value in &self.rules {
            let len = value.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        };
        if !self.documentation_root_url.is_empty() {
            my_size += ::protobuf::rt::string_size(4, &self.documentation_root_url);
        }
        if !self.overview.is_empty() {
            my_size += ::protobuf::rt::string_size(2, &self.overview);
        }
        my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
        self.cached_size.set(my_size);
        my_size
    }

    fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
        if !self.summary.is_empty() {
            os.write_string(1, &self.summary)?;
        }
        for v in &self.pages {
            os.write_tag(5, ::protobuf::wire_format::WireTypeLengthDelimited)?;
            os.write_raw_varint32(v.get_cached_size())?;
            v.write_to_with_cached_sizes(os)?;
        };
        for v in &self.rules {
            os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?;
            os.write_raw_varint32(v.get_cached_size())?;
            v.write_to_with_cached_sizes(os)?;
        };
        if !self.documentation_root_url.is_empty() {
            os.write_string(4, &self.documentation_root_url)?;
        }
        if !self.overview.is_empty() {
            os.write_string(2, &self.overview)?;
        }
        os.write_unknown_fields(self.get_unknown_fields())?;
        ::std::result::Result::Ok(())
    }

    fn get_cached_size(&self) -> u32 {
        self.cached_size.get()
    }

    fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
        &self.unknown_fields
    }

    fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
        &mut self.unknown_fields
    }

    fn as_any(&self) -> &dyn (::std::any::Any) {
        self as &dyn (::std::any::Any)
    }
    fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) {
        self as &mut dyn (::std::any::Any)
    }
    fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
        self
    }

    fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
        Self::descriptor_static()
    }

    fn new() -> Documentation {
        Documentation::new()
    }

    fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
        static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::LazyV2::INIT;
        descriptor.get(|| {
            let mut fields = ::std::vec::Vec::new();
            fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                "summary",
                |m: &Documentation| { &m.summary },
                |m: &mut Documentation| { &mut m.summary },
            ));
            fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<Page>>(
                "pages",
                |m: &Documentation| { &m.pages },
                |m: &mut Documentation| { &mut m.pages },
            ));
            fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<DocumentationRule>>(
                "rules",
                |m: &Documentation| { &m.rules },
                |m: &mut Documentation| { &mut m.rules },
            ));
            fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                "documentation_root_url",
                |m: &Documentation| { &m.documentation_root_url },
                |m: &mut Documentation| { &mut m.documentation_root_url },
            ));
            fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                "overview",
                |m: &Documentation| { &m.overview },
                |m: &mut Documentation| { &mut m.overview },
            ));
            ::protobuf::reflect::MessageDescriptor::new_pb_name::<Documentation>(
                "Documentation",
                fields,
                file_descriptor_proto()
            )
        })
    }

    fn default_instance() -> &'static Documentation {
        static instance: ::protobuf::rt::LazyV2<Documentation> = ::protobuf::rt::LazyV2::INIT;
        instance.get(Documentation::new)
    }
}

impl ::protobuf::Clear for Documentation {
    fn clear(&mut self) {
        self.summary.clear();
        self.pages.clear();
        self.rules.clear();
        self.documentation_root_url.clear();
        self.overview.clear();
        self.unknown_fields.clear();
    }
}

impl ::std::fmt::Debug for Documentation {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        ::protobuf::text_format::fmt(self, f)
    }
}

impl ::protobuf::reflect::ProtobufValue for Documentation {
    fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
        ::protobuf::reflect::ReflectValueRef::Message(self)
    }
}

#[derive(PartialEq,Clone,Default)]
pub struct DocumentationRule {
    // message fields
    pub selector: ::std::string::String,
    pub description: ::std::string::String,
    pub deprecation_description: ::std::string::String,
    // special fields
    pub unknown_fields: ::protobuf::UnknownFields,
    pub cached_size: ::protobuf::CachedSize,
}

impl<'a> ::std::default::Default for &'a DocumentationRule {
    fn default() -> &'a DocumentationRule {
        <DocumentationRule as ::protobuf::Message>::default_instance()
    }
}

impl DocumentationRule {
    pub fn new() -> DocumentationRule {
        ::std::default::Default::default()
    }

    // string selector = 1;


    pub fn get_selector(&self) -> &str {
        &self.selector
    }
    pub fn clear_selector(&mut self) {
        self.selector.clear();
    }

    // Param is passed by value, moved
    pub fn set_selector(&mut self, v: ::std::string::String) {
        self.selector = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_selector(&mut self) -> &mut ::std::string::String {
        &mut self.selector
    }

    // Take field
    pub fn take_selector(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.selector, ::std::string::String::new())
    }

    // string description = 2;


    pub fn get_description(&self) -> &str {
        &self.description
    }
    pub fn clear_description(&mut self) {
        self.description.clear();
    }

    // Param is passed by value, moved
    pub fn set_description(&mut self, v: ::std::string::String) {
        self.description = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_description(&mut self) -> &mut ::std::string::String {
        &mut self.description
    }

    // Take field
    pub fn take_description(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.description, ::std::string::String::new())
    }

    // string deprecation_description = 3;


    pub fn get_deprecation_description(&self) -> &str {
        &self.deprecation_description
    }
    pub fn clear_deprecation_description(&mut self) {
        self.deprecation_description.clear();
    }

    // Param is passed by value, moved
    pub fn set_deprecation_description(&mut self, v: ::std::string::String) {
        self.deprecation_description = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_deprecation_description(&mut self) -> &mut ::std::string::String {
        &mut self.deprecation_description
    }

    // Take field
    pub fn take_deprecation_description(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.deprecation_description, ::std::string::String::new())
    }
}

impl ::protobuf::Message for DocumentationRule {
    fn is_initialized(&self) -> bool {
        true
    }

    fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> {
        while !is.eof()? {
            let (field_number, wire_type) = is.read_tag_unpack()?;
            match field_number {
                1 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.selector)?;
                },
                2 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.description)?;
                },
                3 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.deprecation_description)?;
                },
                _ => {
                    ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
                },
            };
        }
        ::std::result::Result::Ok(())
    }

    // Compute sizes of nested messages
    #[allow(unused_variables)]
    fn compute_size(&self) -> u32 {
        let mut my_size = 0;
        if !self.selector.is_empty() {
            my_size += ::protobuf::rt::string_size(1, &self.selector);
        }
        if !self.description.is_empty() {
            my_size += ::protobuf::rt::string_size(2, &self.description);
        }
        if !self.deprecation_description.is_empty() {
            my_size += ::protobuf::rt::string_size(3, &self.deprecation_description);
        }
        my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
        self.cached_size.set(my_size);
        my_size
    }

    fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
        if !self.selector.is_empty() {
            os.write_string(1, &self.selector)?;
        }
        if !self.description.is_empty() {
            os.write_string(2, &self.description)?;
        }
        if !self.deprecation_description.is_empty() {
            os.write_string(3, &self.deprecation_description)?;
        }
        os.write_unknown_fields(self.get_unknown_fields())?;
        ::std::result::Result::Ok(())
    }

    fn get_cached_size(&self) -> u32 {
        self.cached_size.get()
    }

    fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
        &self.unknown_fields
    }

    fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
        &mut self.unknown_fields
    }

    fn as_any(&self) -> &dyn (::std::any::Any) {
        self as &dyn (::std::any::Any)
    }
    fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) {
        self as &mut dyn (::std::any::Any)
    }
    fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
        self
    }

    fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
        Self::descriptor_static()
    }

    fn new() -> DocumentationRule {
        DocumentationRule::new()
    }

    fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
        static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::LazyV2::INIT;
        descriptor.get(|| {
            let mut fields = ::std::vec::Vec::new();
            fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                "selector",
                |m: &DocumentationRule| { &m.selector },
                |m: &mut DocumentationRule| { &mut m.selector },
            ));
            fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                "description",
                |m: &DocumentationRule| { &m.description },
                |m: &mut DocumentationRule| { &mut m.description },
            ));
            fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                "deprecation_description",
                |m: &DocumentationRule| { &m.deprecation_description },
                |m: &mut DocumentationRule| { &mut m.deprecation_description },
            ));
            ::protobuf::reflect::MessageDescriptor::new_pb_name::<DocumentationRule>(
                "DocumentationRule",
                fields,
                file_descriptor_proto()
            )
        })
    }

    fn default_instance() -> &'static DocumentationRule {
        static instance: ::protobuf::rt::LazyV2<DocumentationRule> = ::protobuf::rt::LazyV2::INIT;
        instance.get(DocumentationRule::new)
    }
}

impl ::protobuf::Clear for DocumentationRule {
    fn clear(&mut self) {
        self.selector.clear();
        self.description.clear();
        self.deprecation_description.clear();
        self.unknown_fields.clear();
    }
}

impl ::std::fmt::Debug for DocumentationRule {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        ::protobuf::text_format::fmt(self, f)
    }
}

impl ::protobuf::reflect::ProtobufValue for DocumentationRule {
    fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
        ::protobuf::reflect::ReflectValueRef::Message(self)
    }
}

#[derive(PartialEq,Clone,Default)]
pub struct Page {
    // message fields
    pub name: ::std::string::String,
    pub content: ::std::string::String,
    pub subpages: ::protobuf::RepeatedField<Page>,
    // special fields
    pub unknown_fields: ::protobuf::UnknownFields,
    pub cached_size: ::protobuf::CachedSize,
}

impl<'a> ::std::default::Default for &'a Page {
    fn default() -> &'a Page {
        <Page as ::protobuf::Message>::default_instance()
    }
}

impl Page {
    pub fn new() -> Page {
        ::std::default::Default::default()
    }

    // string name = 1;


    pub fn get_name(&self) -> &str {
        &self.name
    }
    pub fn clear_name(&mut self) {
        self.name.clear();
    }

    // Param is passed by value, moved
    pub fn set_name(&mut self, v: ::std::string::String) {
        self.name = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_name(&mut self) -> &mut ::std::string::String {
        &mut self.name
    }

    // Take field
    pub fn take_name(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.name, ::std::string::String::new())
    }

    // string content = 2;


    pub fn get_content(&self) -> &str {
        &self.content
    }
    pub fn clear_content(&mut self) {
        self.content.clear();
    }

    // Param is passed by value, moved
    pub fn set_content(&mut self, v: ::std::string::String) {
        self.content = v;
    }

    // Mutable pointer to the field.
    // If field is not initialized, it is initialized with default value first.
    pub fn mut_content(&mut self) -> &mut ::std::string::String {
        &mut self.content
    }

    // Take field
    pub fn take_content(&mut self) -> ::std::string::String {
        ::std::mem::replace(&mut self.content, ::std::string::String::new())
    }

    // repeated .google.api.Page subpages = 3;


    pub fn get_subpages(&self) -> &[Page] {
        &self.subpages
    }
    pub fn clear_subpages(&mut self) {
        self.subpages.clear();
    }

    // Param is passed by value, moved
    pub fn set_subpages(&mut self, v: ::protobuf::RepeatedField<Page>) {
        self.subpages = v;
    }

    // Mutable pointer to the field.
    pub fn mut_subpages(&mut self) -> &mut ::protobuf::RepeatedField<Page> {
        &mut self.subpages
    }

    // Take field
    pub fn take_subpages(&mut self) -> ::protobuf::RepeatedField<Page> {
        ::std::mem::replace(&mut self.subpages, ::protobuf::RepeatedField::new())
    }
}

impl ::protobuf::Message for Page {
    fn is_initialized(&self) -> bool {
        for v in &self.subpages {
            if !v.is_initialized() {
                return false;
            }
        };
        true
    }

    fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> {
        while !is.eof()? {
            let (field_number, wire_type) = is.read_tag_unpack()?;
            match field_number {
                1 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.name)?;
                },
                2 => {
                    ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.content)?;
                },
                3 => {
                    ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.subpages)?;
                },
                _ => {
                    ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
                },
            };
        }
        ::std::result::Result::Ok(())
    }

    // Compute sizes of nested messages
    #[allow(unused_variables)]
    fn compute_size(&self) -> u32 {
        let mut my_size = 0;
        if !self.name.is_empty() {
            my_size += ::protobuf::rt::string_size(1, &self.name);
        }
        if !self.content.is_empty() {
            my_size += ::protobuf::rt::string_size(2, &self.content);
        }
        for value in &self.subpages {
            let len = value.compute_size();
            my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
        };
        my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
        self.cached_size.set(my_size);
        my_size
    }

    fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
        if !self.name.is_empty() {
            os.write_string(1, &self.name)?;
        }
        if !self.content.is_empty() {
            os.write_string(2, &self.content)?;
        }
        for v in &self.subpages {
            os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?;
            os.write_raw_varint32(v.get_cached_size())?;
            v.write_to_with_cached_sizes(os)?;
        };
        os.write_unknown_fields(self.get_unknown_fields())?;
        ::std::result::Result::Ok(())
    }

    fn get_cached_size(&self) -> u32 {
        self.cached_size.get()
    }

    fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
        &self.unknown_fields
    }

    fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
        &mut self.unknown_fields
    }

    fn as_any(&self) -> &dyn (::std::any::Any) {
        self as &dyn (::std::any::Any)
    }
    fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) {
        self as &mut dyn (::std::any::Any)
    }
    fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
        self
    }

    fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
        Self::descriptor_static()
    }

    fn new() -> Page {
        Page::new()
    }

    fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
        static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::LazyV2::INIT;
        descriptor.get(|| {
            let mut fields = ::std::vec::Vec::new();
            fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                "name",
                |m: &Page| { &m.name },
                |m: &mut Page| { &mut m.name },
            ));
            fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
                "content",
                |m: &Page| { &m.content },
                |m: &mut Page| { &mut m.content },
            ));
            fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<Page>>(
                "subpages",
                |m: &Page| { &m.subpages },
                |m: &mut Page| { &mut m.subpages },
            ));
            ::protobuf::reflect::MessageDescriptor::new_pb_name::<Page>(
                "Page",
                fields,
                file_descriptor_proto()
            )
        })
    }

    fn default_instance() -> &'static Page {
        static instance: ::protobuf::rt::LazyV2<Page> = ::protobuf::rt::LazyV2::INIT;
        instance.get(Page::new)
    }
}

impl ::protobuf::Clear for Page {
    fn clear(&mut self) {
        self.name.clear();
        self.content.clear();
        self.subpages.clear();
        self.unknown_fields.clear();
    }
}

impl ::std::fmt::Debug for Page {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        ::protobuf::text_format::fmt(self, f)
    }
}

impl ::protobuf::reflect::ProtobufValue for Page {
    fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
        ::protobuf::reflect::ReflectValueRef::Message(self)
    }
}

static file_descriptor_proto_data: &'static [u8] = b"\
    \n\x1egoogle/api/documentation.proto\x12\ngoogle.api\"\xd8\x01\n\rDocume\
    ntation\x12\x18\n\x07summary\x18\x01\x20\x01(\tR\x07summary\x12&\n\x05pa\
    ges\x18\x05\x20\x03(\x0b2\x10.google.api.PageR\x05pages\x123\n\x05rules\
    \x18\x03\x20\x03(\x0b2\x1d.google.api.DocumentationRuleR\x05rules\x124\n\
    \x16documentation_root_url\x18\x04\x20\x01(\tR\x14documentationRootUrl\
    \x12\x1a\n\x08overview\x18\x02\x20\x01(\tR\x08overview\"\x8a\x01\n\x11Do\
    cumentationRule\x12\x1a\n\x08selector\x18\x01\x20\x01(\tR\x08selector\
    \x12\x20\n\x0bdescription\x18\x02\x20\x01(\tR\x0bdescription\x127\n\x17d\
    eprecation_description\x18\x03\x20\x01(\tR\x16deprecationDescription\"b\
    \n\x04Page\x12\x12\n\x04name\x18\x01\x20\x01(\tR\x04name\x12\x18\n\x07co\
    ntent\x18\x02\x20\x01(\tR\x07content\x12,\n\x08subpages\x18\x03\x20\x03(\
    \x0b2\x10.google.api.PageR\x08subpagesBt\n\x0ecom.google.apiB\x12Documen\
    tationProtoP\x01ZEgoogle.golang.org/genproto/googleapis/api/serviceconfi\
    g;serviceconfig\xa2\x02\x04GAPIJ\xba/\n\x07\x12\x05\x0f\0\x9c\x01\x01\n\
    \xbe\x04\n\x01\x0c\x12\x03\x0f\0\x122\xb3\x04\x20Copyright\x202019\x20Go\
    ogle\x20LLC.\n\n\x20Licensed\x20under\x20the\x20Apache\x20License,\x20Ve\
    rsion\x202.0\x20(the\x20\"License\");\n\x20you\x20may\x20not\x20use\x20t\
    his\x20file\x20except\x20in\x20compliance\x20with\x20the\x20License.\n\
    \x20You\x20may\x20obtain\x20a\x20copy\x20of\x20the\x20License\x20at\n\n\
    \x20\x20\x20\x20\x20http://www.apache.org/licenses/LICENSE-2.0\n\n\x20Un\
    less\x20required\x20by\x20applicable\x20law\x20or\x20agreed\x20to\x20in\
    \x20writing,\x20software\n\x20distributed\x20under\x20the\x20License\x20\
    is\x20distributed\x20on\x20an\x20\"AS\x20IS\"\x20BASIS,\n\x20WITHOUT\x20\
    WARRANTIES\x20OR\x20CONDITIONS\x20OF\x20ANY\x20KIND,\x20either\x20expres\
    s\x20or\x20implied.\n\x20See\x20the\x20License\x20for\x20the\x20specific\
    \x20language\x20governing\x20permissions\x20and\n\x20limitations\x20unde\
    r\x20the\x20License.\n\n\n\x08\n\x01\x02\x12\x03\x11\0\x13\n\x08\n\x01\
    \x08\x12\x03\x13\0\\\n\t\n\x02\x08\x0b\x12\x03\x13\0\\\n\x08\n\x01\x08\
    \x12\x03\x14\0\"\n\t\n\x02\x08\n\x12\x03\x14\0\"\n\x08\n\x01\x08\x12\x03\
    \x15\03\n\t\n\x02\x08\x08\x12\x03\x15\03\n\x08\n\x01\x08\x12\x03\x16\0'\
    \n\t\n\x02\x08\x01\x12\x03\x16\0'\n\x08\n\x01\x08\x12\x03\x17\0\"\n\t\n\
    \x02\x08$\x12\x03\x17\0\"\n\xf3\x11\n\x02\x04\0\x12\x04P\0n\x01\x1a\xe6\
    \x11\x20`Documentation`\x20provides\x20the\x20information\x20for\x20desc\
    ribing\x20a\x20service.\n\n\x20Example:\n\x20<pre><code>documentation:\n\
    \x20\x20\x20summary:\x20>\n\x20\x20\x20\x20\x20The\x20Google\x20Calendar\
    \x20API\x20gives\x20access\n\x20\x20\x20\x20\x20to\x20most\x20calendar\
    \x20features.\n\x20\x20\x20pages:\n\x20\x20\x20-\x20name:\x20Overview\n\
    \x20\x20\x20\x20\x20content:\x20&#40;==\x20include\x20google/foo/overvie\
    w.md\x20==&#41;\n\x20\x20\x20-\x20name:\x20Tutorial\n\x20\x20\x20\x20\
    \x20content:\x20&#40;==\x20include\x20google/foo/tutorial.md\x20==&#41;\
    \n\x20\x20\x20\x20\x20subpages;\n\x20\x20\x20\x20\x20-\x20name:\x20Java\
    \n\x20\x20\x20\x20\x20\x20\x20content:\x20&#40;==\x20include\x20google/f\
    oo/tutorial_java.md\x20==&#41;\n\x20\x20\x20rules:\n\x20\x20\x20-\x20sel\
    ector:\x20google.calendar.Calendar.Get\n\x20\x20\x20\x20\x20description:\
    \x20>\n\x20\x20\x20\x20\x20\x20\x20...\n\x20\x20\x20-\x20selector:\x20go\
    ogle.calendar.Calendar.Put\n\x20\x20\x20\x20\x20description:\x20>\n\x20\
    \x20\x20\x20\x20\x20\x20...\n\x20</code></pre>\n\x20Documentation\x20is\
    \x20provided\x20in\x20markdown\x20syntax.\x20In\x20addition\x20to\n\x20s\
    tandard\x20markdown\x20features,\x20definition\x20lists,\x20tables\x20an\
    d\x20fenced\n\x20code\x20blocks\x20are\x20supported.\x20Section\x20heade\
    rs\x20can\x20be\x20provided\x20and\x20are\n\x20interpreted\x20relative\
    \x20to\x20the\x20section\x20nesting\x20of\x20the\x20context\x20where\n\
    \x20a\x20documentation\x20fragment\x20is\x20embedded.\n\n\x20Documentati\
    on\x20from\x20the\x20IDL\x20is\x20merged\x20with\x20documentation\x20def\
    ined\n\x20via\x20the\x20config\x20at\x20normalization\x20time,\x20where\
    \x20documentation\x20provided\n\x20by\x20config\x20rules\x20overrides\
    \x20IDL\x20provided.\n\n\x20A\x20number\x20of\x20constructs\x20specific\
    \x20to\x20the\x20API\x20platform\x20are\x20supported\n\x20in\x20document\
    ation\x20text.\n\n\x20In\x20order\x20to\x20reference\x20a\x20proto\x20el\
    ement,\x20the\x20following\n\x20notation\x20can\x20be\x20used:\n\x20<pre\
    ><code>&#91;fully.qualified.proto.name]&#91;]</code></pre>\n\x20To\x20ov\
    erride\x20the\x20display\x20text\x20used\x20for\x20the\x20link,\x20this\
    \x20can\x20be\x20used:\n\x20<pre><code>&#91;display\x20text]&#91;fully.q\
    ualified.proto.name]</code></pre>\n\x20Text\x20can\x20be\x20excluded\x20\
    from\x20doc\x20using\x20the\x20following\x20notation:\n\x20<pre><code>&#\
    40;--\x20internal\x20comment\x20--&#41;</code></pre>\n\n\x20A\x20few\x20\
    directives\x20are\x20available\x20in\x20documentation.\x20Note\x20that\n\
    \x20directives\x20must\x20appear\x20on\x20a\x20single\x20line\x20to\x20b\
    e\x20properly\n\x20identified.\x20The\x20`include`\x20directive\x20inclu\
    des\x20a\x20markdown\x20file\x20from\n\x20an\x20external\x20source:\n\
    \x20<pre><code>&#40;==\x20include\x20path/to/file\x20==&#41;</code></pre\
    >\n\x20The\x20`resource_for`\x20directive\x20marks\x20a\x20message\x20to\
    \x20be\x20the\x20resource\x20of\n\x20a\x20collection\x20in\x20REST\x20vi\
    ew.\x20If\x20it\x20is\x20not\x20specified,\x20tools\x20attempt\n\x20to\
    \x20infer\x20the\x20resource\x20from\x20the\x20operations\x20in\x20a\x20\
    collection:\n\x20<pre><code>&#40;==\x20resource_for\x20v1.shelves.books\
    \x20==&#41;</code></pre>\n\x20The\x20directive\x20`suppress_warning`\x20\
    does\x20not\x20directly\x20affect\x20documentation\n\x20and\x20is\x20doc\
    umented\x20together\x20with\x20service\x20config\x20validation.\n\n\n\n\
    \x03\x04\0\x01\x12\x03P\x08\x15\n]\n\x04\x04\0\x02\0\x12\x03S\x02\x15\
    \x1aP\x20A\x20short\x20summary\x20of\x20what\x20the\x20service\x20does.\
    \x20Can\x20only\x20be\x20provided\x20by\n\x20plain\x20text.\n\n\x0c\n\
    \x05\x04\0\x02\0\x05\x12\x03S\x02\x08\n\x0c\n\x05\x04\0\x02\0\x01\x12\
    \x03S\t\x10\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03S\x13\x14\n=\n\x04\x04\0\
    \x02\x01\x12\x03V\x02\x1a\x1a0\x20The\x20top\x20level\x20pages\x20for\
    \x20the\x20documentation\x20set.\n\n\x0c\n\x05\x04\0\x02\x01\x04\x12\x03\
    V\x02\n\n\x0c\n\x05\x04\0\x02\x01\x06\x12\x03V\x0b\x0f\n\x0c\n\x05\x04\0\
    \x02\x01\x01\x12\x03V\x10\x15\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03V\x18\
    \x19\n\x9e\x01\n\x04\x04\0\x02\x02\x12\x03[\x02'\x1a\x90\x01\x20A\x20lis\
    t\x20of\x20documentation\x20rules\x20that\x20apply\x20to\x20individual\
    \x20API\x20elements.\n\n\x20**NOTE:**\x20All\x20service\x20configuration\
    \x20rules\x20follow\x20\"last\x20one\x20wins\"\x20order.\n\n\x0c\n\x05\
    \x04\0\x02\x02\x04\x12\x03[\x02\n\n\x0c\n\x05\x04\0\x02\x02\x06\x12\x03[\
    \x0b\x1c\n\x0c\n\x05\x04\0\x02\x02\x01\x12\x03[\x1d\"\n\x0c\n\x05\x04\0\
    \x02\x02\x03\x12\x03[%&\n4\n\x04\x04\0\x02\x03\x12\x03^\x02$\x1a'\x20The\
    \x20URL\x20to\x20the\x20root\x20of\x20documentation.\n\n\x0c\n\x05\x04\0\
    \x02\x03\x05\x12\x03^\x02\x08\n\x0c\n\x05\x04\0\x02\x03\x01\x12\x03^\t\
    \x1f\n\x0c\n\x05\x04\0\x02\x03\x03\x12\x03^\"#\n\xbc\x03\n\x04\x04\0\x02\
    \x04\x12\x03m\x02\x16\x1a\xae\x03\x20Declares\x20a\x20single\x20overview\
    \x20page.\x20For\x20example:\n\x20<pre><code>documentation:\n\x20\x20\
    \x20summary:\x20...\n\x20\x20\x20overview:\x20&#40;==\x20include\x20over\
    view.md\x20==&#41;\n\x20</code></pre>\n\x20This\x20is\x20a\x20shortcut\
    \x20for\x20the\x20following\x20declaration\x20(using\x20pages\x20style):\
    \n\x20<pre><code>documentation:\n\x20\x20\x20summary:\x20...\n\x20\x20\
    \x20pages:\n\x20\x20\x20-\x20name:\x20Overview\n\x20\x20\x20\x20\x20cont\
    ent:\x20&#40;==\x20include\x20overview.md\x20==&#41;\n\x20</code></pre>\
    \n\x20Note:\x20you\x20cannot\x20specify\x20both\x20`overview`\x20field\
    \x20and\x20`pages`\x20field.\n\n\x0c\n\x05\x04\0\x02\x04\x05\x12\x03m\
    \x02\x08\n\x0c\n\x05\x04\0\x02\x04\x01\x12\x03m\t\x11\n\x0c\n\x05\x04\0\
    \x02\x04\x03\x12\x03m\x14\x15\nW\n\x02\x04\x01\x12\x05q\0\x80\x01\x01\
    \x1aJ\x20A\x20documentation\x20rule\x20provides\x20information\x20about\
    \x20individual\x20API\x20elements.\n\n\n\n\x03\x04\x01\x01\x12\x03q\x08\
    \x19\n\xb0\x03\n\x04\x04\x01\x02\0\x12\x03x\x02\x16\x1a\xa2\x03\x20The\
    \x20selector\x20is\x20a\x20comma-separated\x20list\x20of\x20patterns.\
    \x20Each\x20pattern\x20is\x20a\n\x20qualified\x20name\x20of\x20the\x20el\
    ement\x20which\x20may\x20end\x20in\x20\"*\",\x20indicating\x20a\x20wildc\
    ard.\n\x20Wildcards\x20are\x20only\x20allowed\x20at\x20the\x20end\x20and\
    \x20for\x20a\x20whole\x20component\x20of\x20the\n\x20qualified\x20name,\
    \x20i.e.\x20\"foo.*\"\x20is\x20ok,\x20but\x20not\x20\"foo.b*\"\x20or\x20\
    \"foo.*.bar\".\x20A\n\x20wildcard\x20will\x20match\x20one\x20or\x20more\
    \x20components.\x20To\x20specify\x20a\x20default\x20for\x20all\n\x20appl\
    icable\x20elements,\x20the\x20whole\x20pattern\x20\"*\"\x20is\x20used.\n\
    \n\x0c\n\x05\x04\x01\x02\0\x05\x12\x03x\x02\x08\n\x0c\n\x05\x04\x01\x02\
    \0\x01\x12\x03x\t\x11\n\x0c\n\x05\x04\x01\x02\0\x03\x12\x03x\x14\x15\n2\
    \n\x04\x04\x01\x02\x01\x12\x03{\x02\x19\x1a%\x20Description\x20of\x20the\
    \x20selected\x20API(s).\n\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03{\x02\
    \x08\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03{\t\x14\n\x0c\n\x05\x04\x01\
    \x02\x01\x03\x12\x03{\x17\x18\n\x7f\n\x04\x04\x01\x02\x02\x12\x03\x7f\
    \x02%\x1ar\x20Deprecation\x20description\x20of\x20the\x20selected\x20ele\
    ment(s).\x20It\x20can\x20be\x20provided\x20if\n\x20an\x20element\x20is\
    \x20marked\x20as\x20`deprecated`.\n\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\
    \x03\x7f\x02\x08\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03\x7f\t\x20\n\x0c\
    \n\x05\x04\x01\x02\x02\x03\x12\x03\x7f#$\n~\n\x02\x04\x02\x12\x06\x84\
    \x01\0\x9c\x01\x01\x1ap\x20Represents\x20a\x20documentation\x20page.\x20\
    A\x20page\x20can\x20contain\x20subpages\x20to\x20represent\n\x20nested\
    \x20documentation\x20set\x20structure.\n\n\x0b\n\x03\x04\x02\x01\x12\x04\
    \x84\x01\x08\x0c\n\xda\x04\n\x04\x04\x02\x02\0\x12\x04\x93\x01\x02\x12\
    \x1a\xcb\x04\x20The\x20name\x20of\x20the\x20page.\x20It\x20will\x20be\
    \x20used\x20as\x20an\x20identity\x20of\x20the\x20page\x20to\n\x20generat\
    e\x20URI\x20of\x20the\x20page,\x20text\x20of\x20the\x20link\x20to\x20thi\
    s\x20page\x20in\x20navigation,\n\x20etc.\x20The\x20full\x20page\x20name\
    \x20(start\x20from\x20the\x20root\x20page\x20name\x20to\x20this\x20page\
    \n\x20concatenated\x20with\x20`.`)\x20can\x20be\x20used\x20as\x20referen\
    ce\x20to\x20the\x20page\x20in\x20your\n\x20documentation.\x20For\x20exam\
    ple:\n\x20<pre><code>pages:\n\x20-\x20name:\x20Tutorial\n\x20\x20\x20con\
    tent:\x20&#40;==\x20include\x20tutorial.md\x20==&#41;\n\x20\x20\x20subpa\
    ges:\n\x20\x20\x20-\x20name:\x20Java\n\x20\x20\x20\x20\x20content:\x20&#\
    40;==\x20include\x20tutorial_java.md\x20==&#41;\n\x20</code></pre>\n\x20\
    You\x20can\x20reference\x20`Java`\x20page\x20using\x20Markdown\x20refere\
    nce\x20link\x20syntax:\n\x20`[Java][Tutorial.Java]`.\n\n\r\n\x05\x04\x02\
    \x02\0\x05\x12\x04\x93\x01\x02\x08\n\r\n\x05\x04\x02\x02\0\x01\x12\x04\
    \x93\x01\t\r\n\r\n\x05\x04\x02\x02\0\x03\x12\x04\x93\x01\x10\x11\n\x94\
    \x01\n\x04\x04\x02\x02\x01\x12\x04\x97\x01\x02\x15\x1a\x85\x01\x20The\
    \x20Markdown\x20content\x20of\x20the\x20page.\x20You\x20can\x20use\x20<c\
    ode>&#40;==\x20include\x20{path}\n\x20==&#41;</code>\x20to\x20include\
    \x20content\x20from\x20a\x20Markdown\x20file.\n\n\r\n\x05\x04\x02\x02\
    \x01\x05\x12\x04\x97\x01\x02\x08\n\r\n\x05\x04\x02\x02\x01\x01\x12\x04\
    \x97\x01\t\x10\n\r\n\x05\x04\x02\x02\x01\x03\x12\x04\x97\x01\x13\x14\nu\
    \n\x04\x04\x02\x02\x02\x12\x04\x9b\x01\x02\x1d\x1ag\x20Subpages\x20of\
    \x20this\x20page.\x20The\x20order\x20of\x20subpages\x20specified\x20here\
    \x20will\x20be\n\x20honored\x20in\x20the\x20generated\x20docset.\n\n\r\n\
    \x05\x04\x02\x02\x02\x04\x12\x04\x9b\x01\x02\n\n\r\n\x05\x04\x02\x02\x02\
    \x06\x12\x04\x9b\x01\x0b\x0f\n\r\n\x05\x04\x02\x02\x02\x01\x12\x04\x9b\
    \x01\x10\x18\n\r\n\x05\x04\x02\x02\x02\x03\x12\x04\x9b\x01\x1b\x1cb\x06p\
    roto3\
";

static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;

fn parse_descriptor_proto() -> ::protobuf::descriptor::FileDescriptorProto {
    ::protobuf::Message::parse_from_bytes(file_descriptor_proto_data).unwrap()
}

pub fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto {
    file_descriptor_proto_lazy.get(|| {
        parse_descriptor_proto()
    })
}