aboutsummaryrefslogtreecommitdiff
path: root/src/well_known_types/struct_.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/well_known_types/struct_.rs')
-rw-r--r--src/well_known_types/struct_.rs990
1 files changed, 990 insertions, 0 deletions
diff --git a/src/well_known_types/struct_.rs b/src/well_known_types/struct_.rs
new file mode 100644
index 0000000..d565c81
--- /dev/null
+++ b/src/well_known_types/struct_.rs
@@ -0,0 +1,990 @@
+// This file is generated by rust-protobuf 3.0.0-pre. Do not edit
+// .proto file is parsed by protoc --rust-out=...
+// @generated
+
+// https://github.com/rust-lang/rust-clippy/issues/702
+#![allow(unknown_lints)]
+#![allow(clippy::all)]
+
+#![allow(unused_attributes)]
+#![cfg_attr(rustfmt, rustfmt::skip)]
+
+#![allow(box_pointers)]
+#![allow(dead_code)]
+#![allow(missing_docs)]
+#![allow(non_camel_case_types)]
+#![allow(non_snake_case)]
+#![allow(non_upper_case_globals)]
+#![allow(trivial_casts)]
+#![allow(unused_results)]
+#![allow(unused_mut)]
+
+//! Generated file from `google/protobuf/struct.proto`
+
+/// `Struct` represents a structured data value, consisting of fields
+/// which map to dynamically typed values. In some languages, `Struct`
+/// might be supported by a native representation. For example, in
+/// scripting languages like JS a struct is represented as an
+/// object. The details of that representation are described together
+/// with the proto support for the language.
+///
+/// The JSON representation for `Struct` is JSON object.
+#[derive(PartialEq,Clone,Default,Debug)]
+// @@protoc_insertion_point(message:google.protobuf.Struct)
+pub struct Struct {
+ // message fields
+ /// Unordered map of dynamically typed values.
+ // @@protoc_insertion_point(field:google.protobuf.Struct.fields)
+ pub fields: ::std::collections::HashMap<::std::string::String, Value>,
+ // special fields
+ // @@protoc_insertion_point(special_field:google.protobuf.Struct.special_fields)
+ pub special_fields: crate::SpecialFields,
+}
+
+impl<'a> ::std::default::Default for &'a Struct {
+ fn default() -> &'a Struct {
+ <Struct as crate::Message>::default_instance()
+ }
+}
+
+impl Struct {
+ pub fn new() -> Struct {
+ ::std::default::Default::default()
+ }
+
+ fn generated_message_descriptor_data() -> crate::reflect::GeneratedMessageDescriptorData {
+ let mut fields = ::std::vec::Vec::with_capacity(1);
+ let mut oneofs = ::std::vec::Vec::with_capacity(0);
+ fields.push(crate::reflect::rt::v2::make_map_simpler_accessor::<_, _, _>(
+ "fields",
+ |m: &Struct| { &m.fields },
+ |m: &mut Struct| { &mut m.fields },
+ ));
+ crate::reflect::GeneratedMessageDescriptorData::new_2::<Struct>(
+ "Struct",
+ fields,
+ oneofs,
+ )
+ }
+}
+
+impl crate::Message for Struct {
+ const NAME: &'static str = "Struct";
+
+ fn is_initialized(&self) -> bool {
+ true
+ }
+
+ fn merge_from(&mut self, is: &mut crate::CodedInputStream<'_>) -> crate::Result<()> {
+ while let Some(tag) = is.read_raw_tag_or_eof()? {
+ match tag {
+ 10 => {
+ let len = is.read_raw_varint32()?;
+ let old_limit = is.push_limit(len as u64)?;
+ let mut key = ::std::default::Default::default();
+ let mut value = ::std::default::Default::default();
+ while let Some(tag) = is.read_raw_tag_or_eof()? {
+ match tag {
+ 10 => key = is.read_string()?,
+ 18 => value = is.read_message()?,
+ _ => crate::rt::skip_field_for_tag(tag, is)?,
+ };
+ }
+ is.pop_limit(old_limit);
+ self.fields.insert(key, value);
+ },
+ tag => {
+ crate::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
+ },
+ };
+ }
+ ::std::result::Result::Ok(())
+ }
+
+ // Compute sizes of nested messages
+ #[allow(unused_variables)]
+ fn compute_size(&self) -> u64 {
+ let mut my_size = 0;
+ for (k, v) in &self.fields {
+ let mut entry_size = 0;
+ entry_size += crate::rt::string_size(1, &k);
+ let len = v.compute_size();
+ entry_size += 1 + crate::rt::compute_raw_varint64_size(len) + len;
+ my_size += 1 + crate::rt::compute_raw_varint64_size(entry_size) + entry_size
+ };
+ my_size += crate::rt::unknown_fields_size(self.special_fields.unknown_fields());
+ self.special_fields.cached_size().set(my_size as u32);
+ my_size
+ }
+
+ fn write_to_with_cached_sizes(&self, os: &mut crate::CodedOutputStream<'_>) -> crate::Result<()> {
+ for (k, v) in &self.fields {
+ let mut entry_size = 0;
+ entry_size += crate::rt::string_size(1, &k);
+ let len = v.cached_size() as u64;
+ entry_size += 1 + crate::rt::compute_raw_varint64_size(len) + len;
+ os.write_raw_varint32(10)?; // Tag.
+ os.write_raw_varint32(entry_size as u32)?;
+ os.write_string(1, &k)?;
+ crate::rt::write_message_field_with_cached_size(2, v, os)?;
+ };
+ os.write_unknown_fields(self.special_fields.unknown_fields())?;
+ ::std::result::Result::Ok(())
+ }
+
+ fn special_fields(&self) -> &crate::SpecialFields {
+ &self.special_fields
+ }
+
+ fn mut_special_fields(&mut self) -> &mut crate::SpecialFields {
+ &mut self.special_fields
+ }
+
+ fn new() -> Struct {
+ Struct::new()
+ }
+
+ fn clear(&mut self) {
+ self.fields.clear();
+ self.special_fields.clear();
+ }
+
+ fn default_instance() -> &'static Struct {
+ static instance: crate::rt::Lazy<Struct> = crate::rt::Lazy::new();
+ instance.get(Struct::new)
+ }
+}
+
+impl crate::MessageFull for Struct {
+ fn descriptor() -> crate::reflect::MessageDescriptor {
+ static descriptor: crate::rt::Lazy<crate::reflect::MessageDescriptor> = crate::rt::Lazy::new();
+ descriptor.get(|| file_descriptor().message_by_package_relative_name("Struct").unwrap()).clone()
+ }
+}
+
+impl ::std::fmt::Display for Struct {
+ fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
+ crate::text_format::fmt(self, f)
+ }
+}
+
+impl crate::reflect::ProtobufValue for Struct {
+ type RuntimeType = crate::reflect::rt::RuntimeTypeMessage<Self>;
+}
+
+/// `Value` represents a dynamically typed value which can be either
+/// null, a number, a string, a boolean, a recursive struct value, or a
+/// list of values. A producer of value is expected to set one of these
+/// variants. Absence of any variant indicates an error.
+///
+/// The JSON representation for `Value` is JSON value.
+#[derive(PartialEq,Clone,Default,Debug)]
+// @@protoc_insertion_point(message:google.protobuf.Value)
+pub struct Value {
+ // message oneof groups
+ pub kind: ::std::option::Option<value::Kind>,
+ // special fields
+ // @@protoc_insertion_point(special_field:google.protobuf.Value.special_fields)
+ pub special_fields: crate::SpecialFields,
+}
+
+impl<'a> ::std::default::Default for &'a Value {
+ fn default() -> &'a Value {
+ <Value as crate::Message>::default_instance()
+ }
+}
+
+impl Value {
+ pub fn new() -> Value {
+ ::std::default::Default::default()
+ }
+
+ // .google.protobuf.NullValue null_value = 1;
+
+ pub fn null_value(&self) -> NullValue {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::NullValue(v)) => crate::EnumOrUnknown::enum_value_or_default(&v),
+ _ => NullValue::NULL_VALUE,
+ }
+ }
+
+ pub fn clear_null_value(&mut self) {
+ self.kind = ::std::option::Option::None;
+ }
+
+ pub fn has_null_value(&self) -> bool {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::NullValue(..)) => true,
+ _ => false,
+ }
+ }
+
+ // Param is passed by value, moved
+ pub fn set_null_value(&mut self, v: NullValue) {
+ self.kind = ::std::option::Option::Some(value::Kind::NullValue(crate::EnumOrUnknown::new(v)))
+ }
+
+ // double number_value = 2;
+
+ pub fn number_value(&self) -> f64 {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::NumberValue(v)) => v,
+ _ => 0.,
+ }
+ }
+
+ pub fn clear_number_value(&mut self) {
+ self.kind = ::std::option::Option::None;
+ }
+
+ pub fn has_number_value(&self) -> bool {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::NumberValue(..)) => true,
+ _ => false,
+ }
+ }
+
+ // Param is passed by value, moved
+ pub fn set_number_value(&mut self, v: f64) {
+ self.kind = ::std::option::Option::Some(value::Kind::NumberValue(v))
+ }
+
+ // string string_value = 3;
+
+ pub fn string_value(&self) -> &str {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::StringValue(ref v)) => v,
+ _ => "",
+ }
+ }
+
+ pub fn clear_string_value(&mut self) {
+ self.kind = ::std::option::Option::None;
+ }
+
+ pub fn has_string_value(&self) -> bool {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::StringValue(..)) => true,
+ _ => false,
+ }
+ }
+
+ // Param is passed by value, moved
+ pub fn set_string_value(&mut self, v: ::std::string::String) {
+ self.kind = ::std::option::Option::Some(value::Kind::StringValue(v))
+ }
+
+ // Mutable pointer to the field.
+ pub fn mut_string_value(&mut self) -> &mut ::std::string::String {
+ if let ::std::option::Option::Some(value::Kind::StringValue(_)) = self.kind {
+ } else {
+ self.kind = ::std::option::Option::Some(value::Kind::StringValue(::std::string::String::new()));
+ }
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::StringValue(ref mut v)) => v,
+ _ => panic!(),
+ }
+ }
+
+ // Take field
+ pub fn take_string_value(&mut self) -> ::std::string::String {
+ if self.has_string_value() {
+ match self.kind.take() {
+ ::std::option::Option::Some(value::Kind::StringValue(v)) => v,
+ _ => panic!(),
+ }
+ } else {
+ ::std::string::String::new()
+ }
+ }
+
+ // bool bool_value = 4;
+
+ pub fn bool_value(&self) -> bool {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::BoolValue(v)) => v,
+ _ => false,
+ }
+ }
+
+ pub fn clear_bool_value(&mut self) {
+ self.kind = ::std::option::Option::None;
+ }
+
+ pub fn has_bool_value(&self) -> bool {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::BoolValue(..)) => true,
+ _ => false,
+ }
+ }
+
+ // Param is passed by value, moved
+ pub fn set_bool_value(&mut self, v: bool) {
+ self.kind = ::std::option::Option::Some(value::Kind::BoolValue(v))
+ }
+
+ // .google.protobuf.Struct struct_value = 5;
+
+ pub fn struct_value(&self) -> &Struct {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::StructValue(ref v)) => v,
+ _ => <Struct as crate::Message>::default_instance(),
+ }
+ }
+
+ pub fn clear_struct_value(&mut self) {
+ self.kind = ::std::option::Option::None;
+ }
+
+ pub fn has_struct_value(&self) -> bool {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::StructValue(..)) => true,
+ _ => false,
+ }
+ }
+
+ // Param is passed by value, moved
+ pub fn set_struct_value(&mut self, v: Struct) {
+ self.kind = ::std::option::Option::Some(value::Kind::StructValue(v))
+ }
+
+ // Mutable pointer to the field.
+ pub fn mut_struct_value(&mut self) -> &mut Struct {
+ if let ::std::option::Option::Some(value::Kind::StructValue(_)) = self.kind {
+ } else {
+ self.kind = ::std::option::Option::Some(value::Kind::StructValue(Struct::new()));
+ }
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::StructValue(ref mut v)) => v,
+ _ => panic!(),
+ }
+ }
+
+ // Take field
+ pub fn take_struct_value(&mut self) -> Struct {
+ if self.has_struct_value() {
+ match self.kind.take() {
+ ::std::option::Option::Some(value::Kind::StructValue(v)) => v,
+ _ => panic!(),
+ }
+ } else {
+ Struct::new()
+ }
+ }
+
+ // .google.protobuf.ListValue list_value = 6;
+
+ pub fn list_value(&self) -> &ListValue {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::ListValue(ref v)) => v,
+ _ => <ListValue as crate::Message>::default_instance(),
+ }
+ }
+
+ pub fn clear_list_value(&mut self) {
+ self.kind = ::std::option::Option::None;
+ }
+
+ pub fn has_list_value(&self) -> bool {
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::ListValue(..)) => true,
+ _ => false,
+ }
+ }
+
+ // Param is passed by value, moved
+ pub fn set_list_value(&mut self, v: ListValue) {
+ self.kind = ::std::option::Option::Some(value::Kind::ListValue(v))
+ }
+
+ // Mutable pointer to the field.
+ pub fn mut_list_value(&mut self) -> &mut ListValue {
+ if let ::std::option::Option::Some(value::Kind::ListValue(_)) = self.kind {
+ } else {
+ self.kind = ::std::option::Option::Some(value::Kind::ListValue(ListValue::new()));
+ }
+ match self.kind {
+ ::std::option::Option::Some(value::Kind::ListValue(ref mut v)) => v,
+ _ => panic!(),
+ }
+ }
+
+ // Take field
+ pub fn take_list_value(&mut self) -> ListValue {
+ if self.has_list_value() {
+ match self.kind.take() {
+ ::std::option::Option::Some(value::Kind::ListValue(v)) => v,
+ _ => panic!(),
+ }
+ } else {
+ ListValue::new()
+ }
+ }
+
+ fn generated_message_descriptor_data() -> crate::reflect::GeneratedMessageDescriptorData {
+ let mut fields = ::std::vec::Vec::with_capacity(6);
+ let mut oneofs = ::std::vec::Vec::with_capacity(1);
+ fields.push(crate::reflect::rt::v2::make_oneof_enum_accessors::<_, _>(
+ "null_value",
+ |message: &Value| match &message.kind {
+ ::std::option::Option::Some(value::Kind::NullValue(e)) => ::std::option::Option::Some(*e),
+ _ => ::std::option::Option::None,
+ },
+ |message: &mut Value, e: crate::EnumOrUnknown<NullValue>| {
+ message.kind = ::std::option::Option::Some(value::Kind::NullValue(e));
+ },
+ NullValue::NULL_VALUE,
+ ));
+ fields.push(crate::reflect::rt::v2::make_oneof_copy_has_get_set_simpler_accessors::<_, _>(
+ "number_value",
+ Value::has_number_value,
+ Value::number_value,
+ Value::set_number_value,
+ ));
+ fields.push(crate::reflect::rt::v2::make_oneof_deref_has_get_set_simpler_accessor::<_, _>(
+ "string_value",
+ Value::has_string_value,
+ Value::string_value,
+ Value::set_string_value,
+ ));
+ fields.push(crate::reflect::rt::v2::make_oneof_copy_has_get_set_simpler_accessors::<_, _>(
+ "bool_value",
+ Value::has_bool_value,
+ Value::bool_value,
+ Value::set_bool_value,
+ ));
+ fields.push(crate::reflect::rt::v2::make_oneof_message_has_get_mut_set_accessor::<_, Struct>(
+ "struct_value",
+ Value::has_struct_value,
+ Value::struct_value,
+ Value::mut_struct_value,
+ Value::set_struct_value,
+ ));
+ fields.push(crate::reflect::rt::v2::make_oneof_message_has_get_mut_set_accessor::<_, ListValue>(
+ "list_value",
+ Value::has_list_value,
+ Value::list_value,
+ Value::mut_list_value,
+ Value::set_list_value,
+ ));
+ oneofs.push(value::Kind::generated_oneof_descriptor_data());
+ crate::reflect::GeneratedMessageDescriptorData::new_2::<Value>(
+ "Value",
+ fields,
+ oneofs,
+ )
+ }
+}
+
+impl crate::Message for Value {
+ const NAME: &'static str = "Value";
+
+ fn is_initialized(&self) -> bool {
+ true
+ }
+
+ fn merge_from(&mut self, is: &mut crate::CodedInputStream<'_>) -> crate::Result<()> {
+ while let Some(tag) = is.read_raw_tag_or_eof()? {
+ match tag {
+ 8 => {
+ self.kind = ::std::option::Option::Some(value::Kind::NullValue(is.read_enum_or_unknown()?));
+ },
+ 17 => {
+ self.kind = ::std::option::Option::Some(value::Kind::NumberValue(is.read_double()?));
+ },
+ 26 => {
+ self.kind = ::std::option::Option::Some(value::Kind::StringValue(is.read_string()?));
+ },
+ 32 => {
+ self.kind = ::std::option::Option::Some(value::Kind::BoolValue(is.read_bool()?));
+ },
+ 42 => {
+ self.kind = ::std::option::Option::Some(value::Kind::StructValue(is.read_message()?));
+ },
+ 50 => {
+ self.kind = ::std::option::Option::Some(value::Kind::ListValue(is.read_message()?));
+ },
+ tag => {
+ crate::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
+ },
+ };
+ }
+ ::std::result::Result::Ok(())
+ }
+
+ // Compute sizes of nested messages
+ #[allow(unused_variables)]
+ fn compute_size(&self) -> u64 {
+ let mut my_size = 0;
+ if let ::std::option::Option::Some(ref v) = self.kind {
+ match v {
+ &value::Kind::NullValue(v) => {
+ my_size += crate::rt::int32_size(1, v.value());
+ },
+ &value::Kind::NumberValue(v) => {
+ my_size += 1 + 8;
+ },
+ &value::Kind::StringValue(ref v) => {
+ my_size += crate::rt::string_size(3, &v);
+ },
+ &value::Kind::BoolValue(v) => {
+ my_size += 1 + 1;
+ },
+ &value::Kind::StructValue(ref v) => {
+ let len = v.compute_size();
+ my_size += 1 + crate::rt::compute_raw_varint64_size(len) + len;
+ },
+ &value::Kind::ListValue(ref v) => {
+ let len = v.compute_size();
+ my_size += 1 + crate::rt::compute_raw_varint64_size(len) + len;
+ },
+ };
+ }
+ my_size += crate::rt::unknown_fields_size(self.special_fields.unknown_fields());
+ self.special_fields.cached_size().set(my_size as u32);
+ my_size
+ }
+
+ fn write_to_with_cached_sizes(&self, os: &mut crate::CodedOutputStream<'_>) -> crate::Result<()> {
+ if let ::std::option::Option::Some(ref v) = self.kind {
+ match v {
+ &value::Kind::NullValue(v) => {
+ os.write_enum(1, crate::EnumOrUnknown::value(&v))?;
+ },
+ &value::Kind::NumberValue(v) => {
+ os.write_double(2, v)?;
+ },
+ &value::Kind::StringValue(ref v) => {
+ os.write_string(3, v)?;
+ },
+ &value::Kind::BoolValue(v) => {
+ os.write_bool(4, v)?;
+ },
+ &value::Kind::StructValue(ref v) => {
+ crate::rt::write_message_field_with_cached_size(5, v, os)?;
+ },
+ &value::Kind::ListValue(ref v) => {
+ crate::rt::write_message_field_with_cached_size(6, v, os)?;
+ },
+ };
+ }
+ os.write_unknown_fields(self.special_fields.unknown_fields())?;
+ ::std::result::Result::Ok(())
+ }
+
+ fn special_fields(&self) -> &crate::SpecialFields {
+ &self.special_fields
+ }
+
+ fn mut_special_fields(&mut self) -> &mut crate::SpecialFields {
+ &mut self.special_fields
+ }
+
+ fn new() -> Value {
+ Value::new()
+ }
+
+ fn clear(&mut self) {
+ self.kind = ::std::option::Option::None;
+ self.kind = ::std::option::Option::None;
+ self.kind = ::std::option::Option::None;
+ self.kind = ::std::option::Option::None;
+ self.kind = ::std::option::Option::None;
+ self.kind = ::std::option::Option::None;
+ self.special_fields.clear();
+ }
+
+ fn default_instance() -> &'static Value {
+ static instance: Value = Value {
+ kind: ::std::option::Option::None,
+ special_fields: crate::SpecialFields::new(),
+ };
+ &instance
+ }
+}
+
+impl crate::MessageFull for Value {
+ fn descriptor() -> crate::reflect::MessageDescriptor {
+ static descriptor: crate::rt::Lazy<crate::reflect::MessageDescriptor> = crate::rt::Lazy::new();
+ descriptor.get(|| file_descriptor().message_by_package_relative_name("Value").unwrap()).clone()
+ }
+}
+
+impl ::std::fmt::Display for Value {
+ fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
+ crate::text_format::fmt(self, f)
+ }
+}
+
+impl crate::reflect::ProtobufValue for Value {
+ type RuntimeType = crate::reflect::rt::RuntimeTypeMessage<Self>;
+}
+
+/// Nested message and enums of message `Value`
+pub mod value {
+
+ #[derive(Clone,PartialEq,Debug)]
+ #[non_exhaustive]
+ // @@protoc_insertion_point(oneof:google.protobuf.Value.kind)
+ pub enum Kind {
+ // @@protoc_insertion_point(oneof_field:google.protobuf.Value.null_value)
+ NullValue(crate::EnumOrUnknown<super::NullValue>),
+ // @@protoc_insertion_point(oneof_field:google.protobuf.Value.number_value)
+ NumberValue(f64),
+ // @@protoc_insertion_point(oneof_field:google.protobuf.Value.string_value)
+ StringValue(::std::string::String),
+ // @@protoc_insertion_point(oneof_field:google.protobuf.Value.bool_value)
+ BoolValue(bool),
+ // @@protoc_insertion_point(oneof_field:google.protobuf.Value.struct_value)
+ StructValue(super::Struct),
+ // @@protoc_insertion_point(oneof_field:google.protobuf.Value.list_value)
+ ListValue(super::ListValue),
+ }
+
+ impl crate::Oneof for Kind {
+ }
+
+ impl crate::OneofFull for Kind {
+ fn descriptor() -> crate::reflect::OneofDescriptor {
+ static descriptor: crate::rt::Lazy<crate::reflect::OneofDescriptor> = crate::rt::Lazy::new();
+ descriptor.get(|| <super::Value as crate::MessageFull>::descriptor().oneof_by_name("kind").unwrap()).clone()
+ }
+ }
+
+ impl Kind {
+ pub(in super) fn generated_oneof_descriptor_data() -> crate::reflect::GeneratedOneofDescriptorData {
+ crate::reflect::GeneratedOneofDescriptorData::new::<Kind>("kind")
+ }
+ }
+}
+
+/// `ListValue` is a wrapper around a repeated field of values.
+///
+/// The JSON representation for `ListValue` is JSON array.
+#[derive(PartialEq,Clone,Default,Debug)]
+// @@protoc_insertion_point(message:google.protobuf.ListValue)
+pub struct ListValue {
+ // message fields
+ /// Repeated field of dynamically typed values.
+ // @@protoc_insertion_point(field:google.protobuf.ListValue.values)
+ pub values: ::std::vec::Vec<Value>,
+ // special fields
+ // @@protoc_insertion_point(special_field:google.protobuf.ListValue.special_fields)
+ pub special_fields: crate::SpecialFields,
+}
+
+impl<'a> ::std::default::Default for &'a ListValue {
+ fn default() -> &'a ListValue {
+ <ListValue as crate::Message>::default_instance()
+ }
+}
+
+impl ListValue {
+ pub fn new() -> ListValue {
+ ::std::default::Default::default()
+ }
+
+ fn generated_message_descriptor_data() -> crate::reflect::GeneratedMessageDescriptorData {
+ let mut fields = ::std::vec::Vec::with_capacity(1);
+ let mut oneofs = ::std::vec::Vec::with_capacity(0);
+ fields.push(crate::reflect::rt::v2::make_vec_simpler_accessor::<_, _>(
+ "values",
+ |m: &ListValue| { &m.values },
+ |m: &mut ListValue| { &mut m.values },
+ ));
+ crate::reflect::GeneratedMessageDescriptorData::new_2::<ListValue>(
+ "ListValue",
+ fields,
+ oneofs,
+ )
+ }
+}
+
+impl crate::Message for ListValue {
+ const NAME: &'static str = "ListValue";
+
+ fn is_initialized(&self) -> bool {
+ true
+ }
+
+ fn merge_from(&mut self, is: &mut crate::CodedInputStream<'_>) -> crate::Result<()> {
+ while let Some(tag) = is.read_raw_tag_or_eof()? {
+ match tag {
+ 10 => {
+ self.values.push(is.read_message()?);
+ },
+ tag => {
+ crate::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
+ },
+ };
+ }
+ ::std::result::Result::Ok(())
+ }
+
+ // Compute sizes of nested messages
+ #[allow(unused_variables)]
+ fn compute_size(&self) -> u64 {
+ let mut my_size = 0;
+ for value in &self.values {
+ let len = value.compute_size();
+ my_size += 1 + crate::rt::compute_raw_varint64_size(len) + len;
+ };
+ my_size += crate::rt::unknown_fields_size(self.special_fields.unknown_fields());
+ self.special_fields.cached_size().set(my_size as u32);
+ my_size
+ }
+
+ fn write_to_with_cached_sizes(&self, os: &mut crate::CodedOutputStream<'_>) -> crate::Result<()> {
+ for v in &self.values {
+ crate::rt::write_message_field_with_cached_size(1, v, os)?;
+ };
+ os.write_unknown_fields(self.special_fields.unknown_fields())?;
+ ::std::result::Result::Ok(())
+ }
+
+ fn special_fields(&self) -> &crate::SpecialFields {
+ &self.special_fields
+ }
+
+ fn mut_special_fields(&mut self) -> &mut crate::SpecialFields {
+ &mut self.special_fields
+ }
+
+ fn new() -> ListValue {
+ ListValue::new()
+ }
+
+ fn clear(&mut self) {
+ self.values.clear();
+ self.special_fields.clear();
+ }
+
+ fn default_instance() -> &'static ListValue {
+ static instance: ListValue = ListValue {
+ values: ::std::vec::Vec::new(),
+ special_fields: crate::SpecialFields::new(),
+ };
+ &instance
+ }
+}
+
+impl crate::MessageFull for ListValue {
+ fn descriptor() -> crate::reflect::MessageDescriptor {
+ static descriptor: crate::rt::Lazy<crate::reflect::MessageDescriptor> = crate::rt::Lazy::new();
+ descriptor.get(|| file_descriptor().message_by_package_relative_name("ListValue").unwrap()).clone()
+ }
+}
+
+impl ::std::fmt::Display for ListValue {
+ fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
+ crate::text_format::fmt(self, f)
+ }
+}
+
+impl crate::reflect::ProtobufValue for ListValue {
+ type RuntimeType = crate::reflect::rt::RuntimeTypeMessage<Self>;
+}
+
+/// `NullValue` is a singleton enumeration to represent the null value for the
+/// `Value` type union.
+///
+/// The JSON representation for `NullValue` is JSON `null`.
+#[derive(Clone,Copy,PartialEq,Eq,Debug,Hash)]
+// @@protoc_insertion_point(enum:google.protobuf.NullValue)
+pub enum NullValue {
+ // @@protoc_insertion_point(enum_value:google.protobuf.NullValue.NULL_VALUE)
+ NULL_VALUE = 0,
+}
+
+impl crate::Enum for NullValue {
+ const NAME: &'static str = "NullValue";
+
+ fn value(&self) -> i32 {
+ *self as i32
+ }
+
+ fn from_i32(value: i32) -> ::std::option::Option<NullValue> {
+ match value {
+ 0 => ::std::option::Option::Some(NullValue::NULL_VALUE),
+ _ => ::std::option::Option::None
+ }
+ }
+
+ const VALUES: &'static [NullValue] = &[
+ NullValue::NULL_VALUE,
+ ];
+}
+
+impl crate::EnumFull for NullValue {
+ fn enum_descriptor() -> crate::reflect::EnumDescriptor {
+ static descriptor: crate::rt::Lazy<crate::reflect::EnumDescriptor> = crate::rt::Lazy::new();
+ descriptor.get(|| file_descriptor().enum_by_package_relative_name("NullValue").unwrap()).clone()
+ }
+
+ fn descriptor(&self) -> crate::reflect::EnumValueDescriptor {
+ let index = *self as usize;
+ Self::enum_descriptor().value_by_index(index)
+ }
+}
+
+impl ::std::default::Default for NullValue {
+ fn default() -> Self {
+ NullValue::NULL_VALUE
+ }
+}
+
+impl NullValue {
+ fn generated_enum_descriptor_data() -> crate::reflect::GeneratedEnumDescriptorData {
+ crate::reflect::GeneratedEnumDescriptorData::new::<NullValue>("NullValue")
+ }
+}
+
+static file_descriptor_proto_data: &'static [u8] = b"\
+ \n\x1cgoogle/protobuf/struct.proto\x12\x0fgoogle.protobuf\"\x98\x01\n\
+ \x06Struct\x12;\n\x06fields\x18\x01\x20\x03(\x0b2#.google.protobuf.Struc\
+ t.FieldsEntryR\x06fields\x1aQ\n\x0bFieldsEntry\x12\x10\n\x03key\x18\x01\
+ \x20\x01(\tR\x03key\x12,\n\x05value\x18\x02\x20\x01(\x0b2\x16.google.pro\
+ tobuf.ValueR\x05value:\x028\x01\"\xb2\x02\n\x05Value\x12;\n\nnull_value\
+ \x18\x01\x20\x01(\x0e2\x1a.google.protobuf.NullValueH\0R\tnullValue\x12#\
+ \n\x0cnumber_value\x18\x02\x20\x01(\x01H\0R\x0bnumberValue\x12#\n\x0cstr\
+ ing_value\x18\x03\x20\x01(\tH\0R\x0bstringValue\x12\x1f\n\nbool_value\
+ \x18\x04\x20\x01(\x08H\0R\tboolValue\x12<\n\x0cstruct_value\x18\x05\x20\
+ \x01(\x0b2\x17.google.protobuf.StructH\0R\x0bstructValue\x12;\n\nlist_va\
+ lue\x18\x06\x20\x01(\x0b2\x1a.google.protobuf.ListValueH\0R\tlistValueB\
+ \x06\n\x04kind\";\n\tListValue\x12.\n\x06values\x18\x01\x20\x03(\x0b2\
+ \x16.google.protobuf.ValueR\x06values*\x1b\n\tNullValue\x12\x0e\n\nNULL_\
+ VALUE\x10\0B\x7f\n\x13com.google.protobufB\x0bStructProtoP\x01Z/google.g\
+ olang.org/protobuf/types/known/structpb\xf8\x01\x01\xa2\x02\x03GPB\xaa\
+ \x02\x1eGoogle.Protobuf.WellKnownTypesJ\x9a\x1d\n\x06\x12\x04\x1e\0^\x01\
+ \n\xcc\x0c\n\x01\x0c\x12\x03\x1e\0\x122\xc1\x0c\x20Protocol\x20Buffers\
+ \x20-\x20Google's\x20data\x20interchange\x20format\n\x20Copyright\x20200\
+ 8\x20Google\x20Inc.\x20\x20All\x20rights\x20reserved.\n\x20https://devel\
+ opers.google.com/protocol-buffers/\n\n\x20Redistribution\x20and\x20use\
+ \x20in\x20source\x20and\x20binary\x20forms,\x20with\x20or\x20without\n\
+ \x20modification,\x20are\x20permitted\x20provided\x20that\x20the\x20foll\
+ owing\x20conditions\x20are\n\x20met:\n\n\x20\x20\x20\x20\x20*\x20Redistr\
+ ibutions\x20of\x20source\x20code\x20must\x20retain\x20the\x20above\x20co\
+ pyright\n\x20notice,\x20this\x20list\x20of\x20conditions\x20and\x20the\
+ \x20following\x20disclaimer.\n\x20\x20\x20\x20\x20*\x20Redistributions\
+ \x20in\x20binary\x20form\x20must\x20reproduce\x20the\x20above\n\x20copyr\
+ ight\x20notice,\x20this\x20list\x20of\x20conditions\x20and\x20the\x20fol\
+ lowing\x20disclaimer\n\x20in\x20the\x20documentation\x20and/or\x20other\
+ \x20materials\x20provided\x20with\x20the\n\x20distribution.\n\x20\x20\
+ \x20\x20\x20*\x20Neither\x20the\x20name\x20of\x20Google\x20Inc.\x20nor\
+ \x20the\x20names\x20of\x20its\n\x20contributors\x20may\x20be\x20used\x20\
+ to\x20endorse\x20or\x20promote\x20products\x20derived\x20from\n\x20this\
+ \x20software\x20without\x20specific\x20prior\x20written\x20permission.\n\
+ \n\x20THIS\x20SOFTWARE\x20IS\x20PROVIDED\x20BY\x20THE\x20COPYRIGHT\x20HO\
+ LDERS\x20AND\x20CONTRIBUTORS\n\x20\"AS\x20IS\"\x20AND\x20ANY\x20EXPRESS\
+ \x20OR\x20IMPLIED\x20WARRANTIES,\x20INCLUDING,\x20BUT\x20NOT\n\x20LIMITE\
+ D\x20TO,\x20THE\x20IMPLIED\x20WARRANTIES\x20OF\x20MERCHANTABILITY\x20AND\
+ \x20FITNESS\x20FOR\n\x20A\x20PARTICULAR\x20PURPOSE\x20ARE\x20DISCLAIMED.\
+ \x20IN\x20NO\x20EVENT\x20SHALL\x20THE\x20COPYRIGHT\n\x20OWNER\x20OR\x20C\
+ ONTRIBUTORS\x20BE\x20LIABLE\x20FOR\x20ANY\x20DIRECT,\x20INDIRECT,\x20INC\
+ IDENTAL,\n\x20SPECIAL,\x20EXEMPLARY,\x20OR\x20CONSEQUENTIAL\x20DAMAGES\
+ \x20(INCLUDING,\x20BUT\x20NOT\n\x20LIMITED\x20TO,\x20PROCUREMENT\x20OF\
+ \x20SUBSTITUTE\x20GOODS\x20OR\x20SERVICES;\x20LOSS\x20OF\x20USE,\n\x20DA\
+ TA,\x20OR\x20PROFITS;\x20OR\x20BUSINESS\x20INTERRUPTION)\x20HOWEVER\x20C\
+ AUSED\x20AND\x20ON\x20ANY\n\x20THEORY\x20OF\x20LIABILITY,\x20WHETHER\x20\
+ IN\x20CONTRACT,\x20STRICT\x20LIABILITY,\x20OR\x20TORT\n\x20(INCLUDING\
+ \x20NEGLIGENCE\x20OR\x20OTHERWISE)\x20ARISING\x20IN\x20ANY\x20WAY\x20OUT\
+ \x20OF\x20THE\x20USE\n\x20OF\x20THIS\x20SOFTWARE,\x20EVEN\x20IF\x20ADVIS\
+ ED\x20OF\x20THE\x20POSSIBILITY\x20OF\x20SUCH\x20DAMAGE.\n\n\x08\n\x01\
+ \x02\x12\x03\x20\0\x18\n\x08\n\x01\x08\x12\x03\"\0;\n\t\n\x02\x08%\x12\
+ \x03\"\0;\n\x08\n\x01\x08\x12\x03#\0\x1f\n\t\n\x02\x08\x1f\x12\x03#\0\
+ \x1f\n\x08\n\x01\x08\x12\x03$\0F\n\t\n\x02\x08\x0b\x12\x03$\0F\n\x08\n\
+ \x01\x08\x12\x03%\0,\n\t\n\x02\x08\x01\x12\x03%\0,\n\x08\n\x01\x08\x12\
+ \x03&\0,\n\t\n\x02\x08\x08\x12\x03&\0,\n\x08\n\x01\x08\x12\x03'\0\"\n\t\
+ \n\x02\x08\n\x12\x03'\0\"\n\x08\n\x01\x08\x12\x03(\0!\n\t\n\x02\x08$\x12\
+ \x03(\0!\n\xb3\x03\n\x02\x04\0\x12\x042\05\x01\x1a\xa6\x03\x20`Struct`\
+ \x20represents\x20a\x20structured\x20data\x20value,\x20consisting\x20of\
+ \x20fields\n\x20which\x20map\x20to\x20dynamically\x20typed\x20values.\
+ \x20In\x20some\x20languages,\x20`Struct`\n\x20might\x20be\x20supported\
+ \x20by\x20a\x20native\x20representation.\x20For\x20example,\x20in\n\x20s\
+ cripting\x20languages\x20like\x20JS\x20a\x20struct\x20is\x20represented\
+ \x20as\x20an\n\x20object.\x20The\x20details\x20of\x20that\x20representat\
+ ion\x20are\x20described\x20together\n\x20with\x20the\x20proto\x20support\
+ \x20for\x20the\x20language.\n\n\x20The\x20JSON\x20representation\x20for\
+ \x20`Struct`\x20is\x20JSON\x20object.\n\n\n\n\x03\x04\0\x01\x12\x032\x08\
+ \x0e\n9\n\x04\x04\0\x02\0\x12\x034\x02\x20\x1a,\x20Unordered\x20map\x20o\
+ f\x20dynamically\x20typed\x20values.\n\n\x0c\n\x05\x04\0\x02\0\x06\x12\
+ \x034\x02\x14\n\x0c\n\x05\x04\0\x02\0\x01\x12\x034\x15\x1b\n\x0c\n\x05\
+ \x04\0\x02\0\x03\x12\x034\x1e\x1f\n\xc4\x02\n\x02\x04\x01\x12\x04=\0M\
+ \x01\x1a\xb7\x02\x20`Value`\x20represents\x20a\x20dynamically\x20typed\
+ \x20value\x20which\x20can\x20be\x20either\n\x20null,\x20a\x20number,\x20\
+ a\x20string,\x20a\x20boolean,\x20a\x20recursive\x20struct\x20value,\x20o\
+ r\x20a\n\x20list\x20of\x20values.\x20A\x20producer\x20of\x20value\x20is\
+ \x20expected\x20to\x20set\x20one\x20of\x20these\n\x20variants.\x20Absenc\
+ e\x20of\x20any\x20variant\x20indicates\x20an\x20error.\n\n\x20The\x20JSO\
+ N\x20representation\x20for\x20`Value`\x20is\x20JSON\x20value.\n\n\n\n\
+ \x03\x04\x01\x01\x12\x03=\x08\r\n\"\n\x04\x04\x01\x08\0\x12\x04?\x02L\
+ \x03\x1a\x14\x20The\x20kind\x20of\x20value.\n\n\x0c\n\x05\x04\x01\x08\0\
+ \x01\x12\x03?\x08\x0c\n'\n\x04\x04\x01\x02\0\x12\x03A\x04\x1d\x1a\x1a\
+ \x20Represents\x20a\x20null\x20value.\n\n\x0c\n\x05\x04\x01\x02\0\x06\
+ \x12\x03A\x04\r\n\x0c\n\x05\x04\x01\x02\0\x01\x12\x03A\x0e\x18\n\x0c\n\
+ \x05\x04\x01\x02\0\x03\x12\x03A\x1b\x1c\n)\n\x04\x04\x01\x02\x01\x12\x03\
+ C\x04\x1c\x1a\x1c\x20Represents\x20a\x20double\x20value.\n\n\x0c\n\x05\
+ \x04\x01\x02\x01\x05\x12\x03C\x04\n\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\
+ \x03C\x0b\x17\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03C\x1a\x1b\n)\n\x04\
+ \x04\x01\x02\x02\x12\x03E\x04\x1c\x1a\x1c\x20Represents\x20a\x20string\
+ \x20value.\n\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03E\x04\n\n\x0c\n\x05\
+ \x04\x01\x02\x02\x01\x12\x03E\x0b\x17\n\x0c\n\x05\x04\x01\x02\x02\x03\
+ \x12\x03E\x1a\x1b\n*\n\x04\x04\x01\x02\x03\x12\x03G\x04\x18\x1a\x1d\x20R\
+ epresents\x20a\x20boolean\x20value.\n\n\x0c\n\x05\x04\x01\x02\x03\x05\
+ \x12\x03G\x04\x08\n\x0c\n\x05\x04\x01\x02\x03\x01\x12\x03G\t\x13\n\x0c\n\
+ \x05\x04\x01\x02\x03\x03\x12\x03G\x16\x17\n-\n\x04\x04\x01\x02\x04\x12\
+ \x03I\x04\x1c\x1a\x20\x20Represents\x20a\x20structured\x20value.\n\n\x0c\
+ \n\x05\x04\x01\x02\x04\x06\x12\x03I\x04\n\n\x0c\n\x05\x04\x01\x02\x04\
+ \x01\x12\x03I\x0b\x17\n\x0c\n\x05\x04\x01\x02\x04\x03\x12\x03I\x1a\x1b\n\
+ -\n\x04\x04\x01\x02\x05\x12\x03K\x04\x1d\x1a\x20\x20Represents\x20a\x20r\
+ epeated\x20`Value`.\n\n\x0c\n\x05\x04\x01\x02\x05\x06\x12\x03K\x04\r\n\
+ \x0c\n\x05\x04\x01\x02\x05\x01\x12\x03K\x0e\x18\n\x0c\n\x05\x04\x01\x02\
+ \x05\x03\x12\x03K\x1b\x1c\n\xa9\x01\n\x02\x05\0\x12\x04S\0V\x01\x1a\x9c\
+ \x01\x20`NullValue`\x20is\x20a\x20singleton\x20enumeration\x20to\x20repr\
+ esent\x20the\x20null\x20value\x20for\x20the\n\x20`Value`\x20type\x20unio\
+ n.\n\n\x20\x20The\x20JSON\x20representation\x20for\x20`NullValue`\x20is\
+ \x20JSON\x20`null`.\n\n\n\n\x03\x05\0\x01\x12\x03S\x05\x0e\n\x1a\n\x04\
+ \x05\0\x02\0\x12\x03U\x02\x11\x1a\r\x20Null\x20value.\n\n\x0c\n\x05\x05\
+ \0\x02\0\x01\x12\x03U\x02\x0c\n\x0c\n\x05\x05\0\x02\0\x02\x12\x03U\x0f\
+ \x10\n\x82\x01\n\x02\x04\x02\x12\x04[\0^\x01\x1av\x20`ListValue`\x20is\
+ \x20a\x20wrapper\x20around\x20a\x20repeated\x20field\x20of\x20values.\n\
+ \n\x20The\x20JSON\x20representation\x20for\x20`ListValue`\x20is\x20JSON\
+ \x20array.\n\n\n\n\x03\x04\x02\x01\x12\x03[\x08\x11\n:\n\x04\x04\x02\x02\
+ \0\x12\x03]\x02\x1c\x1a-\x20Repeated\x20field\x20of\x20dynamically\x20ty\
+ ped\x20values.\n\n\x0c\n\x05\x04\x02\x02\0\x04\x12\x03]\x02\n\n\x0c\n\
+ \x05\x04\x02\x02\0\x06\x12\x03]\x0b\x10\n\x0c\n\x05\x04\x02\x02\0\x01\
+ \x12\x03]\x11\x17\n\x0c\n\x05\x04\x02\x02\0\x03\x12\x03]\x1a\x1bb\x06pro\
+ to3\
+";
+
+/// `FileDescriptorProto` object which was a source for this generated file
+fn file_descriptor_proto() -> &'static crate::descriptor::FileDescriptorProto {
+ static file_descriptor_proto_lazy: crate::rt::Lazy<crate::descriptor::FileDescriptorProto> = crate::rt::Lazy::new();
+ file_descriptor_proto_lazy.get(|| {
+ crate::Message::parse_from_bytes(file_descriptor_proto_data).unwrap()
+ })
+}
+
+/// `FileDescriptor` object which allows dynamic access to files
+pub fn file_descriptor() -> &'static crate::reflect::FileDescriptor {
+ static generated_file_descriptor_lazy: crate::rt::Lazy<crate::reflect::GeneratedFileDescriptor> = crate::rt::Lazy::new();
+ static file_descriptor: crate::rt::Lazy<crate::reflect::FileDescriptor> = crate::rt::Lazy::new();
+ file_descriptor.get(|| {
+ let generated_file_descriptor = generated_file_descriptor_lazy.get(|| {
+ let mut deps = ::std::vec::Vec::with_capacity(0);
+ let mut messages = ::std::vec::Vec::with_capacity(3);
+ messages.push(Struct::generated_message_descriptor_data());
+ messages.push(Value::generated_message_descriptor_data());
+ messages.push(ListValue::generated_message_descriptor_data());
+ let mut enums = ::std::vec::Vec::with_capacity(1);
+ enums.push(NullValue::generated_enum_descriptor_data());
+ crate::reflect::GeneratedFileDescriptor::new_generated(
+ file_descriptor_proto(),
+ deps,
+ messages,
+ enums,
+ )
+ });
+ crate::reflect::FileDescriptor::new_generated_2(generated_file_descriptor)
+ })
+}