|
@@ -243,7 +243,7 @@ impl ::protobuf::reflect::ProtobufValue for UserPreferences {
|
|
|
pub struct AppearanceSettings {
|
|
|
// message fields
|
|
|
pub theme: ::std::string::String,
|
|
|
- pub language: ::std::string::String,
|
|
|
+ pub locale: ::protobuf::SingularPtrField<LocaleSettings>,
|
|
|
pub reset_as_default: bool,
|
|
|
// special fields
|
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
@@ -287,30 +287,37 @@ impl AppearanceSettings {
|
|
|
::std::mem::replace(&mut self.theme, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- // string language = 2;
|
|
|
+ // .LocaleSettings locale = 2;
|
|
|
|
|
|
|
|
|
- pub fn get_language(&self) -> &str {
|
|
|
- &self.language
|
|
|
+ pub fn get_locale(&self) -> &LocaleSettings {
|
|
|
+ self.locale.as_ref().unwrap_or_else(|| <LocaleSettings as ::protobuf::Message>::default_instance())
|
|
|
}
|
|
|
- pub fn clear_language(&mut self) {
|
|
|
- self.language.clear();
|
|
|
+ pub fn clear_locale(&mut self) {
|
|
|
+ self.locale.clear();
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn has_locale(&self) -> bool {
|
|
|
+ self.locale.is_some()
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_language(&mut self, v: ::std::string::String) {
|
|
|
- self.language = v;
|
|
|
+ pub fn set_locale(&mut self, v: LocaleSettings) {
|
|
|
+ self.locale = ::protobuf::SingularPtrField::some(v);
|
|
|
}
|
|
|
|
|
|
// Mutable pointer to the field.
|
|
|
// If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_language(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.language
|
|
|
+ pub fn mut_locale(&mut self) -> &mut LocaleSettings {
|
|
|
+ if self.locale.is_none() {
|
|
|
+ self.locale.set_default();
|
|
|
+ }
|
|
|
+ self.locale.as_mut().unwrap()
|
|
|
}
|
|
|
|
|
|
// Take field
|
|
|
- pub fn take_language(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.language, ::std::string::String::new())
|
|
|
+ pub fn take_locale(&mut self) -> LocaleSettings {
|
|
|
+ self.locale.take().unwrap_or_else(|| LocaleSettings::new())
|
|
|
}
|
|
|
|
|
|
// bool reset_as_default = 3;
|
|
@@ -331,6 +338,11 @@ impl AppearanceSettings {
|
|
|
|
|
|
impl ::protobuf::Message for AppearanceSettings {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
+ for v in &self.locale {
|
|
|
+ if !v.is_initialized() {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ };
|
|
|
true
|
|
|
}
|
|
|
|
|
@@ -342,7 +354,7 @@ impl ::protobuf::Message for AppearanceSettings {
|
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.theme)?;
|
|
|
},
|
|
|
2 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.language)?;
|
|
|
+ ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.locale)?;
|
|
|
},
|
|
|
3 => {
|
|
|
if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
@@ -366,8 +378,9 @@ impl ::protobuf::Message for AppearanceSettings {
|
|
|
if !self.theme.is_empty() {
|
|
|
my_size += ::protobuf::rt::string_size(1, &self.theme);
|
|
|
}
|
|
|
- if !self.language.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(2, &self.language);
|
|
|
+ if let Some(ref v) = self.locale.as_ref() {
|
|
|
+ let len = v.compute_size();
|
|
|
+ my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
}
|
|
|
if self.reset_as_default != false {
|
|
|
my_size += 2;
|
|
@@ -381,8 +394,10 @@ impl ::protobuf::Message for AppearanceSettings {
|
|
|
if !self.theme.is_empty() {
|
|
|
os.write_string(1, &self.theme)?;
|
|
|
}
|
|
|
- if !self.language.is_empty() {
|
|
|
- os.write_string(2, &self.language)?;
|
|
|
+ if let Some(ref v) = self.locale.as_ref() {
|
|
|
+ os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
+ os.write_raw_varint32(v.get_cached_size())?;
|
|
|
+ v.write_to_with_cached_sizes(os)?;
|
|
|
}
|
|
|
if self.reset_as_default != false {
|
|
|
os.write_bool(3, self.reset_as_default)?;
|
|
@@ -430,10 +445,10 @@ impl ::protobuf::Message for AppearanceSettings {
|
|
|
|m: &AppearanceSettings| { &m.theme },
|
|
|
|m: &mut AppearanceSettings| { &mut m.theme },
|
|
|
));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "language",
|
|
|
- |m: &AppearanceSettings| { &m.language },
|
|
|
- |m: &mut AppearanceSettings| { &mut m.language },
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<LocaleSettings>>(
|
|
|
+ "locale",
|
|
|
+ |m: &AppearanceSettings| { &m.locale },
|
|
|
+ |m: &mut AppearanceSettings| { &mut m.locale },
|
|
|
));
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBool>(
|
|
|
"reset_as_default",
|
|
@@ -457,7 +472,7 @@ impl ::protobuf::Message for AppearanceSettings {
|
|
|
impl ::protobuf::Clear for AppearanceSettings {
|
|
|
fn clear(&mut self) {
|
|
|
self.theme.clear();
|
|
|
- self.language.clear();
|
|
|
+ self.locale.clear();
|
|
|
self.reset_as_default = false;
|
|
|
self.unknown_fields.clear();
|
|
|
}
|
|
@@ -475,30 +490,239 @@ impl ::protobuf::reflect::ProtobufValue for AppearanceSettings {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+#[derive(PartialEq,Clone,Default)]
|
|
|
+pub struct LocaleSettings {
|
|
|
+ // message fields
|
|
|
+ pub language_code: ::std::string::String,
|
|
|
+ pub country_code: ::std::string::String,
|
|
|
+ // special fields
|
|
|
+ pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
+ pub cached_size: ::protobuf::CachedSize,
|
|
|
+}
|
|
|
+
|
|
|
+impl<'a> ::std::default::Default for &'a LocaleSettings {
|
|
|
+ fn default() -> &'a LocaleSettings {
|
|
|
+ <LocaleSettings as ::protobuf::Message>::default_instance()
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl LocaleSettings {
|
|
|
+ pub fn new() -> LocaleSettings {
|
|
|
+ ::std::default::Default::default()
|
|
|
+ }
|
|
|
+
|
|
|
+ // string language_code = 1;
|
|
|
+
|
|
|
+
|
|
|
+ pub fn get_language_code(&self) -> &str {
|
|
|
+ &self.language_code
|
|
|
+ }
|
|
|
+ pub fn clear_language_code(&mut self) {
|
|
|
+ self.language_code.clear();
|
|
|
+ }
|
|
|
+
|
|
|
+ // Param is passed by value, moved
|
|
|
+ pub fn set_language_code(&mut self, v: ::std::string::String) {
|
|
|
+ self.language_code = v;
|
|
|
+ }
|
|
|
+
|
|
|
+ // Mutable pointer to the field.
|
|
|
+ // If field is not initialized, it is initialized with default value first.
|
|
|
+ pub fn mut_language_code(&mut self) -> &mut ::std::string::String {
|
|
|
+ &mut self.language_code
|
|
|
+ }
|
|
|
+
|
|
|
+ // Take field
|
|
|
+ pub fn take_language_code(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.language_code, ::std::string::String::new())
|
|
|
+ }
|
|
|
+
|
|
|
+ // string country_code = 2;
|
|
|
+
|
|
|
+
|
|
|
+ pub fn get_country_code(&self) -> &str {
|
|
|
+ &self.country_code
|
|
|
+ }
|
|
|
+ pub fn clear_country_code(&mut self) {
|
|
|
+ self.country_code.clear();
|
|
|
+ }
|
|
|
+
|
|
|
+ // Param is passed by value, moved
|
|
|
+ pub fn set_country_code(&mut self, v: ::std::string::String) {
|
|
|
+ self.country_code = v;
|
|
|
+ }
|
|
|
+
|
|
|
+ // Mutable pointer to the field.
|
|
|
+ // If field is not initialized, it is initialized with default value first.
|
|
|
+ pub fn mut_country_code(&mut self) -> &mut ::std::string::String {
|
|
|
+ &mut self.country_code
|
|
|
+ }
|
|
|
+
|
|
|
+ // Take field
|
|
|
+ pub fn take_country_code(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.country_code, ::std::string::String::new())
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl ::protobuf::Message for LocaleSettings {
|
|
|
+ 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.language_code)?;
|
|
|
+ },
|
|
|
+ 2 => {
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.country_code)?;
|
|
|
+ },
|
|
|
+ _ => {
|
|
|
+ ::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.language_code.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::string_size(1, &self.language_code);
|
|
|
+ }
|
|
|
+ if !self.country_code.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::string_size(2, &self.country_code);
|
|
|
+ }
|
|
|
+ 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.language_code.is_empty() {
|
|
|
+ os.write_string(1, &self.language_code)?;
|
|
|
+ }
|
|
|
+ if !self.country_code.is_empty() {
|
|
|
+ os.write_string(2, &self.country_code)?;
|
|
|
+ }
|
|
|
+ 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() -> LocaleSettings {
|
|
|
+ LocaleSettings::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>(
|
|
|
+ "language_code",
|
|
|
+ |m: &LocaleSettings| { &m.language_code },
|
|
|
+ |m: &mut LocaleSettings| { &mut m.language_code },
|
|
|
+ ));
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
+ "country_code",
|
|
|
+ |m: &LocaleSettings| { &m.country_code },
|
|
|
+ |m: &mut LocaleSettings| { &mut m.country_code },
|
|
|
+ ));
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<LocaleSettings>(
|
|
|
+ "LocaleSettings",
|
|
|
+ fields,
|
|
|
+ file_descriptor_proto()
|
|
|
+ )
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ fn default_instance() -> &'static LocaleSettings {
|
|
|
+ static instance: ::protobuf::rt::LazyV2<LocaleSettings> = ::protobuf::rt::LazyV2::INIT;
|
|
|
+ instance.get(LocaleSettings::new)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl ::protobuf::Clear for LocaleSettings {
|
|
|
+ fn clear(&mut self) {
|
|
|
+ self.language_code.clear();
|
|
|
+ self.country_code.clear();
|
|
|
+ self.unknown_fields.clear();
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl ::std::fmt::Debug for LocaleSettings {
|
|
|
+ fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
+ ::protobuf::text_format::fmt(self, f)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl ::protobuf::reflect::ProtobufValue for LocaleSettings {
|
|
|
+ fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
+ ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
|
\n\x12user_setting.proto\"n\n\x0fUserPreferences\x12\x17\n\x07user_id\
|
|
|
\x18\x01\x20\x01(\tR\x06userId\x12B\n\x12appearance_setting\x18\x02\x20\
|
|
|
- \x01(\x0b2\x13.AppearanceSettingsR\x11appearanceSetting\"p\n\x12Appearan\
|
|
|
- ceSettings\x12\x14\n\x05theme\x18\x01\x20\x01(\tR\x05theme\x12\x1a\n\x08\
|
|
|
- language\x18\x02\x20\x01(\tR\x08language\x12(\n\x10reset_as_default\x18\
|
|
|
- \x03\x20\x01(\x08R\x0eresetAsDefaultJ\xd5\x02\n\x06\x12\x04\0\0\n\x01\n\
|
|
|
- \x08\n\x01\x0c\x12\x03\0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\x05\x01\n\n\
|
|
|
- \n\x03\x04\0\x01\x12\x03\x02\x08\x17\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\
|
|
|
- \x04\x17\n\x0c\n\x05\x04\0\x02\0\x05\x12\x03\x03\x04\n\n\x0c\n\x05\x04\0\
|
|
|
- \x02\0\x01\x12\x03\x03\x0b\x12\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\
|
|
|
- \x15\x16\n\x0b\n\x04\x04\0\x02\x01\x12\x03\x04\x04.\n\x0c\n\x05\x04\0\
|
|
|
- \x02\x01\x06\x12\x03\x04\x04\x16\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\
|
|
|
- \x04\x17)\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\x04,-\n\n\n\x02\x04\x01\
|
|
|
- \x12\x04\x06\0\n\x01\n\n\n\x03\x04\x01\x01\x12\x03\x06\x08\x1a\n\x0b\n\
|
|
|
- \x04\x04\x01\x02\0\x12\x03\x07\x04\x15\n\x0c\n\x05\x04\x01\x02\0\x05\x12\
|
|
|
- \x03\x07\x04\n\n\x0c\n\x05\x04\x01\x02\0\x01\x12\x03\x07\x0b\x10\n\x0c\n\
|
|
|
- \x05\x04\x01\x02\0\x03\x12\x03\x07\x13\x14\n\x0b\n\x04\x04\x01\x02\x01\
|
|
|
- \x12\x03\x08\x04\x18\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03\x08\x04\n\n\
|
|
|
- \x0c\n\x05\x04\x01\x02\x01\x01\x12\x03\x08\x0b\x13\n\x0c\n\x05\x04\x01\
|
|
|
- \x02\x01\x03\x12\x03\x08\x16\x17\n\x0b\n\x04\x04\x01\x02\x02\x12\x03\t\
|
|
|
- \x04\x1e\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03\t\x04\x08\n\x0c\n\x05\
|
|
|
- \x04\x01\x02\x02\x01\x12\x03\t\t\x19\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\
|
|
|
- \x03\t\x1c\x1db\x06proto3\
|
|
|
+ \x01(\x0b2\x13.AppearanceSettingsR\x11appearanceSetting\"}\n\x12Appearan\
|
|
|
+ ceSettings\x12\x14\n\x05theme\x18\x01\x20\x01(\tR\x05theme\x12'\n\x06loc\
|
|
|
+ ale\x18\x02\x20\x01(\x0b2\x0f.LocaleSettingsR\x06locale\x12(\n\x10reset_\
|
|
|
+ as_default\x18\x03\x20\x01(\x08R\x0eresetAsDefault\"X\n\x0eLocaleSetting\
|
|
|
+ s\x12#\n\rlanguage_code\x18\x01\x20\x01(\tR\x0clanguageCode\x12!\n\x0cco\
|
|
|
+ untry_code\x18\x02\x20\x01(\tR\x0bcountryCodeJ\xdb\x03\n\x06\x12\x04\0\0\
|
|
|
+ \x0e\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\
|
|
|
+ \x05\x01\n\n\n\x03\x04\0\x01\x12\x03\x02\x08\x17\n\x0b\n\x04\x04\0\x02\0\
|
|
|
+ \x12\x03\x03\x04\x17\n\x0c\n\x05\x04\0\x02\0\x05\x12\x03\x03\x04\n\n\x0c\
|
|
|
+ \n\x05\x04\0\x02\0\x01\x12\x03\x03\x0b\x12\n\x0c\n\x05\x04\0\x02\0\x03\
|
|
|
+ \x12\x03\x03\x15\x16\n\x0b\n\x04\x04\0\x02\x01\x12\x03\x04\x04.\n\x0c\n\
|
|
|
+ \x05\x04\0\x02\x01\x06\x12\x03\x04\x04\x16\n\x0c\n\x05\x04\0\x02\x01\x01\
|
|
|
+ \x12\x03\x04\x17)\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\x04,-\n\n\n\x02\
|
|
|
+ \x04\x01\x12\x04\x06\0\n\x01\n\n\n\x03\x04\x01\x01\x12\x03\x06\x08\x1a\n\
|
|
|
+ \x0b\n\x04\x04\x01\x02\0\x12\x03\x07\x04\x15\n\x0c\n\x05\x04\x01\x02\0\
|
|
|
+ \x05\x12\x03\x07\x04\n\n\x0c\n\x05\x04\x01\x02\0\x01\x12\x03\x07\x0b\x10\
|
|
|
+ \n\x0c\n\x05\x04\x01\x02\0\x03\x12\x03\x07\x13\x14\n\x0b\n\x04\x04\x01\
|
|
|
+ \x02\x01\x12\x03\x08\x04\x1e\n\x0c\n\x05\x04\x01\x02\x01\x06\x12\x03\x08\
|
|
|
+ \x04\x12\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03\x08\x13\x19\n\x0c\n\x05\
|
|
|
+ \x04\x01\x02\x01\x03\x12\x03\x08\x1c\x1d\n\x0b\n\x04\x04\x01\x02\x02\x12\
|
|
|
+ \x03\t\x04\x1e\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03\t\x04\x08\n\x0c\n\
|
|
|
+ \x05\x04\x01\x02\x02\x01\x12\x03\t\t\x19\n\x0c\n\x05\x04\x01\x02\x02\x03\
|
|
|
+ \x12\x03\t\x1c\x1d\n\n\n\x02\x04\x02\x12\x04\x0b\0\x0e\x01\n\n\n\x03\x04\
|
|
|
+ \x02\x01\x12\x03\x0b\x08\x16\n\x0b\n\x04\x04\x02\x02\0\x12\x03\x0c\x04\
|
|
|
+ \x1d\n\x0c\n\x05\x04\x02\x02\0\x05\x12\x03\x0c\x04\n\n\x0c\n\x05\x04\x02\
|
|
|
+ \x02\0\x01\x12\x03\x0c\x0b\x18\n\x0c\n\x05\x04\x02\x02\0\x03\x12\x03\x0c\
|
|
|
+ \x1b\x1c\n\x0b\n\x04\x04\x02\x02\x01\x12\x03\r\x04\x1c\n\x0c\n\x05\x04\
|
|
|
+ \x02\x02\x01\x05\x12\x03\r\x04\n\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\x03\
|
|
|
+ \r\x0b\x17\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\x03\r\x1a\x1bb\x06proto3\
|
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|