protobuf2/well_known_types/
any.rs

1// This file is generated by rust-protobuf 4.0.0-alpha.0. Do not edit
2// .proto file is parsed by protoc --rust-out=...
3// @generated
4
5// https://github.com/rust-lang/rust-clippy/issues/702
6#![allow(unknown_lints)]
7#![allow(clippy::all)]
8
9#![allow(unused_attributes)]
10#![cfg_attr(rustfmt, rustfmt::skip)]
11
12#![allow(box_pointers)]
13#![allow(dead_code)]
14#![allow(missing_docs)]
15#![allow(non_camel_case_types)]
16#![allow(non_snake_case)]
17#![allow(non_upper_case_globals)]
18#![allow(trivial_casts)]
19#![allow(unused_results)]
20#![allow(unused_mut)]
21
22//! Generated file from `google/protobuf/any.proto`
23
24#[derive(PartialEq,Clone,Default,Debug)]
25// @@protoc_insertion_point(message:google.protobuf.Any)
26pub struct Any {
27    // message fields
28    ///  A URL/resource name that uniquely identifies the type of the serialized
29    ///  protocol buffer message. This string must contain at least
30    ///  one "/" character. The last segment of the URL's path must represent
31    ///  the fully qualified name of the type (as in
32    ///  `path/google.protobuf.Duration`). The name should be in a canonical form
33    ///  (e.g., leading "." is not accepted).
34    ///
35    ///  In practice, teams usually precompile into the binary all types that they
36    ///  expect it to use in the context of Any. However, for URLs which use the
37    ///  scheme `http`, `https`, or no scheme, one can optionally set up a type
38    ///  server that maps type URLs to message definitions as follows:
39    ///
40    ///  * If no scheme is provided, `https` is assumed.
41    ///  * An HTTP GET on the URL must yield a [google.protobuf.Type][]
42    ///    value in binary format, or produce an error.
43    ///  * Applications are allowed to cache lookup results based on the
44    ///    URL, or have them precompiled into a binary to avoid any
45    ///    lookup. Therefore, binary compatibility needs to be preserved
46    ///    on changes to types. (Use versioned type names to manage
47    ///    breaking changes.)
48    ///
49    ///  Note: this functionality is not currently available in the official
50    ///  protobuf release, and it is not used for type URLs beginning with
51    ///  type.googleapis.com.
52    ///
53    ///  Schemes other than `http`, `https` (or the empty scheme) might be
54    ///  used with implementation specific semantics.
55    ///
56    // @@protoc_insertion_point(field:google.protobuf.Any.type_url)
57    pub type_url: ::std::string::String,
58    ///  Must be a valid serialized protocol buffer of the above specified type.
59    // @@protoc_insertion_point(field:google.protobuf.Any.value)
60    pub value: ::std::vec::Vec<u8>,
61    // special fields
62    // @@protoc_insertion_point(special_field:google.protobuf.Any.special_fields)
63    pub special_fields: crate::SpecialFields,
64}
65
66impl<'a> ::std::default::Default for &'a Any {
67    fn default() -> &'a Any {
68        <Any as crate::Message>::default_instance()
69    }
70}
71
72impl Any {
73    pub fn new() -> Any {
74        ::std::default::Default::default()
75    }
76
77    fn generated_message_descriptor_data() -> crate::reflect::GeneratedMessageDescriptorData {
78        let mut fields = ::std::vec::Vec::with_capacity(2);
79        let mut oneofs = ::std::vec::Vec::with_capacity(0);
80        fields.push(crate::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
81            "type_url",
82            |m: &Any| { &m.type_url },
83            |m: &mut Any| { &mut m.type_url },
84        ));
85        fields.push(crate::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
86            "value",
87            |m: &Any| { &m.value },
88            |m: &mut Any| { &mut m.value },
89        ));
90        crate::reflect::GeneratedMessageDescriptorData::new_2::<Any>(
91            "Any",
92            fields,
93            oneofs,
94        )
95    }
96}
97
98impl crate::Message for Any {
99    const NAME: &'static str = "Any";
100
101    fn is_initialized(&self) -> bool {
102        true
103    }
104
105    fn merge_from(&mut self, is: &mut crate::CodedInputStream<'_>) -> crate::Result<()> {
106        while let Some(tag) = is.read_raw_tag_or_eof()? {
107            match tag {
108                10 => {
109                    self.type_url = is.read_string()?;
110                },
111                18 => {
112                    self.value = is.read_bytes()?;
113                },
114                tag => {
115                    crate::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
116                },
117            };
118        }
119        ::std::result::Result::Ok(())
120    }
121
122    // Compute sizes of nested messages
123    #[allow(unused_variables)]
124    fn compute_size(&self) -> u64 {
125        let mut my_size = 0;
126        if !self.type_url.is_empty() {
127            my_size += crate::rt::string_size(1, &self.type_url);
128        }
129        if !self.value.is_empty() {
130            my_size += crate::rt::bytes_size(2, &self.value);
131        }
132        my_size += crate::rt::unknown_fields_size(self.special_fields.unknown_fields());
133        self.special_fields.cached_size().set(my_size as u32);
134        my_size
135    }
136
137    fn write_to_with_cached_sizes(&self, os: &mut crate::CodedOutputStream<'_>) -> crate::Result<()> {
138        if !self.type_url.is_empty() {
139            os.write_string(1, &self.type_url)?;
140        }
141        if !self.value.is_empty() {
142            os.write_bytes(2, &self.value)?;
143        }
144        os.write_unknown_fields(self.special_fields.unknown_fields())?;
145        ::std::result::Result::Ok(())
146    }
147
148    fn special_fields(&self) -> &crate::SpecialFields {
149        &self.special_fields
150    }
151
152    fn mut_special_fields(&mut self) -> &mut crate::SpecialFields {
153        &mut self.special_fields
154    }
155
156    fn new() -> Any {
157        Any::new()
158    }
159
160    fn clear(&mut self) {
161        self.type_url.clear();
162        self.value.clear();
163        self.special_fields.clear();
164    }
165
166    fn default_instance() -> &'static Any {
167        static instance: Any = Any {
168            type_url: ::std::string::String::new(),
169            value: ::std::vec::Vec::new(),
170            special_fields: crate::SpecialFields::new(),
171        };
172        &instance
173    }
174}
175
176impl crate::MessageFull for Any {
177    fn descriptor() -> crate::reflect::MessageDescriptor {
178        static descriptor: crate::rt::Lazy<crate::reflect::MessageDescriptor> = crate::rt::Lazy::new();
179        descriptor.get(|| file_descriptor().message_by_package_relative_name("Any").unwrap()).clone()
180    }
181}
182
183impl ::std::fmt::Display for Any {
184    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
185        crate::text_format::fmt(self, f)
186    }
187}
188
189impl crate::reflect::ProtobufValue for Any {
190    type RuntimeType = crate::reflect::rt::RuntimeTypeMessage<Self>;
191}
192
193static file_descriptor_proto_data: &'static [u8] = b"\
194    \n\x19google/protobuf/any.proto\x12\x0fgoogle.protobuf\"6\n\x03Any\x12\
195    \x19\n\x08type_url\x18\x01\x20\x01(\tR\x07typeUrl\x12\x14\n\x05value\x18\
196    \x02\x20\x01(\x0cR\x05valueBv\n\x13com.google.protobufB\x08AnyProtoP\x01\
197    Z,google.golang.org/protobuf/types/known/anypb\xa2\x02\x03GPB\xaa\x02\
198    \x1eGoogle.Protobuf.WellKnownTypesJ\xf9*\n\x07\x12\x05\x1e\0\x9d\x01\x01\
199    \n\xcc\x0c\n\x01\x0c\x12\x03\x1e\0\x122\xc1\x0c\x20Protocol\x20Buffers\
200    \x20-\x20Google's\x20data\x20interchange\x20format\n\x20Copyright\x20200\
201    8\x20Google\x20Inc.\x20\x20All\x20rights\x20reserved.\n\x20https://devel\
202    opers.google.com/protocol-buffers/\n\n\x20Redistribution\x20and\x20use\
203    \x20in\x20source\x20and\x20binary\x20forms,\x20with\x20or\x20without\n\
204    \x20modification,\x20are\x20permitted\x20provided\x20that\x20the\x20foll\
205    owing\x20conditions\x20are\n\x20met:\n\n\x20\x20\x20\x20\x20*\x20Redistr\
206    ibutions\x20of\x20source\x20code\x20must\x20retain\x20the\x20above\x20co\
207    pyright\n\x20notice,\x20this\x20list\x20of\x20conditions\x20and\x20the\
208    \x20following\x20disclaimer.\n\x20\x20\x20\x20\x20*\x20Redistributions\
209    \x20in\x20binary\x20form\x20must\x20reproduce\x20the\x20above\n\x20copyr\
210    ight\x20notice,\x20this\x20list\x20of\x20conditions\x20and\x20the\x20fol\
211    lowing\x20disclaimer\n\x20in\x20the\x20documentation\x20and/or\x20other\
212    \x20materials\x20provided\x20with\x20the\n\x20distribution.\n\x20\x20\
213    \x20\x20\x20*\x20Neither\x20the\x20name\x20of\x20Google\x20Inc.\x20nor\
214    \x20the\x20names\x20of\x20its\n\x20contributors\x20may\x20be\x20used\x20\
215    to\x20endorse\x20or\x20promote\x20products\x20derived\x20from\n\x20this\
216    \x20software\x20without\x20specific\x20prior\x20written\x20permission.\n\
217    \n\x20THIS\x20SOFTWARE\x20IS\x20PROVIDED\x20BY\x20THE\x20COPYRIGHT\x20HO\
218    LDERS\x20AND\x20CONTRIBUTORS\n\x20\"AS\x20IS\"\x20AND\x20ANY\x20EXPRESS\
219    \x20OR\x20IMPLIED\x20WARRANTIES,\x20INCLUDING,\x20BUT\x20NOT\n\x20LIMITE\
220    D\x20TO,\x20THE\x20IMPLIED\x20WARRANTIES\x20OF\x20MERCHANTABILITY\x20AND\
221    \x20FITNESS\x20FOR\n\x20A\x20PARTICULAR\x20PURPOSE\x20ARE\x20DISCLAIMED.\
222    \x20IN\x20NO\x20EVENT\x20SHALL\x20THE\x20COPYRIGHT\n\x20OWNER\x20OR\x20C\
223    ONTRIBUTORS\x20BE\x20LIABLE\x20FOR\x20ANY\x20DIRECT,\x20INDIRECT,\x20INC\
224    IDENTAL,\n\x20SPECIAL,\x20EXEMPLARY,\x20OR\x20CONSEQUENTIAL\x20DAMAGES\
225    \x20(INCLUDING,\x20BUT\x20NOT\n\x20LIMITED\x20TO,\x20PROCUREMENT\x20OF\
226    \x20SUBSTITUTE\x20GOODS\x20OR\x20SERVICES;\x20LOSS\x20OF\x20USE,\n\x20DA\
227    TA,\x20OR\x20PROFITS;\x20OR\x20BUSINESS\x20INTERRUPTION)\x20HOWEVER\x20C\
228    AUSED\x20AND\x20ON\x20ANY\n\x20THEORY\x20OF\x20LIABILITY,\x20WHETHER\x20\
229    IN\x20CONTRACT,\x20STRICT\x20LIABILITY,\x20OR\x20TORT\n\x20(INCLUDING\
230    \x20NEGLIGENCE\x20OR\x20OTHERWISE)\x20ARISING\x20IN\x20ANY\x20WAY\x20OUT\
231    \x20OF\x20THE\x20USE\n\x20OF\x20THIS\x20SOFTWARE,\x20EVEN\x20IF\x20ADVIS\
232    ED\x20OF\x20THE\x20POSSIBILITY\x20OF\x20SUCH\x20DAMAGE.\n\n\x08\n\x01\
233    \x02\x12\x03\x20\0\x18\n\x08\n\x01\x08\x12\x03\"\0;\n\t\n\x02\x08%\x12\
234    \x03\"\0;\n\x08\n\x01\x08\x12\x03#\0C\n\t\n\x02\x08\x0b\x12\x03#\0C\n\
235    \x08\n\x01\x08\x12\x03$\0,\n\t\n\x02\x08\x01\x12\x03$\0,\n\x08\n\x01\x08\
236    \x12\x03%\0)\n\t\n\x02\x08\x08\x12\x03%\0)\n\x08\n\x01\x08\x12\x03&\0\"\
237    \n\t\n\x02\x08\n\x12\x03&\0\"\n\x08\n\x01\x08\x12\x03'\0!\n\t\n\x02\x08$\
238    \x12\x03'\0!\n\xfd\x10\n\x02\x04\0\x12\x05|\0\x9d\x01\x01\x1a\xef\x10\
239    \x20`Any`\x20contains\x20an\x20arbitrary\x20serialized\x20protocol\x20bu\
240    ffer\x20message\x20along\x20with\x20a\n\x20URL\x20that\x20describes\x20t\
241    he\x20type\x20of\x20the\x20serialized\x20message.\n\n\x20Protobuf\x20lib\
242    rary\x20provides\x20support\x20to\x20pack/unpack\x20Any\x20values\x20in\
243    \x20the\x20form\n\x20of\x20utility\x20functions\x20or\x20additional\x20g\
244    enerated\x20methods\x20of\x20the\x20Any\x20type.\n\n\x20Example\x201:\
245    \x20Pack\x20and\x20unpack\x20a\x20message\x20in\x20C++.\n\n\x20\x20\x20\
246    \x20\x20Foo\x20foo\x20=\x20...;\n\x20\x20\x20\x20\x20Any\x20any;\n\x20\
247    \x20\x20\x20\x20any.PackFrom(foo);\n\x20\x20\x20\x20\x20...\n\x20\x20\
248    \x20\x20\x20if\x20(any.UnpackTo(&foo))\x20{\n\x20\x20\x20\x20\x20\x20\
249    \x20...\n\x20\x20\x20\x20\x20}\n\n\x20Example\x202:\x20Pack\x20and\x20un\
250    pack\x20a\x20message\x20in\x20Java.\n\n\x20\x20\x20\x20\x20Foo\x20foo\
251    \x20=\x20...;\n\x20\x20\x20\x20\x20Any\x20any\x20=\x20Any.pack(foo);\n\
252    \x20\x20\x20\x20\x20...\n\x20\x20\x20\x20\x20if\x20(any.is(Foo.class))\
253    \x20{\n\x20\x20\x20\x20\x20\x20\x20foo\x20=\x20any.unpack(Foo.class);\n\
254    \x20\x20\x20\x20\x20}\n\n\x20\x20Example\x203:\x20Pack\x20and\x20unpack\
255    \x20a\x20message\x20in\x20Python.\n\n\x20\x20\x20\x20\x20foo\x20=\x20Foo\
256    (...)\n\x20\x20\x20\x20\x20any\x20=\x20Any()\n\x20\x20\x20\x20\x20any.Pa\
257    ck(foo)\n\x20\x20\x20\x20\x20...\n\x20\x20\x20\x20\x20if\x20any.Is(Foo.D\
258    ESCRIPTOR):\n\x20\x20\x20\x20\x20\x20\x20any.Unpack(foo)\n\x20\x20\x20\
259    \x20\x20\x20\x20...\n\n\x20\x20Example\x204:\x20Pack\x20and\x20unpack\
260    \x20a\x20message\x20in\x20Go\n\n\x20\x20\x20\x20\x20\x20foo\x20:=\x20&pb\
261    .Foo{...}\n\x20\x20\x20\x20\x20\x20any,\x20err\x20:=\x20anypb.New(foo)\n\
262    \x20\x20\x20\x20\x20\x20if\x20err\x20!=\x20nil\x20{\n\x20\x20\x20\x20\
263    \x20\x20\x20\x20...\n\x20\x20\x20\x20\x20\x20}\n\x20\x20\x20\x20\x20\x20\
264    ...\n\x20\x20\x20\x20\x20\x20foo\x20:=\x20&pb.Foo{}\n\x20\x20\x20\x20\
265    \x20\x20if\x20err\x20:=\x20any.UnmarshalTo(foo);\x20err\x20!=\x20nil\x20\
266    {\n\x20\x20\x20\x20\x20\x20\x20\x20...\n\x20\x20\x20\x20\x20\x20}\n\n\
267    \x20The\x20pack\x20methods\x20provided\x20by\x20protobuf\x20library\x20w\
268    ill\x20by\x20default\x20use\n\x20'type.googleapis.com/full.type.name'\
269    \x20as\x20the\x20type\x20URL\x20and\x20the\x20unpack\n\x20methods\x20onl\
270    y\x20use\x20the\x20fully\x20qualified\x20type\x20name\x20after\x20the\
271    \x20last\x20'/'\n\x20in\x20the\x20type\x20URL,\x20for\x20example\x20\"fo\
272    o.bar.com/x/y.z\"\x20will\x20yield\x20type\n\x20name\x20\"y.z\".\n\n\n\
273    \x20JSON\n\x20====\n\x20The\x20JSON\x20representation\x20of\x20an\x20`An\
274    y`\x20value\x20uses\x20the\x20regular\n\x20representation\x20of\x20the\
275    \x20deserialized,\x20embedded\x20message,\x20with\x20an\n\x20additional\
276    \x20field\x20`@type`\x20which\x20contains\x20the\x20type\x20URL.\x20Exam\
277    ple:\n\n\x20\x20\x20\x20\x20package\x20google.profile;\n\x20\x20\x20\x20\
278    \x20message\x20Person\x20{\n\x20\x20\x20\x20\x20\x20\x20string\x20first_\
279    name\x20=\x201;\n\x20\x20\x20\x20\x20\x20\x20string\x20last_name\x20=\
280    \x202;\n\x20\x20\x20\x20\x20}\n\n\x20\x20\x20\x20\x20{\n\x20\x20\x20\x20\
281    \x20\x20\x20\"@type\":\x20\"type.googleapis.com/google.profile.Person\",\
282    \n\x20\x20\x20\x20\x20\x20\x20\"firstName\":\x20<string>,\n\x20\x20\x20\
283    \x20\x20\x20\x20\"lastName\":\x20<string>\n\x20\x20\x20\x20\x20}\n\n\x20\
284    If\x20the\x20embedded\x20message\x20type\x20is\x20well-known\x20and\x20h\
285    as\x20a\x20custom\x20JSON\n\x20representation,\x20that\x20representation\
286    \x20will\x20be\x20embedded\x20adding\x20a\x20field\n\x20`value`\x20which\
287    \x20holds\x20the\x20custom\x20JSON\x20in\x20addition\x20to\x20the\x20`@t\
288    ype`\n\x20field.\x20Example\x20(for\x20message\x20[google.protobuf.Durat\
289    ion][]):\n\n\x20\x20\x20\x20\x20{\n\x20\x20\x20\x20\x20\x20\x20\"@type\"\
290    :\x20\"type.googleapis.com/google.protobuf.Duration\",\n\x20\x20\x20\x20\
291    \x20\x20\x20\"value\":\x20\"1.212s\"\n\x20\x20\x20\x20\x20}\n\n\n\n\n\
292    \x03\x04\0\x01\x12\x03|\x08\x0b\n\xd7\n\n\x04\x04\0\x02\0\x12\x04\x99\
293    \x01\x02\x16\x1a\xc8\n\x20A\x20URL/resource\x20name\x20that\x20uniquely\
294    \x20identifies\x20the\x20type\x20of\x20the\x20serialized\n\x20protocol\
295    \x20buffer\x20message.\x20This\x20string\x20must\x20contain\x20at\x20lea\
296    st\n\x20one\x20\"/\"\x20character.\x20The\x20last\x20segment\x20of\x20th\
297    e\x20URL's\x20path\x20must\x20represent\n\x20the\x20fully\x20qualified\
298    \x20name\x20of\x20the\x20type\x20(as\x20in\n\x20`path/google.protobuf.Du\
299    ration`).\x20The\x20name\x20should\x20be\x20in\x20a\x20canonical\x20form\
300    \n\x20(e.g.,\x20leading\x20\".\"\x20is\x20not\x20accepted).\n\n\x20In\
301    \x20practice,\x20teams\x20usually\x20precompile\x20into\x20the\x20binary\
302    \x20all\x20types\x20that\x20they\n\x20expect\x20it\x20to\x20use\x20in\
303    \x20the\x20context\x20of\x20Any.\x20However,\x20for\x20URLs\x20which\x20\
304    use\x20the\n\x20scheme\x20`http`,\x20`https`,\x20or\x20no\x20scheme,\x20\
305    one\x20can\x20optionally\x20set\x20up\x20a\x20type\n\x20server\x20that\
306    \x20maps\x20type\x20URLs\x20to\x20message\x20definitions\x20as\x20follow\
307    s:\n\n\x20*\x20If\x20no\x20scheme\x20is\x20provided,\x20`https`\x20is\
308    \x20assumed.\n\x20*\x20An\x20HTTP\x20GET\x20on\x20the\x20URL\x20must\x20\
309    yield\x20a\x20[google.protobuf.Type][]\n\x20\x20\x20value\x20in\x20binar\
310    y\x20format,\x20or\x20produce\x20an\x20error.\n\x20*\x20Applications\x20\
311    are\x20allowed\x20to\x20cache\x20lookup\x20results\x20based\x20on\x20the\
312    \n\x20\x20\x20URL,\x20or\x20have\x20them\x20precompiled\x20into\x20a\x20\
313    binary\x20to\x20avoid\x20any\n\x20\x20\x20lookup.\x20Therefore,\x20binar\
314    y\x20compatibility\x20needs\x20to\x20be\x20preserved\n\x20\x20\x20on\x20\
315    changes\x20to\x20types.\x20(Use\x20versioned\x20type\x20names\x20to\x20m\
316    anage\n\x20\x20\x20breaking\x20changes.)\n\n\x20Note:\x20this\x20functio\
317    nality\x20is\x20not\x20currently\x20available\x20in\x20the\x20official\n\
318    \x20protobuf\x20release,\x20and\x20it\x20is\x20not\x20used\x20for\x20typ\
319    e\x20URLs\x20beginning\x20with\n\x20type.googleapis.com.\n\n\x20Schemes\
320    \x20other\x20than\x20`http`,\x20`https`\x20(or\x20the\x20empty\x20scheme\
321    )\x20might\x20be\n\x20used\x20with\x20implementation\x20specific\x20sema\
322    ntics.\n\n\n\r\n\x05\x04\0\x02\0\x05\x12\x04\x99\x01\x02\x08\n\r\n\x05\
323    \x04\0\x02\0\x01\x12\x04\x99\x01\t\x11\n\r\n\x05\x04\0\x02\0\x03\x12\x04\
324    \x99\x01\x14\x15\nW\n\x04\x04\0\x02\x01\x12\x04\x9c\x01\x02\x12\x1aI\x20\
325    Must\x20be\x20a\x20valid\x20serialized\x20protocol\x20buffer\x20of\x20th\
326    e\x20above\x20specified\x20type.\n\n\r\n\x05\x04\0\x02\x01\x05\x12\x04\
327    \x9c\x01\x02\x07\n\r\n\x05\x04\0\x02\x01\x01\x12\x04\x9c\x01\x08\r\n\r\n\
328    \x05\x04\0\x02\x01\x03\x12\x04\x9c\x01\x10\x11b\x06proto3\
329";
330
331/// `FileDescriptorProto` object which was a source for this generated file
332fn file_descriptor_proto() -> &'static crate::descriptor::FileDescriptorProto {
333    static file_descriptor_proto_lazy: crate::rt::Lazy<crate::descriptor::FileDescriptorProto> = crate::rt::Lazy::new();
334    file_descriptor_proto_lazy.get(|| {
335        crate::Message::parse_from_bytes(file_descriptor_proto_data).unwrap()
336    })
337}
338
339/// `FileDescriptor` object which allows dynamic access to files
340pub fn file_descriptor() -> &'static crate::reflect::FileDescriptor {
341    static generated_file_descriptor_lazy: crate::rt::Lazy<crate::reflect::GeneratedFileDescriptor> = crate::rt::Lazy::new();
342    static file_descriptor: crate::rt::Lazy<crate::reflect::FileDescriptor> = crate::rt::Lazy::new();
343    file_descriptor.get(|| {
344        let generated_file_descriptor = generated_file_descriptor_lazy.get(|| {
345            let mut deps = ::std::vec::Vec::with_capacity(0);
346            let mut messages = ::std::vec::Vec::with_capacity(1);
347            messages.push(Any::generated_message_descriptor_data());
348            let mut enums = ::std::vec::Vec::with_capacity(0);
349            crate::reflect::GeneratedFileDescriptor::new_generated(
350                file_descriptor_proto(),
351                deps,
352                messages,
353                enums,
354            )
355        });
356        crate::reflect::FileDescriptor::new_generated_2(generated_file_descriptor)
357    })
358}