// This file is generated by rust-protobuf 2.2.5. Do not edit // @generated // https://github.com/Manishearth/rust-clippy/issues/702 #![allow(unknown_lints)] #![allow(clippy)] #![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(unsafe_code)] #![allow(unused_imports)] #![allow(unused_results)] use protobuf::Message as Message_imported_for_functions; use protobuf::ProtobufEnum as ProtobufEnum_imported_for_functions; #[derive(PartialEq,Clone,Default)] pub struct LabelPair { // message fields name: ::protobuf::SingularField<::std::string::String>, value: ::protobuf::SingularField<::std::string::String>, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl LabelPair { pub fn new() -> LabelPair { ::std::default::Default::default() } // optional string name = 1; pub fn clear_name(&mut self) { self.name.clear(); } pub fn has_name(&self) -> bool { self.name.is_some() } // Param is passed by value, moved pub fn set_name(&mut self, v: ::std::string::String) { self.name = ::protobuf::SingularField::some(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 { if self.name.is_none() { self.name.set_default(); } self.name.as_mut().unwrap() } // Take field pub fn take_name(&mut self) -> ::std::string::String { self.name.take().unwrap_or_else(|| ::std::string::String::new()) } pub fn get_name(&self) -> &str { match self.name.as_ref() { Some(v) => &v, None => "", } } // optional string value = 2; pub fn clear_value(&mut self) { self.value.clear(); } pub fn has_value(&self) -> bool { self.value.is_some() } // Param is passed by value, moved pub fn set_value(&mut self, v: ::std::string::String) { self.value = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_value(&mut self) -> &mut ::std::string::String { if self.value.is_none() { self.value.set_default(); } self.value.as_mut().unwrap() } // Take field pub fn take_value(&mut self) -> ::std::string::String { self.value.take().unwrap_or_else(|| ::std::string::String::new()) } pub fn get_value(&self) -> &str { match self.value.as_ref() { Some(v) => &v, None => "", } } } impl ::protobuf::Message for LabelPair { 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_string_into(wire_type, is, &mut self.name)?; }, 2 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.value)?; }, _ => { ::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 let Some(ref v) = self.name.as_ref() { my_size += ::protobuf::rt::string_size(1, &v); } if let Some(ref v) = self.value.as_ref() { my_size += ::protobuf::rt::string_size(2, &v); } 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 let Some(ref v) = self.name.as_ref() { os.write_string(1, &v)?; } if let Some(ref v) = self.value.as_ref() { os.write_string(2, &v)?; } 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> LabelPair { LabelPair::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "name", |m: &LabelPair| { &m.name }, |m: &mut LabelPair| { &mut m.name }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "value", |m: &LabelPair| { &m.value }, |m: &mut LabelPair| { &mut m.value }, )); ::protobuf::reflect::MessageDescriptor::new::( "LabelPair", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static LabelPair { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const LabelPair, }; unsafe { instance.get(LabelPair::new) } } } impl ::protobuf::Clear for LabelPair { fn clear(&mut self) { self.clear_name(); self.clear_value(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for LabelPair { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for LabelPair { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Gauge { // message fields value: ::std::option::Option, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl Gauge { pub fn new() -> Gauge { ::std::default::Default::default() } // optional double value = 1; pub fn clear_value(&mut self) { self.value = ::std::option::Option::None; } pub fn has_value(&self) -> bool { self.value.is_some() } // Param is passed by value, moved pub fn set_value(&mut self, v: f64) { self.value = ::std::option::Option::Some(v); } pub fn get_value(&self) -> f64 { self.value.unwrap_or(0.) } } impl ::protobuf::Message for Gauge { 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 => { if wire_type != ::protobuf::wire_format::WireTypeFixed64 { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_double()?; self.value = ::std::option::Option::Some(tmp); }, _ => { ::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 let Some(v) = self.value { my_size += 9; } 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 let Some(v) = self.value { os.write_double(1, v)?; } 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Gauge { Gauge::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeDouble>( "value", |m: &Gauge| { &m.value }, |m: &mut Gauge| { &mut m.value }, )); ::protobuf::reflect::MessageDescriptor::new::( "Gauge", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Gauge { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Gauge, }; unsafe { instance.get(Gauge::new) } } } impl ::protobuf::Clear for Gauge { fn clear(&mut self) { self.clear_value(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Gauge { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Gauge { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Counter { // message fields value: ::std::option::Option, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl Counter { pub fn new() -> Counter { ::std::default::Default::default() } // optional double value = 1; pub fn clear_value(&mut self) { self.value = ::std::option::Option::None; } pub fn has_value(&self) -> bool { self.value.is_some() } // Param is passed by value, moved pub fn set_value(&mut self, v: f64) { self.value = ::std::option::Option::Some(v); } pub fn get_value(&self) -> f64 { self.value.unwrap_or(0.) } } impl ::protobuf::Message for Counter { 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 => { if wire_type != ::protobuf::wire_format::WireTypeFixed64 { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_double()?; self.value = ::std::option::Option::Some(tmp); }, _ => { ::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 let Some(v) = self.value { my_size += 9; } 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 let Some(v) = self.value { os.write_double(1, v)?; } 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Counter { Counter::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeDouble>( "value", |m: &Counter| { &m.value }, |m: &mut Counter| { &mut m.value }, )); ::protobuf::reflect::MessageDescriptor::new::( "Counter", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Counter { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Counter, }; unsafe { instance.get(Counter::new) } } } impl ::protobuf::Clear for Counter { fn clear(&mut self) { self.clear_value(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Counter { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Counter { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Quantile { // message fields quantile: ::std::option::Option, value: ::std::option::Option, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl Quantile { pub fn new() -> Quantile { ::std::default::Default::default() } // optional double quantile = 1; pub fn clear_quantile(&mut self) { self.quantile = ::std::option::Option::None; } pub fn has_quantile(&self) -> bool { self.quantile.is_some() } // Param is passed by value, moved pub fn set_quantile(&mut self, v: f64) { self.quantile = ::std::option::Option::Some(v); } pub fn get_quantile(&self) -> f64 { self.quantile.unwrap_or(0.) } // optional double value = 2; pub fn clear_value(&mut self) { self.value = ::std::option::Option::None; } pub fn has_value(&self) -> bool { self.value.is_some() } // Param is passed by value, moved pub fn set_value(&mut self, v: f64) { self.value = ::std::option::Option::Some(v); } pub fn get_value(&self) -> f64 { self.value.unwrap_or(0.) } } impl ::protobuf::Message for Quantile { 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 => { if wire_type != ::protobuf::wire_format::WireTypeFixed64 { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_double()?; self.quantile = ::std::option::Option::Some(tmp); }, 2 => { if wire_type != ::protobuf::wire_format::WireTypeFixed64 { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_double()?; self.value = ::std::option::Option::Some(tmp); }, _ => { ::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 let Some(v) = self.quantile { my_size += 9; } if let Some(v) = self.value { my_size += 9; } 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 let Some(v) = self.quantile { os.write_double(1, v)?; } if let Some(v) = self.value { os.write_double(2, v)?; } 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Quantile { Quantile::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeDouble>( "quantile", |m: &Quantile| { &m.quantile }, |m: &mut Quantile| { &mut m.quantile }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeDouble>( "value", |m: &Quantile| { &m.value }, |m: &mut Quantile| { &mut m.value }, )); ::protobuf::reflect::MessageDescriptor::new::( "Quantile", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Quantile { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Quantile, }; unsafe { instance.get(Quantile::new) } } } impl ::protobuf::Clear for Quantile { fn clear(&mut self) { self.clear_quantile(); self.clear_value(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Quantile { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Quantile { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Summary { // message fields sample_count: ::std::option::Option, sample_sum: ::std::option::Option, quantile: ::protobuf::RepeatedField, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl Summary { pub fn new() -> Summary { ::std::default::Default::default() } // optional uint64 sample_count = 1; pub fn clear_sample_count(&mut self) { self.sample_count = ::std::option::Option::None; } pub fn has_sample_count(&self) -> bool { self.sample_count.is_some() } // Param is passed by value, moved pub fn set_sample_count(&mut self, v: u64) { self.sample_count = ::std::option::Option::Some(v); } pub fn get_sample_count(&self) -> u64 { self.sample_count.unwrap_or(0) } // optional double sample_sum = 2; pub fn clear_sample_sum(&mut self) { self.sample_sum = ::std::option::Option::None; } pub fn has_sample_sum(&self) -> bool { self.sample_sum.is_some() } // Param is passed by value, moved pub fn set_sample_sum(&mut self, v: f64) { self.sample_sum = ::std::option::Option::Some(v); } pub fn get_sample_sum(&self) -> f64 { self.sample_sum.unwrap_or(0.) } // repeated .io.prometheus.client.Quantile quantile = 3; pub fn clear_quantile(&mut self) { self.quantile.clear(); } // Param is passed by value, moved pub fn set_quantile(&mut self, v: ::protobuf::RepeatedField) { self.quantile = v; } // Mutable pointer to the field. pub fn mut_quantile(&mut self) -> &mut ::protobuf::RepeatedField { &mut self.quantile } // Take field pub fn take_quantile(&mut self) -> ::protobuf::RepeatedField { ::std::mem::replace(&mut self.quantile, ::protobuf::RepeatedField::new()) } pub fn get_quantile(&self) -> &[Quantile] { &self.quantile } } impl ::protobuf::Message for Summary { fn is_initialized(&self) -> bool { for v in &self.quantile { 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 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint64()?; self.sample_count = ::std::option::Option::Some(tmp); }, 2 => { if wire_type != ::protobuf::wire_format::WireTypeFixed64 { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_double()?; self.sample_sum = ::std::option::Option::Some(tmp); }, 3 => { ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.quantile)?; }, _ => { ::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 let Some(v) = self.sample_count { my_size += ::protobuf::rt::value_size(1, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.sample_sum { my_size += 9; } for value in &self.quantile { 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 let Some(v) = self.sample_count { os.write_uint64(1, v)?; } if let Some(v) = self.sample_sum { os.write_double(2, v)?; } for v in &self.quantile { 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Summary { Summary::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( "sample_count", |m: &Summary| { &m.sample_count }, |m: &mut Summary| { &mut m.sample_count }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeDouble>( "sample_sum", |m: &Summary| { &m.sample_sum }, |m: &mut Summary| { &mut m.sample_sum }, )); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "quantile", |m: &Summary| { &m.quantile }, |m: &mut Summary| { &mut m.quantile }, )); ::protobuf::reflect::MessageDescriptor::new::( "Summary", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Summary { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Summary, }; unsafe { instance.get(Summary::new) } } } impl ::protobuf::Clear for Summary { fn clear(&mut self) { self.clear_sample_count(); self.clear_sample_sum(); self.clear_quantile(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Summary { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Summary { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Untyped { // message fields value: ::std::option::Option, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl Untyped { pub fn new() -> Untyped { ::std::default::Default::default() } // optional double value = 1; pub fn clear_value(&mut self) { self.value = ::std::option::Option::None; } pub fn has_value(&self) -> bool { self.value.is_some() } // Param is passed by value, moved pub fn set_value(&mut self, v: f64) { self.value = ::std::option::Option::Some(v); } pub fn get_value(&self) -> f64 { self.value.unwrap_or(0.) } } impl ::protobuf::Message for Untyped { 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 => { if wire_type != ::protobuf::wire_format::WireTypeFixed64 { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_double()?; self.value = ::std::option::Option::Some(tmp); }, _ => { ::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 let Some(v) = self.value { my_size += 9; } 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 let Some(v) = self.value { os.write_double(1, v)?; } 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Untyped { Untyped::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeDouble>( "value", |m: &Untyped| { &m.value }, |m: &mut Untyped| { &mut m.value }, )); ::protobuf::reflect::MessageDescriptor::new::( "Untyped", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Untyped { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Untyped, }; unsafe { instance.get(Untyped::new) } } } impl ::protobuf::Clear for Untyped { fn clear(&mut self) { self.clear_value(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Untyped { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Untyped { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Histogram { // message fields sample_count: ::std::option::Option, sample_sum: ::std::option::Option, bucket: ::protobuf::RepeatedField, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl Histogram { pub fn new() -> Histogram { ::std::default::Default::default() } // optional uint64 sample_count = 1; pub fn clear_sample_count(&mut self) { self.sample_count = ::std::option::Option::None; } pub fn has_sample_count(&self) -> bool { self.sample_count.is_some() } // Param is passed by value, moved pub fn set_sample_count(&mut self, v: u64) { self.sample_count = ::std::option::Option::Some(v); } pub fn get_sample_count(&self) -> u64 { self.sample_count.unwrap_or(0) } // optional double sample_sum = 2; pub fn clear_sample_sum(&mut self) { self.sample_sum = ::std::option::Option::None; } pub fn has_sample_sum(&self) -> bool { self.sample_sum.is_some() } // Param is passed by value, moved pub fn set_sample_sum(&mut self, v: f64) { self.sample_sum = ::std::option::Option::Some(v); } pub fn get_sample_sum(&self) -> f64 { self.sample_sum.unwrap_or(0.) } // repeated .io.prometheus.client.Bucket bucket = 3; pub fn clear_bucket(&mut self) { self.bucket.clear(); } // Param is passed by value, moved pub fn set_bucket(&mut self, v: ::protobuf::RepeatedField) { self.bucket = v; } // Mutable pointer to the field. pub fn mut_bucket(&mut self) -> &mut ::protobuf::RepeatedField { &mut self.bucket } // Take field pub fn take_bucket(&mut self) -> ::protobuf::RepeatedField { ::std::mem::replace(&mut self.bucket, ::protobuf::RepeatedField::new()) } pub fn get_bucket(&self) -> &[Bucket] { &self.bucket } } impl ::protobuf::Message for Histogram { fn is_initialized(&self) -> bool { for v in &self.bucket { 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 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint64()?; self.sample_count = ::std::option::Option::Some(tmp); }, 2 => { if wire_type != ::protobuf::wire_format::WireTypeFixed64 { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_double()?; self.sample_sum = ::std::option::Option::Some(tmp); }, 3 => { ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.bucket)?; }, _ => { ::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 let Some(v) = self.sample_count { my_size += ::protobuf::rt::value_size(1, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.sample_sum { my_size += 9; } for value in &self.bucket { 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 let Some(v) = self.sample_count { os.write_uint64(1, v)?; } if let Some(v) = self.sample_sum { os.write_double(2, v)?; } for v in &self.bucket { 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Histogram { Histogram::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( "sample_count", |m: &Histogram| { &m.sample_count }, |m: &mut Histogram| { &mut m.sample_count }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeDouble>( "sample_sum", |m: &Histogram| { &m.sample_sum }, |m: &mut Histogram| { &mut m.sample_sum }, )); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "bucket", |m: &Histogram| { &m.bucket }, |m: &mut Histogram| { &mut m.bucket }, )); ::protobuf::reflect::MessageDescriptor::new::( "Histogram", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Histogram { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Histogram, }; unsafe { instance.get(Histogram::new) } } } impl ::protobuf::Clear for Histogram { fn clear(&mut self) { self.clear_sample_count(); self.clear_sample_sum(); self.clear_bucket(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Histogram { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Histogram { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Bucket { // message fields cumulative_count: ::std::option::Option, upper_bound: ::std::option::Option, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl Bucket { pub fn new() -> Bucket { ::std::default::Default::default() } // optional uint64 cumulative_count = 1; pub fn clear_cumulative_count(&mut self) { self.cumulative_count = ::std::option::Option::None; } pub fn has_cumulative_count(&self) -> bool { self.cumulative_count.is_some() } // Param is passed by value, moved pub fn set_cumulative_count(&mut self, v: u64) { self.cumulative_count = ::std::option::Option::Some(v); } pub fn get_cumulative_count(&self) -> u64 { self.cumulative_count.unwrap_or(0) } // optional double upper_bound = 2; pub fn clear_upper_bound(&mut self) { self.upper_bound = ::std::option::Option::None; } pub fn has_upper_bound(&self) -> bool { self.upper_bound.is_some() } // Param is passed by value, moved pub fn set_upper_bound(&mut self, v: f64) { self.upper_bound = ::std::option::Option::Some(v); } pub fn get_upper_bound(&self) -> f64 { self.upper_bound.unwrap_or(0.) } } impl ::protobuf::Message for Bucket { 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 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint64()?; self.cumulative_count = ::std::option::Option::Some(tmp); }, 2 => { if wire_type != ::protobuf::wire_format::WireTypeFixed64 { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_double()?; self.upper_bound = ::std::option::Option::Some(tmp); }, _ => { ::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 let Some(v) = self.cumulative_count { my_size += ::protobuf::rt::value_size(1, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.upper_bound { my_size += 9; } 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 let Some(v) = self.cumulative_count { os.write_uint64(1, v)?; } if let Some(v) = self.upper_bound { os.write_double(2, v)?; } 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Bucket { Bucket::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( "cumulative_count", |m: &Bucket| { &m.cumulative_count }, |m: &mut Bucket| { &mut m.cumulative_count }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeDouble>( "upper_bound", |m: &Bucket| { &m.upper_bound }, |m: &mut Bucket| { &mut m.upper_bound }, )); ::protobuf::reflect::MessageDescriptor::new::( "Bucket", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Bucket { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Bucket, }; unsafe { instance.get(Bucket::new) } } } impl ::protobuf::Clear for Bucket { fn clear(&mut self) { self.clear_cumulative_count(); self.clear_upper_bound(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Bucket { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Bucket { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Metric { // message fields label: ::protobuf::RepeatedField, gauge: ::protobuf::SingularPtrField, counter: ::protobuf::SingularPtrField, summary: ::protobuf::SingularPtrField, untyped: ::protobuf::SingularPtrField, histogram: ::protobuf::SingularPtrField, timestamp_ms: ::std::option::Option, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl Metric { pub fn new() -> Metric { ::std::default::Default::default() } // repeated .io.prometheus.client.LabelPair label = 1; pub fn clear_label(&mut self) { self.label.clear(); } // Param is passed by value, moved pub fn set_label(&mut self, v: ::protobuf::RepeatedField) { self.label = v; } // Mutable pointer to the field. pub fn mut_label(&mut self) -> &mut ::protobuf::RepeatedField { &mut self.label } // Take field pub fn take_label(&mut self) -> ::protobuf::RepeatedField { ::std::mem::replace(&mut self.label, ::protobuf::RepeatedField::new()) } pub fn get_label(&self) -> &[LabelPair] { &self.label } // optional .io.prometheus.client.Gauge gauge = 2; pub fn clear_gauge(&mut self) { self.gauge.clear(); } pub fn has_gauge(&self) -> bool { self.gauge.is_some() } // Param is passed by value, moved pub fn set_gauge(&mut self, v: Gauge) { self.gauge = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_gauge(&mut self) -> &mut Gauge { if self.gauge.is_none() { self.gauge.set_default(); } self.gauge.as_mut().unwrap() } // Take field pub fn take_gauge(&mut self) -> Gauge { self.gauge.take().unwrap_or_else(|| Gauge::new()) } pub fn get_gauge(&self) -> &Gauge { self.gauge.as_ref().unwrap_or_else(|| Gauge::default_instance()) } // optional .io.prometheus.client.Counter counter = 3; pub fn clear_counter(&mut self) { self.counter.clear(); } pub fn has_counter(&self) -> bool { self.counter.is_some() } // Param is passed by value, moved pub fn set_counter(&mut self, v: Counter) { self.counter = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_counter(&mut self) -> &mut Counter { if self.counter.is_none() { self.counter.set_default(); } self.counter.as_mut().unwrap() } // Take field pub fn take_counter(&mut self) -> Counter { self.counter.take().unwrap_or_else(|| Counter::new()) } pub fn get_counter(&self) -> &Counter { self.counter.as_ref().unwrap_or_else(|| Counter::default_instance()) } // optional .io.prometheus.client.Summary summary = 4; pub fn clear_summary(&mut self) { self.summary.clear(); } pub fn has_summary(&self) -> bool { self.summary.is_some() } // Param is passed by value, moved pub fn set_summary(&mut self, v: Summary) { self.summary = ::protobuf::SingularPtrField::some(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 Summary { if self.summary.is_none() { self.summary.set_default(); } self.summary.as_mut().unwrap() } // Take field pub fn take_summary(&mut self) -> Summary { self.summary.take().unwrap_or_else(|| Summary::new()) } pub fn get_summary(&self) -> &Summary { self.summary.as_ref().unwrap_or_else(|| Summary::default_instance()) } // optional .io.prometheus.client.Untyped untyped = 5; pub fn clear_untyped(&mut self) { self.untyped.clear(); } pub fn has_untyped(&self) -> bool { self.untyped.is_some() } // Param is passed by value, moved pub fn set_untyped(&mut self, v: Untyped) { self.untyped = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_untyped(&mut self) -> &mut Untyped { if self.untyped.is_none() { self.untyped.set_default(); } self.untyped.as_mut().unwrap() } // Take field pub fn take_untyped(&mut self) -> Untyped { self.untyped.take().unwrap_or_else(|| Untyped::new()) } pub fn get_untyped(&self) -> &Untyped { self.untyped.as_ref().unwrap_or_else(|| Untyped::default_instance()) } // optional .io.prometheus.client.Histogram histogram = 7; pub fn clear_histogram(&mut self) { self.histogram.clear(); } pub fn has_histogram(&self) -> bool { self.histogram.is_some() } // Param is passed by value, moved pub fn set_histogram(&mut self, v: Histogram) { self.histogram = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_histogram(&mut self) -> &mut Histogram { if self.histogram.is_none() { self.histogram.set_default(); } self.histogram.as_mut().unwrap() } // Take field pub fn take_histogram(&mut self) -> Histogram { self.histogram.take().unwrap_or_else(|| Histogram::new()) } pub fn get_histogram(&self) -> &Histogram { self.histogram.as_ref().unwrap_or_else(|| Histogram::default_instance()) } // optional int64 timestamp_ms = 6; pub fn clear_timestamp_ms(&mut self) { self.timestamp_ms = ::std::option::Option::None; } pub fn has_timestamp_ms(&self) -> bool { self.timestamp_ms.is_some() } // Param is passed by value, moved pub fn set_timestamp_ms(&mut self, v: i64) { self.timestamp_ms = ::std::option::Option::Some(v); } pub fn get_timestamp_ms(&self) -> i64 { self.timestamp_ms.unwrap_or(0) } } impl ::protobuf::Message for Metric { fn is_initialized(&self) -> bool { for v in &self.label { if !v.is_initialized() { return false; } }; for v in &self.gauge { if !v.is_initialized() { return false; } }; for v in &self.counter { if !v.is_initialized() { return false; } }; for v in &self.summary { if !v.is_initialized() { return false; } }; for v in &self.untyped { if !v.is_initialized() { return false; } }; for v in &self.histogram { 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_repeated_message_into(wire_type, is, &mut self.label)?; }, 2 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.gauge)?; }, 3 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.counter)?; }, 4 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.summary)?; }, 5 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.untyped)?; }, 7 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.histogram)?; }, 6 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_int64()?; self.timestamp_ms = ::std::option::Option::Some(tmp); }, _ => { ::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; for value in &self.label { let len = value.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; }; if let Some(ref v) = self.gauge.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } if let Some(ref v) = self.counter.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } if let Some(ref v) = self.summary.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } if let Some(ref v) = self.untyped.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } if let Some(ref v) = self.histogram.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } if let Some(v) = self.timestamp_ms { my_size += ::protobuf::rt::value_size(6, v, ::protobuf::wire_format::WireTypeVarint); } 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<()> { for v in &self.label { os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; }; if let Some(ref v) = self.gauge.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 let Some(ref v) = self.counter.as_ref() { os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } if let Some(ref v) = self.summary.as_ref() { os.write_tag(4, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } if let Some(ref v) = self.untyped.as_ref() { os.write_tag(5, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } if let Some(ref v) = self.histogram.as_ref() { os.write_tag(7, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } if let Some(v) = self.timestamp_ms { os.write_int64(6, v)?; } 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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Metric { Metric::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "label", |m: &Metric| { &m.label }, |m: &mut Metric| { &mut m.label }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "gauge", |m: &Metric| { &m.gauge }, |m: &mut Metric| { &mut m.gauge }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "counter", |m: &Metric| { &m.counter }, |m: &mut Metric| { &mut m.counter }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "summary", |m: &Metric| { &m.summary }, |m: &mut Metric| { &mut m.summary }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "untyped", |m: &Metric| { &m.untyped }, |m: &mut Metric| { &mut m.untyped }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "histogram", |m: &Metric| { &m.histogram }, |m: &mut Metric| { &mut m.histogram }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeInt64>( "timestamp_ms", |m: &Metric| { &m.timestamp_ms }, |m: &mut Metric| { &mut m.timestamp_ms }, )); ::protobuf::reflect::MessageDescriptor::new::( "Metric", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Metric { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Metric, }; unsafe { instance.get(Metric::new) } } } impl ::protobuf::Clear for Metric { fn clear(&mut self) { self.clear_label(); self.clear_gauge(); self.clear_counter(); self.clear_summary(); self.clear_untyped(); self.clear_histogram(); self.clear_timestamp_ms(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Metric { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Metric { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct MetricFamily { // message fields name: ::protobuf::SingularField<::std::string::String>, help: ::protobuf::SingularField<::std::string::String>, field_type: ::std::option::Option, metric: ::protobuf::RepeatedField, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl MetricFamily { pub fn new() -> MetricFamily { ::std::default::Default::default() } // optional string name = 1; pub fn clear_name(&mut self) { self.name.clear(); } pub fn has_name(&self) -> bool { self.name.is_some() } // Param is passed by value, moved pub fn set_name(&mut self, v: ::std::string::String) { self.name = ::protobuf::SingularField::some(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 { if self.name.is_none() { self.name.set_default(); } self.name.as_mut().unwrap() } // Take field pub fn take_name(&mut self) -> ::std::string::String { self.name.take().unwrap_or_else(|| ::std::string::String::new()) } pub fn get_name(&self) -> &str { match self.name.as_ref() { Some(v) => &v, None => "", } } // optional string help = 2; pub fn clear_help(&mut self) { self.help.clear(); } pub fn has_help(&self) -> bool { self.help.is_some() } // Param is passed by value, moved pub fn set_help(&mut self, v: ::std::string::String) { self.help = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_help(&mut self) -> &mut ::std::string::String { if self.help.is_none() { self.help.set_default(); } self.help.as_mut().unwrap() } // Take field pub fn take_help(&mut self) -> ::std::string::String { self.help.take().unwrap_or_else(|| ::std::string::String::new()) } pub fn get_help(&self) -> &str { match self.help.as_ref() { Some(v) => &v, None => "", } } // optional .io.prometheus.client.MetricType type = 3; pub fn clear_field_type(&mut self) { self.field_type = ::std::option::Option::None; } pub fn has_field_type(&self) -> bool { self.field_type.is_some() } // Param is passed by value, moved pub fn set_field_type(&mut self, v: MetricType) { self.field_type = ::std::option::Option::Some(v); } pub fn get_field_type(&self) -> MetricType { self.field_type.unwrap_or(MetricType::COUNTER) } // repeated .io.prometheus.client.Metric metric = 4; pub fn clear_metric(&mut self) { self.metric.clear(); } // Param is passed by value, moved pub fn set_metric(&mut self, v: ::protobuf::RepeatedField) { self.metric = v; } // Mutable pointer to the field. pub fn mut_metric(&mut self) -> &mut ::protobuf::RepeatedField { &mut self.metric } // Take field pub fn take_metric(&mut self) -> ::protobuf::RepeatedField { ::std::mem::replace(&mut self.metric, ::protobuf::RepeatedField::new()) } pub fn get_metric(&self) -> &[Metric] { &self.metric } } impl ::protobuf::Message for MetricFamily { fn is_initialized(&self) -> bool { for v in &self.metric { 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_string_into(wire_type, is, &mut self.name)?; }, 2 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.help)?; }, 3 => { ::protobuf::rt::read_proto2_enum_with_unknown_fields_into(wire_type, is, &mut self.field_type, 3, &mut self.unknown_fields)? }, 4 => { ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.metric)?; }, _ => { ::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 let Some(ref v) = self.name.as_ref() { my_size += ::protobuf::rt::string_size(1, &v); } if let Some(ref v) = self.help.as_ref() { my_size += ::protobuf::rt::string_size(2, &v); } if let Some(v) = self.field_type { my_size += ::protobuf::rt::enum_size(3, v); } for value in &self.metric { 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 let Some(ref v) = self.name.as_ref() { os.write_string(1, &v)?; } if let Some(ref v) = self.help.as_ref() { os.write_string(2, &v)?; } if let Some(v) = self.field_type { os.write_enum(3, v.value())?; } for v in &self.metric { os.write_tag(4, ::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) -> &::std::any::Any { self as &::std::any::Any } fn as_any_mut(&mut self) -> &mut ::std::any::Any { self as &mut ::std::any::Any } fn into_any(self: Box) -> ::std::boxed::Box<::std::any::Any> { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> MetricFamily { MetricFamily::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "name", |m: &MetricFamily| { &m.name }, |m: &mut MetricFamily| { &mut m.name }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "help", |m: &MetricFamily| { &m.help }, |m: &mut MetricFamily| { &mut m.help }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeEnum>( "type", |m: &MetricFamily| { &m.field_type }, |m: &mut MetricFamily| { &mut m.field_type }, )); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "metric", |m: &MetricFamily| { &m.metric }, |m: &mut MetricFamily| { &mut m.metric }, )); ::protobuf::reflect::MessageDescriptor::new::( "MetricFamily", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static MetricFamily { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const MetricFamily, }; unsafe { instance.get(MetricFamily::new) } } } impl ::protobuf::Clear for MetricFamily { fn clear(&mut self) { self.clear_name(); self.clear_help(); self.clear_field_type(); self.clear_metric(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for MetricFamily { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for MetricFamily { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(Clone,PartialEq,Eq,Debug,Hash)] pub enum MetricType { COUNTER = 0, GAUGE = 1, SUMMARY = 2, UNTYPED = 3, HISTOGRAM = 4, } impl ::protobuf::ProtobufEnum for MetricType { fn value(&self) -> i32 { *self as i32 } fn from_i32(value: i32) -> ::std::option::Option { match value { 0 => ::std::option::Option::Some(MetricType::COUNTER), 1 => ::std::option::Option::Some(MetricType::GAUGE), 2 => ::std::option::Option::Some(MetricType::SUMMARY), 3 => ::std::option::Option::Some(MetricType::UNTYPED), 4 => ::std::option::Option::Some(MetricType::HISTOGRAM), _ => ::std::option::Option::None } } fn values() -> &'static [Self] { static values: &'static [MetricType] = &[ MetricType::COUNTER, MetricType::GAUGE, MetricType::SUMMARY, MetricType::UNTYPED, MetricType::HISTOGRAM, ]; values } fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::EnumDescriptor, }; unsafe { descriptor.get(|| { ::protobuf::reflect::EnumDescriptor::new("MetricType", file_descriptor_proto()) }) } } } impl ::std::marker::Copy for MetricType { } impl ::protobuf::reflect::ProtobufValue for MetricType { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef<'_> { ::protobuf::reflect::ProtobufValueRef::Enum(self.descriptor()) } } static file_descriptor_proto_data: &'static [u8] = b"\ \n\x11proto_model.proto\x12\x14io.prometheus.client\"0\n\tLabelPair\x12\ \x10\n\x04name\x18\x01\x20\x01(\tB\x02\x18\0\x12\x11\n\x05value\x18\x02\ \x20\x01(\tB\x02\x18\0\"\x1a\n\x05Gauge\x12\x11\n\x05value\x18\x01\x20\ \x01(\x01B\x02\x18\0\"\x1c\n\x07Counter\x12\x11\n\x05value\x18\x01\x20\ \x01(\x01B\x02\x18\0\"3\n\x08Quantile\x12\x14\n\x08quantile\x18\x01\x20\ \x01(\x01B\x02\x18\0\x12\x11\n\x05value\x18\x02\x20\x01(\x01B\x02\x18\0\ \"q\n\x07Summary\x12\x18\n\x0csample_count\x18\x01\x20\x01(\x04B\x02\x18\ \0\x12\x16\n\nsample_sum\x18\x02\x20\x01(\x01B\x02\x18\0\x124\n\x08quant\ ile\x18\x03\x20\x03(\x0b2\x1e.io.prometheus.client.QuantileB\x02\x18\0\"\ \x1c\n\x07Untyped\x12\x11\n\x05value\x18\x01\x20\x01(\x01B\x02\x18\0\"o\ \n\tHistogram\x12\x18\n\x0csample_count\x18\x01\x20\x01(\x04B\x02\x18\0\ \x12\x16\n\nsample_sum\x18\x02\x20\x01(\x01B\x02\x18\0\x120\n\x06bucket\ \x18\x03\x20\x03(\x0b2\x1c.io.prometheus.client.BucketB\x02\x18\0\"?\n\ \x06Bucket\x12\x1c\n\x10cumulative_count\x18\x01\x20\x01(\x04B\x02\x18\0\ \x12\x17\n\x0bupper_bound\x18\x02\x20\x01(\x01B\x02\x18\0\"\xda\x02\n\ \x06Metric\x122\n\x05label\x18\x01\x20\x03(\x0b2\x1f.io.prometheus.clien\ t.LabelPairB\x02\x18\0\x12.\n\x05gauge\x18\x02\x20\x01(\x0b2\x1b.io.prom\ etheus.client.GaugeB\x02\x18\0\x122\n\x07counter\x18\x03\x20\x01(\x0b2\ \x1d.io.prometheus.client.CounterB\x02\x18\0\x122\n\x07summary\x18\x04\ \x20\x01(\x0b2\x1d.io.prometheus.client.SummaryB\x02\x18\0\x122\n\x07unt\ yped\x18\x05\x20\x01(\x0b2\x1d.io.prometheus.client.UntypedB\x02\x18\0\ \x126\n\thistogram\x18\x07\x20\x01(\x0b2\x1f.io.prometheus.client.Histog\ ramB\x02\x18\0\x12\x18\n\x0ctimestamp_ms\x18\x06\x20\x01(\x03B\x02\x18\0\ \"\x98\x01\n\x0cMetricFamily\x12\x10\n\x04name\x18\x01\x20\x01(\tB\x02\ \x18\0\x12\x10\n\x04help\x18\x02\x20\x01(\tB\x02\x18\0\x122\n\x04type\ \x18\x03\x20\x01(\x0e2\x20.io.prometheus.client.MetricTypeB\x02\x18\0\ \x120\n\x06metric\x18\x04\x20\x03(\x0b2\x1c.io.prometheus.client.MetricB\ \x02\x18\0*Q\n\nMetricType\x12\x0b\n\x07COUNTER\x10\0\x12\t\n\x05GAUGE\ \x10\x01\x12\x0b\n\x07SUMMARY\x10\x02\x12\x0b\n\x07UNTYPED\x10\x03\x12\r\ \n\tHISTOGRAM\x10\x04\x1a\x02\x10\0B\0b\x06proto2\ "; static mut file_descriptor_proto_lazy: ::protobuf::lazy::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::descriptor::FileDescriptorProto, }; fn parse_descriptor_proto() -> ::protobuf::descriptor::FileDescriptorProto { ::protobuf::parse_from_bytes(file_descriptor_proto_data).unwrap() } pub fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto { unsafe { file_descriptor_proto_lazy.get(|| { parse_descriptor_proto() }) } }