From af54e006bc7019c2b2d3a113fb16e55e246af674 Mon Sep 17 00:00:00 2001 From: Blizzard Finnegan Date: Mon, 22 Sep 2025 11:14:29 -0600 Subject: [PATCH 01/18] Blind copy of changes in PR #574 Does not compile, incomplete. --- prost-build/src/code_generator.rs | 16 +++ prost-build/src/config.rs | 29 +++++ prost-derive/src/field/mod.rs | 14 +++ prost-derive/src/field/unknown.rs | 66 +++++++++++ prost-derive/src/lib.rs | 32 +++++- prost/src/lib.rs | 2 + prost/src/unknown.rs | 180 ++++++++++++++++++++++++++++++ protobuf/build.rs | 1 + tests/build.rs | 5 + tests/src/unknown_fields.proto | 13 +++ tests/src/unknown_fields.rs | 61 ++++++++++ 11 files changed, 416 insertions(+), 3 deletions(-) create mode 100644 prost-derive/src/field/unknown.rs create mode 100644 prost/src/unknown.rs create mode 100644 tests/src/unknown_fields.proto create mode 100644 tests/src/unknown_fields.rs diff --git a/prost-build/src/code_generator.rs b/prost-build/src/code_generator.rs index 7314c69e6..ba52265eb 100644 --- a/prost-build/src/code_generator.rs +++ b/prost-build/src/code_generator.rs @@ -279,6 +279,14 @@ impl<'b> CodeGenerator<'_, 'b> { } self.path.pop(); } + if let Some(field_name) = self + .config + .include_unknown_fields + .get_first(&fq_message_name) + .cloned() + { + self.append_unknown_field_set(&fq_message_name, &field_name); + } self.path.pop(); self.path.push(8); @@ -581,6 +589,14 @@ impl<'b> CodeGenerator<'_, 'b> { )); } + fn append_unknown_field_set(&mut self, fq_message_name: &str, field_name: &str) { + self.buf.push_str("#[prost(unknown)]\n"); + self.append_field_attributes(fq_message_name, field_name); + self.push_indent(); + self.buf + .push_str(&format!("pub {}: ::prost::UnknownFieldSet,\n", field_name,)); + } + fn append_oneof_field( &mut self, message_name: &str, diff --git a/prost-build/src/config.rs b/prost-build/src/config.rs index d002b2b98..dedad1951 100644 --- a/prost-build/src/config.rs +++ b/prost-build/src/config.rs @@ -36,6 +36,7 @@ pub struct Config { pub(crate) message_attributes: PathMap, pub(crate) enum_attributes: PathMap, pub(crate) field_attributes: PathMap, + pub(crate) include_unknown_fields: PathMap, pub(crate) boxed: PathMap<()>, pub(crate) prost_types: bool, pub(crate) strip_enum_prefix: bool, @@ -266,6 +267,32 @@ impl Config { self } + /// Preserve unknown fields for the message type. + /// + /// # Arguments + /// + /// **`paths`** - paths to specific messages, or packages which should preserve unknown + /// fields during deserialization. + /// + /// **`field_name`** - the name of the field to place unknown fields in. A field with this + /// name and type `prost::UnknownFieldSet` will be added to the generated struct + /// + /// # Examples + /// + /// ```rust + /// # let mut config = prost_build::Config::new(); + /// config.include_unknown_fields(".my_messages.MyMessageType", "unknown_fields"); + /// ``` + pub fn include_unknown_fields(&mut self, path: P, field_name: A) -> &mut Self + where + P: AsRef, + A: AsRef, + { + self.include_unknown_fields + .insert(path.as_ref().to_string(), field_name.as_ref().to_string()); + self + } + /// Add additional attribute to matched messages. /// /// # Arguments @@ -1202,6 +1229,7 @@ impl default::Default for Config { message_attributes: PathMap::default(), enum_attributes: PathMap::default(), field_attributes: PathMap::default(), + include_unknown_fields: PathMap::default(), boxed: PathMap::default(), prost_types: true, strip_enum_prefix: true, @@ -1234,6 +1262,7 @@ impl fmt::Debug for Config { .field("bytes_type", &self.bytes_type) .field("type_attributes", &self.type_attributes) .field("field_attributes", &self.field_attributes) + .field("include_unknown_fields", &self.include_unknown_fields) .field("prost_types", &self.prost_types) .field("strip_enum_prefix", &self.strip_enum_prefix) .field("out_dir", &self.out_dir) diff --git a/prost-derive/src/field/mod.rs b/prost-derive/src/field/mod.rs index d3922b1b4..8e0cee982 100644 --- a/prost-derive/src/field/mod.rs +++ b/prost-derive/src/field/mod.rs @@ -3,6 +3,7 @@ mod map; mod message; mod oneof; mod scalar; +mod unknown; use std::fmt; use std::slice; @@ -26,6 +27,8 @@ pub enum Field { Oneof(oneof::Field), /// A group field. Group(group::Field), + /// A set of unknown message fields. + Unknown(unknown::Field) } impl Field { @@ -48,6 +51,8 @@ impl Field { Field::Oneof(field) } else if let Some(field) = group::Field::new(&attrs, inferred_tag)? { Field::Group(field) + } else if let Some(field) = unknown::Field::new(&attrs)? { + Field::Unknown(field) } else { bail!("no type attribute"); }; @@ -86,6 +91,7 @@ impl Field { Field::Map(ref map) => vec![map.tag], Field::Oneof(ref oneof) => oneof.tags.clone(), Field::Group(ref group) => vec![group.tag], + Field::Unknown(_) => vec![], } } @@ -97,6 +103,7 @@ impl Field { Field::Map(ref map) => map.encode(prost_path, ident), Field::Oneof(ref oneof) => oneof.encode(ident), Field::Group(ref group) => group.encode(prost_path, ident), + Field::Unknown(ref unknown) => unknown.encode(ident), } } @@ -109,6 +116,7 @@ impl Field { Field::Map(ref map) => map.merge(prost_path, ident), Field::Oneof(ref oneof) => oneof.merge(ident), Field::Group(ref group) => group.merge(prost_path, ident), + Field::Unknown(ref unknown) => unknown.merge(ident), } } @@ -120,6 +128,7 @@ impl Field { Field::Message(ref msg) => msg.encoded_len(prost_path, ident), Field::Oneof(ref oneof) => oneof.encoded_len(ident), Field::Group(ref group) => group.encoded_len(prost_path, ident), + Field::Unknown(ref unknown) => unknown.encoded_len(ident), } } @@ -131,6 +140,7 @@ impl Field { Field::Map(ref map) => map.clear(ident), Field::Oneof(ref oneof) => oneof.clear(ident), Field::Group(ref group) => group.clear(ident), + Field::Unknown(ref unknown) => unknown.clear(ident), } } @@ -173,6 +183,10 @@ impl Field { _ => None, } } + + pub fn is_unknown(&self) -> bool { + matches!(self, Field::Unknown(_)) + } } #[derive(Clone, Copy, PartialEq, Eq)] diff --git a/prost-derive/src/field/unknown.rs b/prost-derive/src/field/unknown.rs new file mode 100644 index 000000000..51b66df5d --- /dev/null +++ b/prost-derive/src/field/unknown.rs @@ -0,0 +1,66 @@ +use anyhow::{bail, Error}; +use proc_macro2::TokenStream; +use quote::quote; +use syn::Meta; + +use crate::field::{set_bool, word_attr}; + +#[derive(Clone)] +pub struct Field {} + +impl Field { + pub fn new(attrs: &[Meta]) -> Result, Error> { + let mut unknown = false; + let mut unknown_attrs = Vec::new(); + + for attr in attrs { + if word_attr("unknown", attr) { + set_bool(&mut unknown, "duplicate message attribute")?; + } else { + unknown_attrs.push(attr); + } + } + + if !unknown { + return Ok(None); + } + + match unknown_attrs.len() { + 0 => (), + 1 => bail!( + "unknown attribute for unknown field set: {:?}", + unknown_attrs[0] + ), + _ => bail!( + "unknown attributes for unknown field set: {:?}", + unknown_attrs + ), + } + + Ok(Some(Field {})) + } + + pub fn encode(&self, ident: TokenStream) -> TokenStream { + quote! { + #ident.encode_raw(buf) + } + } + + pub fn merge(&self, ident: TokenStream) -> TokenStream { + quote! { + #ident.merge_field(tag, wire_type, buf, ctx) + } + } + + pub fn encoded_len(&self, ident: TokenStream) -> TokenStream { + quote! { + #ident.encoded_len() + } + } + + pub fn clear(&self, ident: TokenStream) -> TokenStream { + quote! { + #ident.clear() + } + } +} diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index 8c488ff6d..20dfc609c 100644 --- a/prost-derive/src/lib.rs +++ b/prost-derive/src/lib.rs @@ -84,11 +84,17 @@ fn try_message(input: TokenStream) -> Result { // We want Debug to be in declaration order let unsorted_fields = fields.clone(); - // Sort the fields by tag number so that fields will be encoded in tag order. + // Sort the fields by tag number so that fields will be encoded in tag order, + // and unknown fields are encoded last. // TODO: This encodes oneof fields in the position of their lowest tag, // regardless of the currently occupied variant, is that consequential? // See: https://developers.google.com/protocol-buffers/docs/encoding#order - fields.sort_by_key(|(_, field)| field.tags().into_iter().min().unwrap()); + fields.sort_by_key(|(_, field)| { + ( + field.is_unknown(), + field.tags().into_iter().min().unwrap_or(0) + ) + }); let fields = fields; if let Some(duplicate_tag) = fields @@ -113,6 +119,9 @@ fn try_message(input: TokenStream) -> Result { .map(|(field_ident, field)| field.encode(&prost_path, quote!(self.#field_ident))); let merge = fields.iter().map(|(field_ident, field)| { + if field.is_unknown(){ + return quote!(); + } let merge = field.merge(&prost_path, quote!(value)); let tags = field.tags().into_iter().map(|tag| quote!(#tag)); let tags = Itertools::intersperse(tags, quote!(|)); @@ -127,6 +136,23 @@ fn try_message(input: TokenStream) -> Result { }, } }); + let merge_fallback = match fields.iter().find(|&(_, f)| f.is_unknown()) { + Some((field_ident, field)) => { + let merge = field.merge(quote!(value)); + quote! { + _ => { + let mut value = &mut self.#field_ident; + #merge.map_err(|mut error| { + error.push(STRUCT_NAME, stringify!(#field_ident)); + error + }) + }, + } + } + None => quote! { + _ => ::prost::encoding::skip_field(wire_type, tag, buf, ctx), + }, + }; let struct_name = if fields.is_empty() { quote!() @@ -192,7 +218,7 @@ fn try_message(input: TokenStream) -> Result { #struct_name match tag { #(#merge)* - _ => #prost_path::encoding::skip_field(wire_type, tag, buf, ctx), + #merge_fallback } } diff --git a/prost/src/lib.rs b/prost/src/lib.rs index 7526b8459..1278a335b 100644 --- a/prost/src/lib.rs +++ b/prost/src/lib.rs @@ -13,6 +13,7 @@ mod error; mod message; mod name; mod types; +mod unknown; #[doc(hidden)] pub mod encoding; @@ -23,6 +24,7 @@ pub use crate::encoding::length_delimiter::{ pub use crate::error::{DecodeError, EncodeError, UnknownEnumValue}; pub use crate::message::Message; pub use crate::name::Name; +pub use crate::unknown::{UnknownField, UnknownFieldIter, UnknownFieldSet}; // See `encoding::DecodeContext` for more info. // 100 is the default recursion limit in the C++ implementation. diff --git a/prost/src/unknown.rs b/prost/src/unknown.rs new file mode 100644 index 000000000..aab8a93f5 --- /dev/null +++ b/prost/src/unknown.rs @@ -0,0 +1,180 @@ +use alloc::collections::btree_map::{self, BTreeMap}; +use alloc::vec::Vec; +use core::slice; + +use bytes::{Buf, BufMut, Bytes}; + +use crate::encoding::{self, DecodeContext, WireType}; +use crate::{DecodeError, Message}; + +/// A set of unknown fields in a protobuf message. +#[derive(Debug, Default, Clone, PartialEq)] +pub struct UnknownFieldSet { + fields: BTreeMap>, +} + +/// An unknown field in a protobuf message. +#[derive(Debug, Clone, PartialEq)] +pub enum UnknownField { + /// An unknown field with the `Varint` wire type. + Varint(u64), + /// An unknown field with the `SixtyFourBit` wire type. + SixtyFourBit([u8; 8]), + /// An unknown field with the `LengthDelimited` wire type. + LengthDelimited(Bytes), + /// An unknown field with the group wire type. + Group(UnknownFieldSet), + /// An unknown field with the `ThirtyTwoBit` wire type. + ThirtyTwoBit([u8; 4]), +} + +/// An iterator over the fields of an [UnknownFieldSet]. +#[derive(Debug)] +pub struct UnknownFieldIter<'a> { + tags_iter: btree_map::Iter<'a, u32, Vec>, + current_tag: Option<(u32, slice::Iter<'a, UnknownField>)>, +} + +impl UnknownFieldSet { + /// Creates an empty [UnknownFieldSet]. + pub fn new() -> Self { + Default::default() + } + + /// Gets an iterator over the fields contained in this set. + pub fn iter(&self) -> UnknownFieldIter<'_> { + UnknownFieldIter { + tags_iter: self.fields.iter(), + current_tag: None, + } + } +} + +impl<'a> Iterator for UnknownFieldIter<'a> { + type Item = (u32, &'a UnknownField); + + fn next(&mut self) -> Option { + loop { + if let Some((tag, iter)) = &mut self.current_tag { + if let Some(value) = iter.next() { + return Some((*tag, value)); + } else { + self.current_tag = None; + } + } + if let Some((tag, values)) = self.tags_iter.next() { + self.current_tag = Some((*tag, values.iter())); + } else { + return None; + } + } + } +} + +impl Message for UnknownFieldSet { + fn encode_raw(&self, buf: &mut B) + where + B: BufMut, + Self: Sized, + { + for (&tag, fields) in &self.fields { + for field in fields { + match field { + UnknownField::Varint(value) => { + encoding::encode_key(tag, WireType::Varint, buf); + encoding::encode_varint(*value, buf); + } + UnknownField::SixtyFourBit(value) => { + encoding::encode_key(tag, WireType::SixtyFourBit, buf); + buf.put_slice(value); + } + UnknownField::LengthDelimited(value) => { + encoding::bytes::encode(tag, value, buf); + } + UnknownField::Group(value) => { + encoding::group::encode(tag, value, buf); + } + UnknownField::ThirtyTwoBit(value) => { + encoding::encode_key(tag, WireType::ThirtyTwoBit, buf); + buf.put_slice(value); + } + } + } + } + } + + fn merge_field( + &mut self, + tag: u32, + wire_type: WireType, + buf: &mut B, + ctx: DecodeContext, + ) -> Result<(), DecodeError> + where + B: Buf, + Self: Sized, + { + let field = match wire_type { + WireType::Varint => { + let value = encoding::decode_varint(buf)?; + UnknownField::Varint(value) + } + WireType::SixtyFourBit => { + let mut value = [0; 8]; + if buf.remaining() < value.len() { + return Err(DecodeError::new("buffer underflow")); + } + buf.copy_to_slice(&mut value); + UnknownField::SixtyFourBit(value) + } + WireType::LengthDelimited => { + let mut value = Bytes::default(); + encoding::bytes::merge(wire_type, &mut value, buf, ctx)?; + UnknownField::LengthDelimited(value) + } + WireType::StartGroup => { + let mut value = UnknownFieldSet::default(); + encoding::group::merge(tag, wire_type, &mut value, buf, ctx)?; + UnknownField::Group(value) + } + WireType::EndGroup => { + return Err(DecodeError::new("unexpected end group tag")); + } + WireType::ThirtyTwoBit => { + let mut value = [0; 4]; + if buf.remaining() < value.len() { + return Err(DecodeError::new("buffer underflow")); + } + buf.copy_to_slice(&mut value); + UnknownField::ThirtyTwoBit(value) + } + }; + + self.fields.entry(tag).or_default().push(field); + Ok(()) + } + + fn encoded_len(&self) -> usize { + let mut len = 0; + for (&tag, fields) in &self.fields { + for field in fields { + len += match field { + UnknownField::Varint(value) => { + encoding::key_len(tag) + encoding::encoded_len_varint(*value) + } + UnknownField::SixtyFourBit(value) => encoding::key_len(tag) + value.len(), + UnknownField::LengthDelimited(value) => { + encoding::bytes::encoded_len(tag, value) + } + UnknownField::Group(value) => encoding::group::encoded_len(tag, value), + UnknownField::ThirtyTwoBit(value) => encoding::key_len(tag) + value.len(), + }; + } + } + len + } + + fn clear(&mut self) { + self.fields.clear(); + } +} diff --git a/protobuf/build.rs b/protobuf/build.rs index 431e4cae7..87af107d4 100644 --- a/protobuf/build.rs +++ b/protobuf/build.rs @@ -54,6 +54,7 @@ fn main() -> Result<()> { prost_build::Config::new() .protoc_executable(&protoc_executable) .btree_map(["."]) + .include_unknown_fields(".", "unknown_fields") .compile_protos( &[ proto_dir.join("google/protobuf/test_messages_proto2.proto"), diff --git a/tests/build.rs b/tests/build.rs index c1b2ba686..a812018e3 100644 --- a/tests/build.rs +++ b/tests/build.rs @@ -27,6 +27,7 @@ fn main() { // values. let mut config = prost_build::Config::new(); config.btree_map(["."]); + config.include_unknown_fields(".unknown_fields", "unknown_fields"); config.type_attribute( "Foo.Custom.OneOfAttrs.Msg.field", "#[derive(PartialOrd, Ord)]", @@ -186,6 +187,10 @@ fn main() { .compile_protos(&[src.join("no_package.proto")], includes) .unwrap(); + config + .compile_protos(&[src.join("unknown_fields.proto")], includes) + .unwrap(); + let out_dir = PathBuf::from(env::var("OUT_DIR").expect("OUT_DIR environment variable not set")); // Check that attempting to compile a .proto without a package declaration succeeds. diff --git a/tests/src/unknown_fields.proto b/tests/src/unknown_fields.proto new file mode 100644 index 000000000..c8e5a829c --- /dev/null +++ b/tests/src/unknown_fields.proto @@ -0,0 +1,13 @@ +syntax = "proto3"; + +package unknown_fields; + +message V1 { +} + +message V2 { + int32 a = 1; + fixed32 b = 2; + fixed64 c = 3; + string d = 4; +} diff --git a/tests/src/unknown_fields.rs b/tests/src/unknown_fields.rs new file mode 100644 index 000000000..565901e09 --- /dev/null +++ b/tests/src/unknown_fields.rs @@ -0,0 +1,61 @@ +include!(concat!(env!("OUT_DIR"), "/unknown_fields.rs")); + +#[cfg(feature = "std")] +#[test] +fn test_iter_unknown_fields() { + use prost::{Message, UnknownField}; + + let v2 = V2 { + a: 12345, + b: 6, + c: 7, + d: "hello".to_owned(), + unknown_fields: Default::default(), + }; + + let bytes = v2.encode_to_vec(); + let v1 = V1::decode(&*bytes).unwrap(); + + let mut fields = v1.unknown_fields.iter(); + assert_eq!(fields.next(), Some((1, &UnknownField::Varint(12345)))); + assert_eq!( + fields.next(), + Some((2, &UnknownField::ThirtyTwoBit([0x6, 0, 0, 0]))) + ); + assert_eq!( + fields.next(), + Some((3, &UnknownField::SixtyFourBit([0x7, 0, 0, 0, 0, 0, 0, 0]))) + ); + assert_eq!( + fields.next(), + Some(( + 4, + &UnknownField::LengthDelimited(bytes::Bytes::from(&b"hello"[..])) + )) + ); + assert_eq!(fields.next(), None); + + assert_eq!(v2.unknown_fields.iter().count(), 0); +} + +#[cfg(feature = "std")] +#[test] +fn test_roundtrip_unknown_fields() { + use prost::Message; + + let original = V2 { + a: 12345, + b: 6, + c: 7, + d: "hello".to_owned(), + unknown_fields: Default::default(), + }; + + let original_bytes = original.encode_to_vec(); + let roundtripped_bytes = V1::decode(&*original_bytes).unwrap().encode_to_vec(); + + let roundtripped = V2::decode(&*roundtripped_bytes).unwrap(); + assert_eq!(original, roundtripped); + assert_eq!(roundtripped.unknown_fields.iter().count(), 0); +} + From 63ad8309d02e229bd9f7c7af8c99c8ebae635cd2 Mon Sep 17 00:00:00 2001 From: Blizzard Finnegan Date: Mon, 22 Sep 2025 11:44:06 -0600 Subject: [PATCH 02/18] Begin implementing necessary changes - Rename UnknownFieldSet to UnknownFieldList, as requested by maintainer caspermeijn - Change fixed32 and fixed64 representation to be consistent with C++ implementation, as requested by caspermeijn - start resolving build-time errors - Currently failing with reexported crate issues --- benchmarks/benches/dataset.rs | 2 +- grep_output.txt | 34802 ++++++++++++++++++++++++++++ prost-build/src/code_generator.rs | 4 +- prost-build/src/config.rs | 2 +- prost-derive/src/field/mod.rs | 2 +- prost-derive/src/lib.rs | 8 +- prost/src/lib.rs | 2 +- prost/src/unknown.rs | 30 +- tests/src/lib.rs | 2 + tests/src/unknown_fields.rs | 1 - 10 files changed, 34828 insertions(+), 27 deletions(-) create mode 100644 grep_output.txt diff --git a/benchmarks/benches/dataset.rs b/benchmarks/benches/dataset.rs index eb8f1ee25..b4a0d52de 100644 --- a/benchmarks/benches/dataset.rs +++ b/benchmarks/benches/dataset.rs @@ -37,7 +37,7 @@ fn benchmark_dataset(criterion: &mut Criterion, name: &str, dataset: &'static where M: prost::Message + Default + 'static, { - let mut group = criterion.benchmark_group(&format!("dataset/{}", name)); + let mut group = criterion.benchmark_group(format!("dataset/{}", name)); group.bench_function("merge", move |b| { let dataset = load_dataset(dataset).unwrap(); diff --git a/grep_output.txt b/grep_output.txt new file mode 100644 index 000000000..3115a4c56 --- /dev/null +++ b/grep_output.txt @@ -0,0 +1,34802 @@ +prost-build/src/config.rs-275- /// fields during deserialization. +prost-build/src/config.rs-276- /// +prost-build/src/config.rs-277- /// **`field_name`** - the name of the field to place unknown fields in. A field with this +prost-build/src/config.rs:278: /// name and type `prost::UnknownFieldSet` will be added to the generated struct +prost-build/src/config.rs-279- /// +prost-build/src/config.rs-280- /// # Examples +prost-build/src/config.rs-281- /// +-- +prost-build/src/code_generator.rs-594- self.append_field_attributes(fq_message_name, field_name); +prost-build/src/code_generator.rs-595- self.push_indent(); +prost-build/src/code_generator.rs-596- self.buf +prost-build/src/code_generator.rs:597: .push_str(&format!("pub {}: ::prost::UnknownFieldSet,\n", field_name,)); +prost-build/src/code_generator.rs-598- } +prost-build/src/code_generator.rs-599- +prost-build/src/code_generator.rs-600- fn append_oneof_field( +-- +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:1:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":15778,"byte_end":15793,"line_start":305,"line_end":305,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":15778,"byte_end":15793,"line_start":305,"line_end":305,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:305:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m305\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:2:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":16516,"byte_end":16531,"line_start":323,"line_end":323,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":16516,"byte_end":16531,"line_start":323,"line_end":323,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:323:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m323\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:3:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":16909,"byte_end":16924,"line_start":333,"line_end":333,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":16909,"byte_end":16924,"line_start":333,"line_end":333,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:333:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m333\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:4:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17127,"byte_end":17142,"line_start":339,"line_end":339,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17127,"byte_end":17142,"line_start":339,"line_end":339,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:339:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m339\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:5:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17438,"byte_end":17453,"line_start":346,"line_end":346,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17438,"byte_end":17453,"line_start":346,"line_end":346,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:346:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m346\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:6:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17724,"byte_end":17739,"line_start":353,"line_end":353,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17724,"byte_end":17739,"line_start":353,"line_end":353,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:353:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m353\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:7:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":20011,"byte_end":20026,"line_start":425,"line_end":425,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":20011,"byte_end":20026,"line_start":425,"line_end":425,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:425:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m425\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:8:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":20851,"byte_end":20866,"line_start":442,"line_end":442,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":20851,"byte_end":20866,"line_start":442,"line_end":442,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:442:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m442\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:9:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21217,"byte_end":21232,"line_start":451,"line_end":451,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21217,"byte_end":21232,"line_start":451,"line_end":451,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:451:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m451\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:10:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21393,"byte_end":21408,"line_start":457,"line_end":457,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21393,"byte_end":21408,"line_start":457,"line_end":457,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:457:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m457\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:11:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21557,"byte_end":21572,"line_start":462,"line_end":462,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21557,"byte_end":21572,"line_start":462,"line_end":462,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:462:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m462\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:12:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":22963,"byte_end":22978,"line_start":508,"line_end":508,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":22963,"byte_end":22978,"line_start":508,"line_end":508,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:508:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m508\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:13:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":23443,"byte_end":23458,"line_start":519,"line_end":519,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":23443,"byte_end":23458,"line_start":519,"line_end":519,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:519:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m519\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:14:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":27493,"byte_end":27508,"line_start":612,"line_end":612,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":27493,"byte_end":27508,"line_start":612,"line_end":612,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:612:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m612\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:15:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28169,"byte_end":28184,"line_start":627,"line_end":627,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28169,"byte_end":28184,"line_start":627,"line_end":627,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:627:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m627\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:16:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28514,"byte_end":28529,"line_start":637,"line_end":637,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28514,"byte_end":28529,"line_start":637,"line_end":637,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:637:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m637\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:17:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28732,"byte_end":28747,"line_start":643,"line_end":643,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28732,"byte_end":28747,"line_start":643,"line_end":643,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:643:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m643\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:18:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":29019,"byte_end":29034,"line_start":650,"line_end":650,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":29019,"byte_end":29034,"line_start":650,"line_end":650,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:650:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m650\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:19:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":29281,"byte_end":29296,"line_start":657,"line_end":657,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":29281,"byte_end":29296,"line_start":657,"line_end":657,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:657:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m657\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:20:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":15987,"byte_end":16002,"line_start":336,"line_end":336,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":15987,"byte_end":16002,"line_start":336,"line_end":336,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:336:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m336\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:21:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":16696,"byte_end":16711,"line_start":354,"line_end":354,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":16696,"byte_end":16711,"line_start":354,"line_end":354,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:354:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m354\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:22:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20260,"byte_end":20275,"line_start":467,"line_end":467,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20260,"byte_end":20275,"line_start":467,"line_end":467,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:467:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m467\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:23:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20430,"byte_end":20445,"line_start":472,"line_end":472,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20430,"byte_end":20445,"line_start":472,"line_end":472,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:472:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m472\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:24:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20594,"byte_end":20609,"line_start":477,"line_end":477,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20594,"byte_end":20609,"line_start":477,"line_end":477,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:477:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m477\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:25:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":9566,"byte_end":9581,"line_start":189,"line_end":189,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":9566,"byte_end":9581,"line_start":189,"line_end":189,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:189:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m189\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:26:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10370,"byte_end":10385,"line_start":207,"line_end":207,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10370,"byte_end":10385,"line_start":207,"line_end":207,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:207:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m207\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:27:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10643,"byte_end":10658,"line_start":214,"line_end":214,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10643,"byte_end":10658,"line_start":214,"line_end":214,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:214:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m214\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:28:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10916,"byte_end":10931,"line_start":221,"line_end":221,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10916,"byte_end":10931,"line_start":221,"line_end":221,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:221:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m221\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:29:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":13708,"byte_end":13723,"line_start":301,"line_end":301,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":13708,"byte_end":13723,"line_start":301,"line_end":301,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:301:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m301\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:30:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":14429,"byte_end":14444,"line_start":319,"line_end":319,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":14429,"byte_end":14444,"line_start":319,"line_end":319,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:319:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m319\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:31:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15042,"byte_end":15057,"line_start":335,"line_end":335,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15042,"byte_end":15057,"line_start":335,"line_end":335,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:335:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m335\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:32:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15451,"byte_end":15466,"line_start":346,"line_end":346,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15451,"byte_end":15466,"line_start":346,"line_end":346,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:346:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m346\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:33:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15619,"byte_end":15634,"line_start":351,"line_end":351,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15619,"byte_end":15634,"line_start":351,"line_end":351,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:351:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m351\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:34:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15786,"byte_end":15801,"line_start":356,"line_end":356,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15786,"byte_end":15801,"line_start":356,"line_end":356,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:356:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m356\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:35:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16040,"byte_end":16055,"line_start":363,"line_end":363,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16040,"byte_end":16055,"line_start":363,"line_end":363,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:363:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m363\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:36:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16294,"byte_end":16309,"line_start":370,"line_end":370,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16294,"byte_end":16309,"line_start":370,"line_end":370,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:370:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m370\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:37:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16650,"byte_end":16665,"line_start":379,"line_end":379,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16650,"byte_end":16665,"line_start":379,"line_end":379,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:379:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m379\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:38:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17033,"byte_end":17048,"line_start":388,"line_end":388,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17033,"byte_end":17048,"line_start":388,"line_end":388,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:388:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m388\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:39:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17522,"byte_end":17537,"line_start":400,"line_end":400,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17522,"byte_end":17537,"line_start":400,"line_end":400,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:400:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m400\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:40:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17696,"byte_end":17711,"line_start":406,"line_end":406,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17696,"byte_end":17711,"line_start":406,"line_end":406,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:406:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m406\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:41:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17865,"byte_end":17880,"line_start":411,"line_end":411,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17865,"byte_end":17880,"line_start":411,"line_end":411,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:411:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m411\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:42:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":18235,"byte_end":18250,"line_start":420,"line_end":420,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":18235,"byte_end":18250,"line_start":420,"line_end":420,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:420:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m420\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:43:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":18735,"byte_end":18750,"line_start":432,"line_end":432,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":18735,"byte_end":18750,"line_start":432,"line_end":432,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:432:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m432\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:44:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":19383,"byte_end":19398,"line_start":447,"line_end":447,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":19383,"byte_end":19398,"line_start":447,"line_end":447,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:447:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m447\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:45:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":19856,"byte_end":19871,"line_start":458,"line_end":458,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":19856,"byte_end":19871,"line_start":458,"line_end":458,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:458:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m458\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:46:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":20377,"byte_end":20392,"line_start":469,"line_end":469,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":20377,"byte_end":20392,"line_start":469,"line_end":469,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:469:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m469\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:47:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":20744,"byte_end":20759,"line_start":480,"line_end":480,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":20744,"byte_end":20759,"line_start":480,"line_end":480,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:480:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m480\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:48:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":21207,"byte_end":21222,"line_start":491,"line_end":491,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":21207,"byte_end":21222,"line_start":491,"line_end":491,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:491:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m491\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:49:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":21721,"byte_end":21736,"line_start":503,"line_end":503,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":21721,"byte_end":21736,"line_start":503,"line_end":503,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:503:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m503\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:50:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":22195,"byte_end":22210,"line_start":514,"line_end":514,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":22195,"byte_end":22210,"line_start":514,"line_end":514,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:514:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m514\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:51:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":24297,"byte_end":24312,"line_start":575,"line_end":575,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":24297,"byte_end":24312,"line_start":575,"line_end":575,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:575:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m575\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:52:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":26822,"byte_end":26837,"line_start":654,"line_end":654,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":26822,"byte_end":26837,"line_start":654,"line_end":654,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:654:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m654\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:53:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":31795,"byte_end":31810,"line_start":780,"line_end":780,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":31795,"byte_end":31810,"line_start":780,"line_end":780,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:780:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m780\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:54:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":32447,"byte_end":32462,"line_start":794,"line_end":794,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":32447,"byte_end":32462,"line_start":794,"line_end":794,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:794:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m794\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:55:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":32899,"byte_end":32914,"line_start":805,"line_end":805,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":32899,"byte_end":32914,"line_start":805,"line_end":805,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:805:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m805\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:56:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":33929,"byte_end":33944,"line_start":827,"line_end":827,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":33929,"byte_end":33944,"line_start":827,"line_end":827,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:827:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m827\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:57:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34284,"byte_end":34299,"line_start":835,"line_end":835,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34284,"byte_end":34299,"line_start":835,"line_end":835,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:835:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m835\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:58:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34510,"byte_end":34525,"line_start":841,"line_end":841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34510,"byte_end":34525,"line_start":841,"line_end":841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:841:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m841\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:59:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34825,"byte_end":34840,"line_start":848,"line_end":848,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34825,"byte_end":34840,"line_start":848,"line_end":848,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:848:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m848\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:60:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35028,"byte_end":35043,"line_start":854,"line_end":854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35028,"byte_end":35043,"line_start":854,"line_end":854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:854:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m854\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:61:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35398,"byte_end":35413,"line_start":863,"line_end":863,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35398,"byte_end":35413,"line_start":863,"line_end":863,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:863:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m863\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:62:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35788,"byte_end":35803,"line_start":872,"line_end":872,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35788,"byte_end":35803,"line_start":872,"line_end":872,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:872:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m872\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:63:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35981,"byte_end":35996,"line_start":879,"line_end":879,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35981,"byte_end":35996,"line_start":879,"line_end":879,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:879:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m879\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:64:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":36512,"byte_end":36527,"line_start":891,"line_end":891,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":36512,"byte_end":36527,"line_start":891,"line_end":891,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:891:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m891\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:65:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":36882,"byte_end":36897,"line_start":900,"line_end":900,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":36882,"byte_end":36897,"line_start":900,"line_end":900,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:900:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m900\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:66:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":37500,"byte_end":37515,"line_start":914,"line_end":914,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":37500,"byte_end":37515,"line_start":914,"line_end":914,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:914:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m914\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:67:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":37870,"byte_end":37885,"line_start":923,"line_end":923,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":37870,"byte_end":37885,"line_start":923,"line_end":923,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:923:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m923\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:68:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38307,"byte_end":38322,"line_start":933,"line_end":933,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38307,"byte_end":38322,"line_start":933,"line_end":933,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:933:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m933\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:69:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38583,"byte_end":38598,"line_start":940,"line_end":940,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38583,"byte_end":38598,"line_start":940,"line_end":940,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:940:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m940\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:70:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38972,"byte_end":38987,"line_start":950,"line_end":950,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38972,"byte_end":38987,"line_start":950,"line_end":950,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:950:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m950\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:71:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39244,"byte_end":39259,"line_start":957,"line_end":957,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39244,"byte_end":39259,"line_start":957,"line_end":957,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:957:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m957\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:72:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39606,"byte_end":39621,"line_start":966,"line_end":966,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39606,"byte_end":39621,"line_start":966,"line_end":966,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:966:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m966\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:73:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39954,"byte_end":39969,"line_start":975,"line_end":975,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39954,"byte_end":39969,"line_start":975,"line_end":975,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:975:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m975\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:74:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":40716,"byte_end":40731,"line_start":995,"line_end":995,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":40716,"byte_end":40731,"line_start":995,"line_end":995,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:995:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m995\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:75:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41065,"byte_end":41080,"line_start":1004,"line_end":1004,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41065,"byte_end":41080,"line_start":1004,"line_end":1004,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1004:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1004\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:76:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41327,"byte_end":41342,"line_start":1011,"line_end":1011,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41327,"byte_end":41342,"line_start":1011,"line_end":1011,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1011:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1011\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:77:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41634,"byte_end":41649,"line_start":1020,"line_end":1020,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41634,"byte_end":41649,"line_start":1020,"line_end":1020,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1020:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1020\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:78:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41885,"byte_end":41900,"line_start":1027,"line_end":1027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41885,"byte_end":41900,"line_start":1027,"line_end":1027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1027:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1027\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:79:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":42154,"byte_end":42169,"line_start":1034,"line_end":1034,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":42154,"byte_end":42169,"line_start":1034,"line_end":1034,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1034:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1034\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:80:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":42636,"byte_end":42651,"line_start":1045,"line_end":1045,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":42636,"byte_end":42651,"line_start":1045,"line_end":1045,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1045:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1045\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:81:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43005,"byte_end":43020,"line_start":1054,"line_end":1054,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43005,"byte_end":43020,"line_start":1054,"line_end":1054,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1054:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1054\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:82:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43359,"byte_end":43374,"line_start":1065,"line_end":1065,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43359,"byte_end":43374,"line_start":1065,"line_end":1065,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1065:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1065\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:83:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43932,"byte_end":43947,"line_start":1078,"line_end":1078,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43932,"byte_end":43947,"line_start":1078,"line_end":1078,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1078:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1078\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:84:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":45665,"byte_end":45680,"line_start":1112,"line_end":1112,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":45665,"byte_end":45680,"line_start":1112,"line_end":1112,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1112:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:85:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":46396,"byte_end":46411,"line_start":1129,"line_end":1129,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":46396,"byte_end":46411,"line_start":1129,"line_end":1129,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1129:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1129\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:86:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47089,"byte_end":47104,"line_start":1143,"line_end":1143,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47089,"byte_end":47104,"line_start":1143,"line_end":1143,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1143:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:87:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47379,"byte_end":47394,"line_start":1151,"line_end":1151,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47379,"byte_end":47394,"line_start":1151,"line_end":1151,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1151:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1151\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:88:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47663,"byte_end":47678,"line_start":1158,"line_end":1158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47663,"byte_end":47678,"line_start":1158,"line_end":1158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1158:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1158\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:89:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":48071,"byte_end":48086,"line_start":1167,"line_end":1167,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":48071,"byte_end":48086,"line_start":1167,"line_end":1167,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1167:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1167\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:90:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52366,"byte_end":52381,"line_start":1244,"line_end":1244,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52366,"byte_end":52381,"line_start":1244,"line_end":1244,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1244:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1244\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:91:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52649,"byte_end":52664,"line_start":1251,"line_end":1251,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52649,"byte_end":52664,"line_start":1251,"line_end":1251,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1251:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1251\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:92:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52975,"byte_end":52990,"line_start":1259,"line_end":1259,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52975,"byte_end":52990,"line_start":1259,"line_end":1259,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1259:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1259\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:93:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53243,"byte_end":53258,"line_start":1266,"line_end":1266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53243,"byte_end":53258,"line_start":1266,"line_end":1266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1266:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1266\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:94:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53512,"byte_end":53527,"line_start":1273,"line_end":1273,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53512,"byte_end":53527,"line_start":1273,"line_end":1273,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1273:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1273\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:95:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53784,"byte_end":53799,"line_start":1280,"line_end":1280,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53784,"byte_end":53799,"line_start":1280,"line_end":1280,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1280:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1280\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:96:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":57576,"byte_end":57591,"line_start":1349,"line_end":1349,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":57576,"byte_end":57591,"line_start":1349,"line_end":1349,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1349:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1349\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:97:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":57889,"byte_end":57904,"line_start":1357,"line_end":1357,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":57889,"byte_end":57904,"line_start":1357,"line_end":1357,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1357:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1357\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:98:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58137,"byte_end":58152,"line_start":1364,"line_end":1364,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58137,"byte_end":58152,"line_start":1364,"line_end":1364,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1364:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1364\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:99:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58383,"byte_end":58398,"line_start":1371,"line_end":1371,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58383,"byte_end":58398,"line_start":1371,"line_end":1371,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1371:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1371\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:100:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58631,"byte_end":58646,"line_start":1378,"line_end":1378,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58631,"byte_end":58646,"line_start":1378,"line_end":1378,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1378:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1378\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:101:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58876,"byte_end":58891,"line_start":1385,"line_end":1385,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58876,"byte_end":58891,"line_start":1385,"line_end":1385,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1385:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1385\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:102:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":59036,"byte_end":59051,"line_start":1391,"line_end":1391,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":59036,"byte_end":59051,"line_start":1391,"line_end":1391,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1391:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1391\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:103:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":59596,"byte_end":59611,"line_start":1404,"line_end":1404,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":59596,"byte_end":59611,"line_start":1404,"line_end":1404,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1404:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1404\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:104:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":60554,"byte_end":60569,"line_start":1429,"line_end":1429,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":60554,"byte_end":60569,"line_start":1429,"line_end":1429,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1429:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1429\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:105:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":61039,"byte_end":61054,"line_start":1440,"line_end":1440,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":61039,"byte_end":61054,"line_start":1440,"line_end":1440,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1440:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1440\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:106:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":61413,"byte_end":61428,"line_start":1450,"line_end":1450,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":61413,"byte_end":61428,"line_start":1450,"line_end":1450,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1450:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1450\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:107:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":62143,"byte_end":62158,"line_start":1465,"line_end":1465,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":62143,"byte_end":62158,"line_start":1465,"line_end":1465,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1465:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1465\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:108:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":62532,"byte_end":62547,"line_start":1474,"line_end":1474,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":62532,"byte_end":62547,"line_start":1474,"line_end":1474,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1474:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1474\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:109:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":65661,"byte_end":65676,"line_start":1565,"line_end":1565,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":65661,"byte_end":65676,"line_start":1565,"line_end":1565,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1565:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1565\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:110:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":66131,"byte_end":66146,"line_start":1576,"line_end":1576,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":66131,"byte_end":66146,"line_start":1576,"line_end":1576,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1576:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1576\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:111:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":68034,"byte_end":68049,"line_start":1621,"line_end":1621,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":68034,"byte_end":68049,"line_start":1621,"line_end":1621,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1621:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1621\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:112:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":69982,"byte_end":69997,"line_start":1656,"line_end":1656,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":69982,"byte_end":69997,"line_start":1656,"line_end":1656,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1656:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1656\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:113:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":70152,"byte_end":70167,"line_start":1661,"line_end":1661,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":70152,"byte_end":70167,"line_start":1661,"line_end":1661,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1661:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1661\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:114:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":70324,"byte_end":70339,"line_start":1666,"line_end":1666,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":70324,"byte_end":70339,"line_start":1666,"line_end":1666,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1666:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1666\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:115:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":71584,"byte_end":71599,"line_start":1694,"line_end":1694,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":71584,"byte_end":71599,"line_start":1694,"line_end":1694,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1694:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1694\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:116:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":71968,"byte_end":71983,"line_start":1703,"line_end":1703,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":71968,"byte_end":71983,"line_start":1703,"line_end":1703,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1703:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1703\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:117:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":73915,"byte_end":73930,"line_start":1756,"line_end":1756,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":73915,"byte_end":73930,"line_start":1756,"line_end":1756,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1756:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1756\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:118:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":75124,"byte_end":75139,"line_start":1779,"line_end":1779,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":75124,"byte_end":75139,"line_start":1779,"line_end":1779,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1779:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1779\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:119:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":75955,"byte_end":75970,"line_start":1796,"line_end":1796,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":75955,"byte_end":75970,"line_start":1796,"line_end":1796,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1796:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1796\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:120:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":77440,"byte_end":77455,"line_start":1822,"line_end":1822,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":77440,"byte_end":77455,"line_start":1822,"line_end":1822,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1822:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1822\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:121:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":77852,"byte_end":77867,"line_start":1831,"line_end":1831,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":77852,"byte_end":77867,"line_start":1831,"line_end":1831,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1831:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1831\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:122:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78160,"byte_end":78175,"line_start":1838,"line_end":1838,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78160,"byte_end":78175,"line_start":1838,"line_end":1838,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1838:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1838\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:123:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78468,"byte_end":78483,"line_start":1846,"line_end":1846,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78468,"byte_end":78483,"line_start":1846,"line_end":1846,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1846:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1846\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:124:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78766,"byte_end":78781,"line_start":1853,"line_end":1853,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78766,"byte_end":78781,"line_start":1853,"line_end":1853,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1853:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1853\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:125:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":79182,"byte_end":79197,"line_start":1863,"line_end":1863,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":79182,"byte_end":79197,"line_start":1863,"line_end":1863,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1863:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1863\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:126:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":79564,"byte_end":79579,"line_start":1871,"line_end":1871,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":79564,"byte_end":79579,"line_start":1871,"line_end":1871,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1871:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1871\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:127:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80331,"byte_end":80346,"line_start":1890,"line_end":1890,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80331,"byte_end":80346,"line_start":1890,"line_end":1890,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1890:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1890\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:128:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80524,"byte_end":80539,"line_start":1896,"line_end":1896,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80524,"byte_end":80539,"line_start":1896,"line_end":1896,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1896:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1896\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:129:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80685,"byte_end":80700,"line_start":1901,"line_end":1901,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80685,"byte_end":80700,"line_start":1901,"line_end":1901,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1901:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1901\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:130:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80851,"byte_end":80866,"line_start":1906,"line_end":1906,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80851,"byte_end":80866,"line_start":1906,"line_end":1906,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1906:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1906\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:131:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81017,"byte_end":81032,"line_start":1911,"line_end":1911,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81017,"byte_end":81032,"line_start":1911,"line_end":1911,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1911:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1911\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:132:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81177,"byte_end":81192,"line_start":1916,"line_end":1916,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81177,"byte_end":81192,"line_start":1916,"line_end":1916,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1916:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1916\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:133:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81338,"byte_end":81353,"line_start":1921,"line_end":1921,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81338,"byte_end":81353,"line_start":1921,"line_end":1921,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1921:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1921\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:134:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":82136,"byte_end":82151,"line_start":1940,"line_end":1940,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":82136,"byte_end":82151,"line_start":1940,"line_end":1940,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1940:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1940\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:135:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":83569,"byte_end":83584,"line_start":1968,"line_end":1968,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":83569,"byte_end":83584,"line_start":1968,"line_end":1968,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1968:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1968\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:136:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":84163,"byte_end":84178,"line_start":1982,"line_end":1982,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":84163,"byte_end":84178,"line_start":1982,"line_end":1982,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1982:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1982\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:137:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":85552,"byte_end":85567,"line_start":2017,"line_end":2017,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":85552,"byte_end":85567,"line_start":2017,"line_end":2017,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2017:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2017\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:138:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":85930,"byte_end":85945,"line_start":2027,"line_end":2027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":85930,"byte_end":85945,"line_start":2027,"line_end":2027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2027:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2027\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:139:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":86585,"byte_end":86600,"line_start":2042,"line_end":2042,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":86585,"byte_end":86600,"line_start":2042,"line_end":2042,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2042:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2042\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:140:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87021,"byte_end":87036,"line_start":2051,"line_end":2051,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87021,"byte_end":87036,"line_start":2051,"line_end":2051,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2051:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2051\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:141:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87374,"byte_end":87389,"line_start":2058,"line_end":2058,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87374,"byte_end":87389,"line_start":2058,"line_end":2058,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2058:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2058\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:142:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87690,"byte_end":87705,"line_start":2067,"line_end":2067,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87690,"byte_end":87705,"line_start":2067,"line_end":2067,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2067:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2067\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:143:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":88219,"byte_end":88234,"line_start":2080,"line_end":2080,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":88219,"byte_end":88234,"line_start":2080,"line_end":2080,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2080:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2080\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:144:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":88778,"byte_end":88793,"line_start":2093,"line_end":2093,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":88778,"byte_end":88793,"line_start":2093,"line_end":2093,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2093:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2093\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:145:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":89536,"byte_end":89551,"line_start":2110,"line_end":2110,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":89536,"byte_end":89551,"line_start":2110,"line_end":2110,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2110:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2110\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:146:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":90590,"byte_end":90605,"line_start":2133,"line_end":2133,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":90590,"byte_end":90605,"line_start":2133,"line_end":2133,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2133:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2133\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:147:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":91758,"byte_end":91773,"line_start":2158,"line_end":2158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":91758,"byte_end":91773,"line_start":2158,"line_end":2158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2158:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2158\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:148:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":92326,"byte_end":92341,"line_start":2171,"line_end":2171,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":92326,"byte_end":92341,"line_start":2171,"line_end":2171,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2171:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2171\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:149:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":93093,"byte_end":93108,"line_start":2188,"line_end":2188,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":93093,"byte_end":93108,"line_start":2188,"line_end":2188,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2188:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:150:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":93857,"byte_end":93872,"line_start":2205,"line_end":2205,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":93857,"byte_end":93872,"line_start":2205,"line_end":2205,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2205:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2205\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:151:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":94730,"byte_end":94745,"line_start":2224,"line_end":2224,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":94730,"byte_end":94745,"line_start":2224,"line_end":2224,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2224:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2224\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:152:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":95702,"byte_end":95717,"line_start":2245,"line_end":2245,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":95702,"byte_end":95717,"line_start":2245,"line_end":2245,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2245:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2245\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:153:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":96687,"byte_end":96702,"line_start":2266,"line_end":2266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":96687,"byte_end":96702,"line_start":2266,"line_end":2266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2266:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2266\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:154:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":97003,"byte_end":97018,"line_start":2275,"line_end":2275,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":97003,"byte_end":97018,"line_start":2275,"line_end":2275,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2275:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2275\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:155:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":98398,"byte_end":98413,"line_start":2302,"line_end":2302,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":98398,"byte_end":98413,"line_start":2302,"line_end":2302,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2302:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2302\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:156:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":104920,"byte_end":104935,"line_start":2445,"line_end":2445,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":104920,"byte_end":104935,"line_start":2445,"line_end":2445,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2445:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2445\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:157:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":116118,"byte_end":116133,"line_start":2737,"line_end":2737,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":116118,"byte_end":116133,"line_start":2737,"line_end":2737,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2737:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2737\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:158:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":117463,"byte_end":117478,"line_start":2763,"line_end":2763,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":117463,"byte_end":117478,"line_start":2763,"line_end":2763,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2763:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2763\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:159:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":118808,"byte_end":118823,"line_start":2789,"line_end":2789,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":118808,"byte_end":118823,"line_start":2789,"line_end":2789,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2789:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2789\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:160:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":119711,"byte_end":119726,"line_start":2809,"line_end":2809,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":119711,"byte_end":119726,"line_start":2809,"line_end":2809,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2809:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2809\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:161:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":120731,"byte_end":120746,"line_start":2832,"line_end":2832,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":120731,"byte_end":120746,"line_start":2832,"line_end":2832,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2832:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2832\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:162:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":121073,"byte_end":121088,"line_start":2841,"line_end":2841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":121073,"byte_end":121088,"line_start":2841,"line_end":2841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2841:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2841\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:163:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":121553,"byte_end":121568,"line_start":2854,"line_end":2854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":121553,"byte_end":121568,"line_start":2854,"line_end":2854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2854:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2854\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:164:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":123246,"byte_end":123261,"line_start":2893,"line_end":2893,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":123246,"byte_end":123261,"line_start":2893,"line_end":2893,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2893:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2893\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:165:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":123709,"byte_end":123724,"line_start":2904,"line_end":2904,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":123709,"byte_end":123724,"line_start":2904,"line_end":2904,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2904:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2904\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:166:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":124044,"byte_end":124059,"line_start":2915,"line_end":2915,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":124044,"byte_end":124059,"line_start":2915,"line_end":2915,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2915:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2915\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:167:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":125585,"byte_end":125600,"line_start":2965,"line_end":2965,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":125585,"byte_end":125600,"line_start":2965,"line_end":2965,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2965:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2965\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:168:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":137292,"byte_end":137307,"line_start":3272,"line_end":3272,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":137292,"byte_end":137307,"line_start":3272,"line_end":3272,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:3272:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3272\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:169:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs","byte_start":274,"byte_end":289,"line_start":7,"line_end":7,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs","byte_start":274,"byte_end":289,"line_start":7,"line_end":7,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs:7:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf:170:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs","byte_start":518,"byte_end":533,"line_start":14,"line_end":14,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs","byte_start":518,"byte_end":533,"line_start":14,"line_end":14,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs:14:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf-171-{"$message_type":"diagnostic","message":"aborting due to 170 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 170 previous errors\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-42c318c43abfea65/output-lib-protobuf-172-{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0412`.\u001b[0m\n"} +-- +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:1:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":15778,"byte_end":15793,"line_start":305,"line_end":305,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":15778,"byte_end":15793,"line_start":305,"line_end":305,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:305:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m305\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:2:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":16516,"byte_end":16531,"line_start":323,"line_end":323,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":16516,"byte_end":16531,"line_start":323,"line_end":323,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:323:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m323\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:3:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":16909,"byte_end":16924,"line_start":333,"line_end":333,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":16909,"byte_end":16924,"line_start":333,"line_end":333,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:333:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m333\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:4:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17127,"byte_end":17142,"line_start":339,"line_end":339,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17127,"byte_end":17142,"line_start":339,"line_end":339,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:339:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m339\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:5:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17438,"byte_end":17453,"line_start":346,"line_end":346,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17438,"byte_end":17453,"line_start":346,"line_end":346,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:346:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m346\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:6:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17724,"byte_end":17739,"line_start":353,"line_end":353,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":17724,"byte_end":17739,"line_start":353,"line_end":353,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:353:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m353\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:7:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":20011,"byte_end":20026,"line_start":425,"line_end":425,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":20011,"byte_end":20026,"line_start":425,"line_end":425,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:425:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m425\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:8:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":20851,"byte_end":20866,"line_start":442,"line_end":442,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":20851,"byte_end":20866,"line_start":442,"line_end":442,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:442:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m442\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:9:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21217,"byte_end":21232,"line_start":451,"line_end":451,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21217,"byte_end":21232,"line_start":451,"line_end":451,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:451:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m451\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:10:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21393,"byte_end":21408,"line_start":457,"line_end":457,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21393,"byte_end":21408,"line_start":457,"line_end":457,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:457:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m457\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:11:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21557,"byte_end":21572,"line_start":462,"line_end":462,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":21557,"byte_end":21572,"line_start":462,"line_end":462,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:462:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m462\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:12:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":22963,"byte_end":22978,"line_start":508,"line_end":508,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":22963,"byte_end":22978,"line_start":508,"line_end":508,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:508:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m508\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:13:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":23443,"byte_end":23458,"line_start":519,"line_end":519,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":23443,"byte_end":23458,"line_start":519,"line_end":519,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:519:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m519\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:14:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":27493,"byte_end":27508,"line_start":612,"line_end":612,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":27493,"byte_end":27508,"line_start":612,"line_end":612,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:612:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m612\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:15:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28169,"byte_end":28184,"line_start":627,"line_end":627,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28169,"byte_end":28184,"line_start":627,"line_end":627,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:627:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m627\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:16:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28514,"byte_end":28529,"line_start":637,"line_end":637,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28514,"byte_end":28529,"line_start":637,"line_end":637,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:637:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m637\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:17:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28732,"byte_end":28747,"line_start":643,"line_end":643,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":28732,"byte_end":28747,"line_start":643,"line_end":643,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:643:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m643\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:18:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":29019,"byte_end":29034,"line_start":650,"line_end":650,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":29019,"byte_end":29034,"line_start":650,"line_end":650,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:650:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m650\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:19:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":29281,"byte_end":29296,"line_start":657,"line_end":657,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs","byte_start":29281,"byte_end":29296,"line_start":657,"line_end":657,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:657:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m657\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:20:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":15987,"byte_end":16002,"line_start":336,"line_end":336,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":15987,"byte_end":16002,"line_start":336,"line_end":336,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:336:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m336\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:21:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":16696,"byte_end":16711,"line_start":354,"line_end":354,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":16696,"byte_end":16711,"line_start":354,"line_end":354,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:354:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m354\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:22:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20260,"byte_end":20275,"line_start":467,"line_end":467,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20260,"byte_end":20275,"line_start":467,"line_end":467,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:467:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m467\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:23:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20430,"byte_end":20445,"line_start":472,"line_end":472,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20430,"byte_end":20445,"line_start":472,"line_end":472,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:472:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m472\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:24:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20594,"byte_end":20609,"line_start":477,"line_end":477,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs","byte_start":20594,"byte_end":20609,"line_start":477,"line_end":477,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:477:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m477\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:25:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":9566,"byte_end":9581,"line_start":189,"line_end":189,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":9566,"byte_end":9581,"line_start":189,"line_end":189,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:189:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m189\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:26:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10370,"byte_end":10385,"line_start":207,"line_end":207,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10370,"byte_end":10385,"line_start":207,"line_end":207,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:207:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m207\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:27:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10643,"byte_end":10658,"line_start":214,"line_end":214,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10643,"byte_end":10658,"line_start":214,"line_end":214,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:214:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m214\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:28:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10916,"byte_end":10931,"line_start":221,"line_end":221,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":10916,"byte_end":10931,"line_start":221,"line_end":221,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:221:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m221\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:29:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":13708,"byte_end":13723,"line_start":301,"line_end":301,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":13708,"byte_end":13723,"line_start":301,"line_end":301,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:301:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m301\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:30:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":14429,"byte_end":14444,"line_start":319,"line_end":319,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":14429,"byte_end":14444,"line_start":319,"line_end":319,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:319:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m319\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:31:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15042,"byte_end":15057,"line_start":335,"line_end":335,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15042,"byte_end":15057,"line_start":335,"line_end":335,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:335:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m335\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:32:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15451,"byte_end":15466,"line_start":346,"line_end":346,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15451,"byte_end":15466,"line_start":346,"line_end":346,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:346:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m346\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:33:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15619,"byte_end":15634,"line_start":351,"line_end":351,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15619,"byte_end":15634,"line_start":351,"line_end":351,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:351:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m351\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:34:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15786,"byte_end":15801,"line_start":356,"line_end":356,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":15786,"byte_end":15801,"line_start":356,"line_end":356,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:356:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m356\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:35:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16040,"byte_end":16055,"line_start":363,"line_end":363,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16040,"byte_end":16055,"line_start":363,"line_end":363,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:363:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m363\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:36:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16294,"byte_end":16309,"line_start":370,"line_end":370,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16294,"byte_end":16309,"line_start":370,"line_end":370,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:370:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m370\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:37:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16650,"byte_end":16665,"line_start":379,"line_end":379,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":16650,"byte_end":16665,"line_start":379,"line_end":379,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:379:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m379\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:38:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17033,"byte_end":17048,"line_start":388,"line_end":388,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17033,"byte_end":17048,"line_start":388,"line_end":388,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:388:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m388\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:39:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17522,"byte_end":17537,"line_start":400,"line_end":400,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17522,"byte_end":17537,"line_start":400,"line_end":400,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:400:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m400\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:40:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17696,"byte_end":17711,"line_start":406,"line_end":406,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17696,"byte_end":17711,"line_start":406,"line_end":406,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:406:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m406\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:41:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17865,"byte_end":17880,"line_start":411,"line_end":411,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":17865,"byte_end":17880,"line_start":411,"line_end":411,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:411:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m411\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:42:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":18235,"byte_end":18250,"line_start":420,"line_end":420,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":18235,"byte_end":18250,"line_start":420,"line_end":420,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:420:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m420\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:43:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":18735,"byte_end":18750,"line_start":432,"line_end":432,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":18735,"byte_end":18750,"line_start":432,"line_end":432,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:432:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m432\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:44:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":19383,"byte_end":19398,"line_start":447,"line_end":447,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":19383,"byte_end":19398,"line_start":447,"line_end":447,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:447:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m447\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:45:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":19856,"byte_end":19871,"line_start":458,"line_end":458,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":19856,"byte_end":19871,"line_start":458,"line_end":458,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:458:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m458\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:46:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":20377,"byte_end":20392,"line_start":469,"line_end":469,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":20377,"byte_end":20392,"line_start":469,"line_end":469,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:469:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m469\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:47:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":20744,"byte_end":20759,"line_start":480,"line_end":480,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":20744,"byte_end":20759,"line_start":480,"line_end":480,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:480:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m480\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:48:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":21207,"byte_end":21222,"line_start":491,"line_end":491,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":21207,"byte_end":21222,"line_start":491,"line_end":491,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:491:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m491\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:49:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":21721,"byte_end":21736,"line_start":503,"line_end":503,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":21721,"byte_end":21736,"line_start":503,"line_end":503,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:503:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m503\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:50:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":22195,"byte_end":22210,"line_start":514,"line_end":514,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":22195,"byte_end":22210,"line_start":514,"line_end":514,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:514:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m514\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:51:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":24297,"byte_end":24312,"line_start":575,"line_end":575,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":24297,"byte_end":24312,"line_start":575,"line_end":575,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:575:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m575\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:52:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":26822,"byte_end":26837,"line_start":654,"line_end":654,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":26822,"byte_end":26837,"line_start":654,"line_end":654,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:654:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m654\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:53:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":31795,"byte_end":31810,"line_start":780,"line_end":780,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":31795,"byte_end":31810,"line_start":780,"line_end":780,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:780:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m780\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:54:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":32447,"byte_end":32462,"line_start":794,"line_end":794,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":32447,"byte_end":32462,"line_start":794,"line_end":794,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:794:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m794\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:55:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":32899,"byte_end":32914,"line_start":805,"line_end":805,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":32899,"byte_end":32914,"line_start":805,"line_end":805,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:805:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m805\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:56:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":33929,"byte_end":33944,"line_start":827,"line_end":827,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":33929,"byte_end":33944,"line_start":827,"line_end":827,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:827:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m827\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:57:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34284,"byte_end":34299,"line_start":835,"line_end":835,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34284,"byte_end":34299,"line_start":835,"line_end":835,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:835:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m835\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:58:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34510,"byte_end":34525,"line_start":841,"line_end":841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34510,"byte_end":34525,"line_start":841,"line_end":841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:841:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m841\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:59:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34825,"byte_end":34840,"line_start":848,"line_end":848,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":34825,"byte_end":34840,"line_start":848,"line_end":848,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:848:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m848\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:60:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35028,"byte_end":35043,"line_start":854,"line_end":854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35028,"byte_end":35043,"line_start":854,"line_end":854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:854:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m854\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:61:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35398,"byte_end":35413,"line_start":863,"line_end":863,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35398,"byte_end":35413,"line_start":863,"line_end":863,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:863:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m863\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:62:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35788,"byte_end":35803,"line_start":872,"line_end":872,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35788,"byte_end":35803,"line_start":872,"line_end":872,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:872:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m872\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:63:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35981,"byte_end":35996,"line_start":879,"line_end":879,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":35981,"byte_end":35996,"line_start":879,"line_end":879,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:879:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m879\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:64:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":36512,"byte_end":36527,"line_start":891,"line_end":891,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":36512,"byte_end":36527,"line_start":891,"line_end":891,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:891:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m891\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:65:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":36882,"byte_end":36897,"line_start":900,"line_end":900,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":36882,"byte_end":36897,"line_start":900,"line_end":900,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:900:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m900\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:66:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":37500,"byte_end":37515,"line_start":914,"line_end":914,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":37500,"byte_end":37515,"line_start":914,"line_end":914,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:914:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m914\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:67:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":37870,"byte_end":37885,"line_start":923,"line_end":923,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":37870,"byte_end":37885,"line_start":923,"line_end":923,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:923:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m923\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:68:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38307,"byte_end":38322,"line_start":933,"line_end":933,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38307,"byte_end":38322,"line_start":933,"line_end":933,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:933:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m933\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:69:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38583,"byte_end":38598,"line_start":940,"line_end":940,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38583,"byte_end":38598,"line_start":940,"line_end":940,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:940:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m940\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:70:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38972,"byte_end":38987,"line_start":950,"line_end":950,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":38972,"byte_end":38987,"line_start":950,"line_end":950,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:950:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m950\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:71:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39244,"byte_end":39259,"line_start":957,"line_end":957,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39244,"byte_end":39259,"line_start":957,"line_end":957,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:957:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m957\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:72:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39606,"byte_end":39621,"line_start":966,"line_end":966,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39606,"byte_end":39621,"line_start":966,"line_end":966,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:966:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m966\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:73:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39954,"byte_end":39969,"line_start":975,"line_end":975,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":39954,"byte_end":39969,"line_start":975,"line_end":975,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:975:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m975\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:74:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":40716,"byte_end":40731,"line_start":995,"line_end":995,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":40716,"byte_end":40731,"line_start":995,"line_end":995,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:995:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m995\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:75:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41065,"byte_end":41080,"line_start":1004,"line_end":1004,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41065,"byte_end":41080,"line_start":1004,"line_end":1004,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1004:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1004\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:76:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41327,"byte_end":41342,"line_start":1011,"line_end":1011,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41327,"byte_end":41342,"line_start":1011,"line_end":1011,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1011:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1011\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:77:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41634,"byte_end":41649,"line_start":1020,"line_end":1020,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41634,"byte_end":41649,"line_start":1020,"line_end":1020,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1020:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1020\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:78:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41885,"byte_end":41900,"line_start":1027,"line_end":1027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":41885,"byte_end":41900,"line_start":1027,"line_end":1027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1027:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1027\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:79:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":42154,"byte_end":42169,"line_start":1034,"line_end":1034,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":42154,"byte_end":42169,"line_start":1034,"line_end":1034,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1034:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1034\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:80:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":42636,"byte_end":42651,"line_start":1045,"line_end":1045,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":42636,"byte_end":42651,"line_start":1045,"line_end":1045,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1045:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1045\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:81:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43005,"byte_end":43020,"line_start":1054,"line_end":1054,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43005,"byte_end":43020,"line_start":1054,"line_end":1054,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1054:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1054\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:82:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43359,"byte_end":43374,"line_start":1065,"line_end":1065,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43359,"byte_end":43374,"line_start":1065,"line_end":1065,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1065:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1065\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:83:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43932,"byte_end":43947,"line_start":1078,"line_end":1078,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":43932,"byte_end":43947,"line_start":1078,"line_end":1078,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1078:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1078\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:84:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":45665,"byte_end":45680,"line_start":1112,"line_end":1112,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":45665,"byte_end":45680,"line_start":1112,"line_end":1112,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1112:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:85:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":46396,"byte_end":46411,"line_start":1129,"line_end":1129,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":46396,"byte_end":46411,"line_start":1129,"line_end":1129,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1129:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1129\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:86:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47089,"byte_end":47104,"line_start":1143,"line_end":1143,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47089,"byte_end":47104,"line_start":1143,"line_end":1143,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1143:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:87:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47379,"byte_end":47394,"line_start":1151,"line_end":1151,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47379,"byte_end":47394,"line_start":1151,"line_end":1151,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1151:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1151\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:88:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47663,"byte_end":47678,"line_start":1158,"line_end":1158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":47663,"byte_end":47678,"line_start":1158,"line_end":1158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1158:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1158\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:89:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":48071,"byte_end":48086,"line_start":1167,"line_end":1167,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":48071,"byte_end":48086,"line_start":1167,"line_end":1167,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1167:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1167\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:90:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52366,"byte_end":52381,"line_start":1244,"line_end":1244,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52366,"byte_end":52381,"line_start":1244,"line_end":1244,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1244:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1244\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:91:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52649,"byte_end":52664,"line_start":1251,"line_end":1251,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52649,"byte_end":52664,"line_start":1251,"line_end":1251,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1251:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1251\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:92:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52975,"byte_end":52990,"line_start":1259,"line_end":1259,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":52975,"byte_end":52990,"line_start":1259,"line_end":1259,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1259:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1259\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:93:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53243,"byte_end":53258,"line_start":1266,"line_end":1266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53243,"byte_end":53258,"line_start":1266,"line_end":1266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1266:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1266\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:94:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53512,"byte_end":53527,"line_start":1273,"line_end":1273,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53512,"byte_end":53527,"line_start":1273,"line_end":1273,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1273:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1273\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:95:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53784,"byte_end":53799,"line_start":1280,"line_end":1280,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":53784,"byte_end":53799,"line_start":1280,"line_end":1280,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1280:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1280\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:96:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":57576,"byte_end":57591,"line_start":1349,"line_end":1349,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":57576,"byte_end":57591,"line_start":1349,"line_end":1349,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1349:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1349\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:97:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":57889,"byte_end":57904,"line_start":1357,"line_end":1357,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":57889,"byte_end":57904,"line_start":1357,"line_end":1357,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1357:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1357\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:98:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58137,"byte_end":58152,"line_start":1364,"line_end":1364,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58137,"byte_end":58152,"line_start":1364,"line_end":1364,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1364:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1364\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:99:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58383,"byte_end":58398,"line_start":1371,"line_end":1371,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58383,"byte_end":58398,"line_start":1371,"line_end":1371,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1371:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1371\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:100:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58631,"byte_end":58646,"line_start":1378,"line_end":1378,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58631,"byte_end":58646,"line_start":1378,"line_end":1378,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1378:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1378\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:101:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58876,"byte_end":58891,"line_start":1385,"line_end":1385,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":58876,"byte_end":58891,"line_start":1385,"line_end":1385,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1385:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1385\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:102:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":59036,"byte_end":59051,"line_start":1391,"line_end":1391,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":59036,"byte_end":59051,"line_start":1391,"line_end":1391,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1391:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1391\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:103:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":59596,"byte_end":59611,"line_start":1404,"line_end":1404,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":59596,"byte_end":59611,"line_start":1404,"line_end":1404,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1404:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1404\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:104:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":60554,"byte_end":60569,"line_start":1429,"line_end":1429,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":60554,"byte_end":60569,"line_start":1429,"line_end":1429,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1429:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1429\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:105:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":61039,"byte_end":61054,"line_start":1440,"line_end":1440,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":61039,"byte_end":61054,"line_start":1440,"line_end":1440,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1440:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1440\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:106:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":61413,"byte_end":61428,"line_start":1450,"line_end":1450,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":61413,"byte_end":61428,"line_start":1450,"line_end":1450,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1450:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1450\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:107:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":62143,"byte_end":62158,"line_start":1465,"line_end":1465,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":62143,"byte_end":62158,"line_start":1465,"line_end":1465,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1465:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1465\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:108:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":62532,"byte_end":62547,"line_start":1474,"line_end":1474,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":62532,"byte_end":62547,"line_start":1474,"line_end":1474,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1474:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1474\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:109:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":65661,"byte_end":65676,"line_start":1565,"line_end":1565,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":65661,"byte_end":65676,"line_start":1565,"line_end":1565,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1565:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1565\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:110:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":66131,"byte_end":66146,"line_start":1576,"line_end":1576,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":66131,"byte_end":66146,"line_start":1576,"line_end":1576,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1576:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1576\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:111:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":68034,"byte_end":68049,"line_start":1621,"line_end":1621,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":68034,"byte_end":68049,"line_start":1621,"line_end":1621,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1621:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1621\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:112:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":69982,"byte_end":69997,"line_start":1656,"line_end":1656,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":69982,"byte_end":69997,"line_start":1656,"line_end":1656,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1656:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1656\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:113:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":70152,"byte_end":70167,"line_start":1661,"line_end":1661,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":70152,"byte_end":70167,"line_start":1661,"line_end":1661,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1661:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1661\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:114:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":70324,"byte_end":70339,"line_start":1666,"line_end":1666,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":70324,"byte_end":70339,"line_start":1666,"line_end":1666,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1666:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1666\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:115:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":71584,"byte_end":71599,"line_start":1694,"line_end":1694,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":71584,"byte_end":71599,"line_start":1694,"line_end":1694,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1694:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1694\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:116:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":71968,"byte_end":71983,"line_start":1703,"line_end":1703,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":71968,"byte_end":71983,"line_start":1703,"line_end":1703,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1703:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1703\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:117:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":73915,"byte_end":73930,"line_start":1756,"line_end":1756,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":73915,"byte_end":73930,"line_start":1756,"line_end":1756,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1756:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1756\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:118:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":75124,"byte_end":75139,"line_start":1779,"line_end":1779,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":75124,"byte_end":75139,"line_start":1779,"line_end":1779,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1779:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1779\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:119:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":75955,"byte_end":75970,"line_start":1796,"line_end":1796,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":75955,"byte_end":75970,"line_start":1796,"line_end":1796,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1796:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1796\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:120:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":77440,"byte_end":77455,"line_start":1822,"line_end":1822,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":77440,"byte_end":77455,"line_start":1822,"line_end":1822,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1822:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1822\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:121:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":77852,"byte_end":77867,"line_start":1831,"line_end":1831,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":77852,"byte_end":77867,"line_start":1831,"line_end":1831,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1831:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1831\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:122:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78160,"byte_end":78175,"line_start":1838,"line_end":1838,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78160,"byte_end":78175,"line_start":1838,"line_end":1838,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1838:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1838\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:123:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78468,"byte_end":78483,"line_start":1846,"line_end":1846,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78468,"byte_end":78483,"line_start":1846,"line_end":1846,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1846:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1846\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:124:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78766,"byte_end":78781,"line_start":1853,"line_end":1853,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":78766,"byte_end":78781,"line_start":1853,"line_end":1853,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1853:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1853\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:125:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":79182,"byte_end":79197,"line_start":1863,"line_end":1863,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":79182,"byte_end":79197,"line_start":1863,"line_end":1863,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1863:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1863\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:126:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":79564,"byte_end":79579,"line_start":1871,"line_end":1871,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":79564,"byte_end":79579,"line_start":1871,"line_end":1871,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1871:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1871\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:127:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80331,"byte_end":80346,"line_start":1890,"line_end":1890,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80331,"byte_end":80346,"line_start":1890,"line_end":1890,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1890:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1890\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:128:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80524,"byte_end":80539,"line_start":1896,"line_end":1896,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80524,"byte_end":80539,"line_start":1896,"line_end":1896,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1896:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1896\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:129:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80685,"byte_end":80700,"line_start":1901,"line_end":1901,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80685,"byte_end":80700,"line_start":1901,"line_end":1901,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1901:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1901\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:130:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80851,"byte_end":80866,"line_start":1906,"line_end":1906,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":80851,"byte_end":80866,"line_start":1906,"line_end":1906,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1906:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1906\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:131:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81017,"byte_end":81032,"line_start":1911,"line_end":1911,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81017,"byte_end":81032,"line_start":1911,"line_end":1911,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1911:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1911\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:132:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81177,"byte_end":81192,"line_start":1916,"line_end":1916,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81177,"byte_end":81192,"line_start":1916,"line_end":1916,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1916:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1916\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:133:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81338,"byte_end":81353,"line_start":1921,"line_end":1921,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":81338,"byte_end":81353,"line_start":1921,"line_end":1921,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1921:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1921\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:134:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":82136,"byte_end":82151,"line_start":1940,"line_end":1940,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":82136,"byte_end":82151,"line_start":1940,"line_end":1940,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1940:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1940\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:135:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":83569,"byte_end":83584,"line_start":1968,"line_end":1968,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":83569,"byte_end":83584,"line_start":1968,"line_end":1968,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1968:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1968\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:136:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":84163,"byte_end":84178,"line_start":1982,"line_end":1982,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":84163,"byte_end":84178,"line_start":1982,"line_end":1982,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1982:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1982\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:137:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":85552,"byte_end":85567,"line_start":2017,"line_end":2017,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":85552,"byte_end":85567,"line_start":2017,"line_end":2017,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2017:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2017\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:138:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":85930,"byte_end":85945,"line_start":2027,"line_end":2027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":85930,"byte_end":85945,"line_start":2027,"line_end":2027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2027:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2027\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:139:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":86585,"byte_end":86600,"line_start":2042,"line_end":2042,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":86585,"byte_end":86600,"line_start":2042,"line_end":2042,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2042:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2042\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:140:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87021,"byte_end":87036,"line_start":2051,"line_end":2051,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87021,"byte_end":87036,"line_start":2051,"line_end":2051,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2051:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2051\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:141:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87374,"byte_end":87389,"line_start":2058,"line_end":2058,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87374,"byte_end":87389,"line_start":2058,"line_end":2058,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2058:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2058\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:142:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87690,"byte_end":87705,"line_start":2067,"line_end":2067,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":87690,"byte_end":87705,"line_start":2067,"line_end":2067,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2067:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2067\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:143:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":88219,"byte_end":88234,"line_start":2080,"line_end":2080,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":88219,"byte_end":88234,"line_start":2080,"line_end":2080,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2080:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2080\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:144:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":88778,"byte_end":88793,"line_start":2093,"line_end":2093,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":88778,"byte_end":88793,"line_start":2093,"line_end":2093,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2093:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2093\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:145:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":89536,"byte_end":89551,"line_start":2110,"line_end":2110,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":89536,"byte_end":89551,"line_start":2110,"line_end":2110,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2110:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2110\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:146:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":90590,"byte_end":90605,"line_start":2133,"line_end":2133,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":90590,"byte_end":90605,"line_start":2133,"line_end":2133,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2133:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2133\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:147:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":91758,"byte_end":91773,"line_start":2158,"line_end":2158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":91758,"byte_end":91773,"line_start":2158,"line_end":2158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2158:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2158\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:148:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":92326,"byte_end":92341,"line_start":2171,"line_end":2171,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":92326,"byte_end":92341,"line_start":2171,"line_end":2171,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2171:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2171\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:149:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":93093,"byte_end":93108,"line_start":2188,"line_end":2188,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":93093,"byte_end":93108,"line_start":2188,"line_end":2188,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2188:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:150:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":93857,"byte_end":93872,"line_start":2205,"line_end":2205,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":93857,"byte_end":93872,"line_start":2205,"line_end":2205,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2205:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2205\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:151:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":94730,"byte_end":94745,"line_start":2224,"line_end":2224,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":94730,"byte_end":94745,"line_start":2224,"line_end":2224,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2224:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2224\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:152:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":95702,"byte_end":95717,"line_start":2245,"line_end":2245,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":95702,"byte_end":95717,"line_start":2245,"line_end":2245,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2245:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2245\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:153:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":96687,"byte_end":96702,"line_start":2266,"line_end":2266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":96687,"byte_end":96702,"line_start":2266,"line_end":2266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2266:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2266\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:154:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":97003,"byte_end":97018,"line_start":2275,"line_end":2275,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":97003,"byte_end":97018,"line_start":2275,"line_end":2275,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2275:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2275\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:155:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":98398,"byte_end":98413,"line_start":2302,"line_end":2302,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":98398,"byte_end":98413,"line_start":2302,"line_end":2302,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2302:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2302\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:156:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":104920,"byte_end":104935,"line_start":2445,"line_end":2445,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":104920,"byte_end":104935,"line_start":2445,"line_end":2445,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2445:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2445\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:157:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":116118,"byte_end":116133,"line_start":2737,"line_end":2737,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":116118,"byte_end":116133,"line_start":2737,"line_end":2737,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2737:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2737\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:158:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":117463,"byte_end":117478,"line_start":2763,"line_end":2763,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":117463,"byte_end":117478,"line_start":2763,"line_end":2763,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2763:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2763\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:159:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":118808,"byte_end":118823,"line_start":2789,"line_end":2789,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":118808,"byte_end":118823,"line_start":2789,"line_end":2789,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2789:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2789\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:160:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":119711,"byte_end":119726,"line_start":2809,"line_end":2809,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":119711,"byte_end":119726,"line_start":2809,"line_end":2809,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2809:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2809\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:161:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":120731,"byte_end":120746,"line_start":2832,"line_end":2832,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":120731,"byte_end":120746,"line_start":2832,"line_end":2832,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2832:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2832\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:162:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":121073,"byte_end":121088,"line_start":2841,"line_end":2841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":121073,"byte_end":121088,"line_start":2841,"line_end":2841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2841:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2841\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:163:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":121553,"byte_end":121568,"line_start":2854,"line_end":2854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":121553,"byte_end":121568,"line_start":2854,"line_end":2854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2854:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2854\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:164:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":123246,"byte_end":123261,"line_start":2893,"line_end":2893,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":123246,"byte_end":123261,"line_start":2893,"line_end":2893,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2893:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2893\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:165:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":123709,"byte_end":123724,"line_start":2904,"line_end":2904,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":123709,"byte_end":123724,"line_start":2904,"line_end":2904,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2904:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2904\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:166:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":124044,"byte_end":124059,"line_start":2915,"line_end":2915,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":124044,"byte_end":124059,"line_start":2915,"line_end":2915,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2915:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2915\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:167:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":125585,"byte_end":125600,"line_start":2965,"line_end":2965,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":125585,"byte_end":125600,"line_start":2965,"line_end":2965,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2965:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2965\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:168:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":137292,"byte_end":137307,"line_start":3272,"line_end":3272,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs","byte_start":137292,"byte_end":137307,"line_start":3272,"line_end":3272,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:3272:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3272\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:169:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs","byte_start":274,"byte_end":289,"line_start":7,"line_end":7,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs","byte_start":274,"byte_end":289,"line_start":7,"line_end":7,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs:7:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf:170:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs","byte_start":518,"byte_end":533,"line_start":14,"line_end":14,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs","byte_start":518,"byte_end":533,"line_start":14,"line_end":14,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs:14:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf-171-{"$message_type":"diagnostic","message":"aborting due to 170 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 170 previous errors\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-bb85c95ede9b8991/output-test-lib-protobuf-172-{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0412`.\u001b[0m\n"} +-- +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:1:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":15778,"byte_end":15793,"line_start":305,"line_end":305,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":15778,"byte_end":15793,"line_start":305,"line_end":305,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:305:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m305\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:2:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":16516,"byte_end":16531,"line_start":323,"line_end":323,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":16516,"byte_end":16531,"line_start":323,"line_end":323,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:323:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m323\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:3:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":16909,"byte_end":16924,"line_start":333,"line_end":333,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":16909,"byte_end":16924,"line_start":333,"line_end":333,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:333:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m333\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:4:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17127,"byte_end":17142,"line_start":339,"line_end":339,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17127,"byte_end":17142,"line_start":339,"line_end":339,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:339:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m339\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:5:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17438,"byte_end":17453,"line_start":346,"line_end":346,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17438,"byte_end":17453,"line_start":346,"line_end":346,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:346:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m346\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:6:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17724,"byte_end":17739,"line_start":353,"line_end":353,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17724,"byte_end":17739,"line_start":353,"line_end":353,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:353:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m353\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:7:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":20011,"byte_end":20026,"line_start":425,"line_end":425,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":20011,"byte_end":20026,"line_start":425,"line_end":425,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:425:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m425\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:8:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":20851,"byte_end":20866,"line_start":442,"line_end":442,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":20851,"byte_end":20866,"line_start":442,"line_end":442,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:442:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m442\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:9:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21217,"byte_end":21232,"line_start":451,"line_end":451,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21217,"byte_end":21232,"line_start":451,"line_end":451,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:451:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m451\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:10:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21393,"byte_end":21408,"line_start":457,"line_end":457,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21393,"byte_end":21408,"line_start":457,"line_end":457,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:457:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m457\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:11:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21557,"byte_end":21572,"line_start":462,"line_end":462,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21557,"byte_end":21572,"line_start":462,"line_end":462,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:462:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m462\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:12:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":22963,"byte_end":22978,"line_start":508,"line_end":508,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":22963,"byte_end":22978,"line_start":508,"line_end":508,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:508:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m508\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:13:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":23443,"byte_end":23458,"line_start":519,"line_end":519,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":23443,"byte_end":23458,"line_start":519,"line_end":519,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:519:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m519\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:14:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":27493,"byte_end":27508,"line_start":612,"line_end":612,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":27493,"byte_end":27508,"line_start":612,"line_end":612,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:612:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m612\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:15:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28169,"byte_end":28184,"line_start":627,"line_end":627,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28169,"byte_end":28184,"line_start":627,"line_end":627,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:627:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m627\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:16:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28514,"byte_end":28529,"line_start":637,"line_end":637,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28514,"byte_end":28529,"line_start":637,"line_end":637,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:637:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m637\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:17:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28732,"byte_end":28747,"line_start":643,"line_end":643,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28732,"byte_end":28747,"line_start":643,"line_end":643,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:643:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m643\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:18:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":29019,"byte_end":29034,"line_start":650,"line_end":650,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":29019,"byte_end":29034,"line_start":650,"line_end":650,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:650:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m650\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:19:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":29281,"byte_end":29296,"line_start":657,"line_end":657,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":29281,"byte_end":29296,"line_start":657,"line_end":657,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:657:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m657\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:20:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":15987,"byte_end":16002,"line_start":336,"line_end":336,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":15987,"byte_end":16002,"line_start":336,"line_end":336,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:336:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m336\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:21:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":16696,"byte_end":16711,"line_start":354,"line_end":354,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":16696,"byte_end":16711,"line_start":354,"line_end":354,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:354:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m354\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:22:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20260,"byte_end":20275,"line_start":467,"line_end":467,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20260,"byte_end":20275,"line_start":467,"line_end":467,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:467:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m467\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:23:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20430,"byte_end":20445,"line_start":472,"line_end":472,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20430,"byte_end":20445,"line_start":472,"line_end":472,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:472:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m472\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:24:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20594,"byte_end":20609,"line_start":477,"line_end":477,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20594,"byte_end":20609,"line_start":477,"line_end":477,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:477:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m477\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:25:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":9566,"byte_end":9581,"line_start":189,"line_end":189,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":9566,"byte_end":9581,"line_start":189,"line_end":189,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:189:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m189\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:26:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10370,"byte_end":10385,"line_start":207,"line_end":207,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10370,"byte_end":10385,"line_start":207,"line_end":207,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:207:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m207\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:27:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10643,"byte_end":10658,"line_start":214,"line_end":214,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10643,"byte_end":10658,"line_start":214,"line_end":214,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:214:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m214\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:28:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10916,"byte_end":10931,"line_start":221,"line_end":221,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10916,"byte_end":10931,"line_start":221,"line_end":221,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:221:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m221\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:29:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":13708,"byte_end":13723,"line_start":301,"line_end":301,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":13708,"byte_end":13723,"line_start":301,"line_end":301,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:301:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m301\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:30:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":14429,"byte_end":14444,"line_start":319,"line_end":319,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":14429,"byte_end":14444,"line_start":319,"line_end":319,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:319:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m319\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:31:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15042,"byte_end":15057,"line_start":335,"line_end":335,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15042,"byte_end":15057,"line_start":335,"line_end":335,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:335:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m335\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:32:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15451,"byte_end":15466,"line_start":346,"line_end":346,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15451,"byte_end":15466,"line_start":346,"line_end":346,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:346:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m346\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:33:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15619,"byte_end":15634,"line_start":351,"line_end":351,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15619,"byte_end":15634,"line_start":351,"line_end":351,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:351:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m351\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:34:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15786,"byte_end":15801,"line_start":356,"line_end":356,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15786,"byte_end":15801,"line_start":356,"line_end":356,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:356:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m356\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:35:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16040,"byte_end":16055,"line_start":363,"line_end":363,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16040,"byte_end":16055,"line_start":363,"line_end":363,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:363:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m363\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:36:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16294,"byte_end":16309,"line_start":370,"line_end":370,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16294,"byte_end":16309,"line_start":370,"line_end":370,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:370:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m370\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:37:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16650,"byte_end":16665,"line_start":379,"line_end":379,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16650,"byte_end":16665,"line_start":379,"line_end":379,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:379:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m379\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:38:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17033,"byte_end":17048,"line_start":388,"line_end":388,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17033,"byte_end":17048,"line_start":388,"line_end":388,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:388:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m388\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:39:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17522,"byte_end":17537,"line_start":400,"line_end":400,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17522,"byte_end":17537,"line_start":400,"line_end":400,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:400:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m400\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:40:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17696,"byte_end":17711,"line_start":406,"line_end":406,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17696,"byte_end":17711,"line_start":406,"line_end":406,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:406:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m406\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:41:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17865,"byte_end":17880,"line_start":411,"line_end":411,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17865,"byte_end":17880,"line_start":411,"line_end":411,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:411:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m411\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:42:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":18235,"byte_end":18250,"line_start":420,"line_end":420,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":18235,"byte_end":18250,"line_start":420,"line_end":420,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:420:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m420\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:43:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":18735,"byte_end":18750,"line_start":432,"line_end":432,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":18735,"byte_end":18750,"line_start":432,"line_end":432,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:432:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m432\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:44:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":19383,"byte_end":19398,"line_start":447,"line_end":447,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":19383,"byte_end":19398,"line_start":447,"line_end":447,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:447:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m447\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:45:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":19856,"byte_end":19871,"line_start":458,"line_end":458,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":19856,"byte_end":19871,"line_start":458,"line_end":458,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:458:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m458\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:46:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":20377,"byte_end":20392,"line_start":469,"line_end":469,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":20377,"byte_end":20392,"line_start":469,"line_end":469,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:469:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m469\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:47:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":20744,"byte_end":20759,"line_start":480,"line_end":480,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":20744,"byte_end":20759,"line_start":480,"line_end":480,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:480:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m480\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:48:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":21207,"byte_end":21222,"line_start":491,"line_end":491,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":21207,"byte_end":21222,"line_start":491,"line_end":491,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:491:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m491\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:49:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":21721,"byte_end":21736,"line_start":503,"line_end":503,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":21721,"byte_end":21736,"line_start":503,"line_end":503,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:503:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m503\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:50:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":22195,"byte_end":22210,"line_start":514,"line_end":514,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":22195,"byte_end":22210,"line_start":514,"line_end":514,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:514:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m514\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:51:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":24297,"byte_end":24312,"line_start":575,"line_end":575,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":24297,"byte_end":24312,"line_start":575,"line_end":575,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:575:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m575\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:52:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":26822,"byte_end":26837,"line_start":654,"line_end":654,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":26822,"byte_end":26837,"line_start":654,"line_end":654,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:654:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m654\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:53:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":31795,"byte_end":31810,"line_start":780,"line_end":780,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":31795,"byte_end":31810,"line_start":780,"line_end":780,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:780:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m780\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:54:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":32447,"byte_end":32462,"line_start":794,"line_end":794,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":32447,"byte_end":32462,"line_start":794,"line_end":794,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:794:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m794\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:55:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":32899,"byte_end":32914,"line_start":805,"line_end":805,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":32899,"byte_end":32914,"line_start":805,"line_end":805,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:805:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m805\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:56:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":33929,"byte_end":33944,"line_start":827,"line_end":827,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":33929,"byte_end":33944,"line_start":827,"line_end":827,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:827:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m827\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:57:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34284,"byte_end":34299,"line_start":835,"line_end":835,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34284,"byte_end":34299,"line_start":835,"line_end":835,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:835:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m835\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:58:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34510,"byte_end":34525,"line_start":841,"line_end":841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34510,"byte_end":34525,"line_start":841,"line_end":841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:841:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m841\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:59:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34825,"byte_end":34840,"line_start":848,"line_end":848,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34825,"byte_end":34840,"line_start":848,"line_end":848,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:848:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m848\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:60:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35028,"byte_end":35043,"line_start":854,"line_end":854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35028,"byte_end":35043,"line_start":854,"line_end":854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:854:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m854\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:61:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35398,"byte_end":35413,"line_start":863,"line_end":863,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35398,"byte_end":35413,"line_start":863,"line_end":863,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:863:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m863\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:62:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35788,"byte_end":35803,"line_start":872,"line_end":872,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35788,"byte_end":35803,"line_start":872,"line_end":872,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:872:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m872\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:63:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35981,"byte_end":35996,"line_start":879,"line_end":879,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35981,"byte_end":35996,"line_start":879,"line_end":879,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:879:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m879\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:64:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":36512,"byte_end":36527,"line_start":891,"line_end":891,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":36512,"byte_end":36527,"line_start":891,"line_end":891,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:891:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m891\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:65:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":36882,"byte_end":36897,"line_start":900,"line_end":900,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":36882,"byte_end":36897,"line_start":900,"line_end":900,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:900:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m900\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:66:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":37500,"byte_end":37515,"line_start":914,"line_end":914,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":37500,"byte_end":37515,"line_start":914,"line_end":914,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:914:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m914\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:67:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":37870,"byte_end":37885,"line_start":923,"line_end":923,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":37870,"byte_end":37885,"line_start":923,"line_end":923,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:923:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m923\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:68:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38307,"byte_end":38322,"line_start":933,"line_end":933,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38307,"byte_end":38322,"line_start":933,"line_end":933,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:933:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m933\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:69:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38583,"byte_end":38598,"line_start":940,"line_end":940,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38583,"byte_end":38598,"line_start":940,"line_end":940,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:940:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m940\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:70:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38972,"byte_end":38987,"line_start":950,"line_end":950,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38972,"byte_end":38987,"line_start":950,"line_end":950,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:950:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m950\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:71:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39244,"byte_end":39259,"line_start":957,"line_end":957,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39244,"byte_end":39259,"line_start":957,"line_end":957,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:957:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m957\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:72:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39606,"byte_end":39621,"line_start":966,"line_end":966,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39606,"byte_end":39621,"line_start":966,"line_end":966,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:966:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m966\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:73:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39954,"byte_end":39969,"line_start":975,"line_end":975,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39954,"byte_end":39969,"line_start":975,"line_end":975,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:975:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m975\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:74:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":40716,"byte_end":40731,"line_start":995,"line_end":995,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":40716,"byte_end":40731,"line_start":995,"line_end":995,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:995:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m995\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:75:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41065,"byte_end":41080,"line_start":1004,"line_end":1004,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41065,"byte_end":41080,"line_start":1004,"line_end":1004,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1004:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1004\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:76:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41327,"byte_end":41342,"line_start":1011,"line_end":1011,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41327,"byte_end":41342,"line_start":1011,"line_end":1011,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1011:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1011\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:77:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41634,"byte_end":41649,"line_start":1020,"line_end":1020,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41634,"byte_end":41649,"line_start":1020,"line_end":1020,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1020:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1020\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:78:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41885,"byte_end":41900,"line_start":1027,"line_end":1027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41885,"byte_end":41900,"line_start":1027,"line_end":1027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1027:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1027\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:79:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":42154,"byte_end":42169,"line_start":1034,"line_end":1034,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":42154,"byte_end":42169,"line_start":1034,"line_end":1034,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1034:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1034\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:80:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":42636,"byte_end":42651,"line_start":1045,"line_end":1045,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":42636,"byte_end":42651,"line_start":1045,"line_end":1045,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1045:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1045\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:81:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43005,"byte_end":43020,"line_start":1054,"line_end":1054,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43005,"byte_end":43020,"line_start":1054,"line_end":1054,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1054:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1054\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:82:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43359,"byte_end":43374,"line_start":1065,"line_end":1065,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43359,"byte_end":43374,"line_start":1065,"line_end":1065,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1065:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1065\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:83:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43932,"byte_end":43947,"line_start":1078,"line_end":1078,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43932,"byte_end":43947,"line_start":1078,"line_end":1078,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1078:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1078\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:84:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":45665,"byte_end":45680,"line_start":1112,"line_end":1112,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":45665,"byte_end":45680,"line_start":1112,"line_end":1112,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1112:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:85:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":46396,"byte_end":46411,"line_start":1129,"line_end":1129,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":46396,"byte_end":46411,"line_start":1129,"line_end":1129,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1129:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1129\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:86:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47089,"byte_end":47104,"line_start":1143,"line_end":1143,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47089,"byte_end":47104,"line_start":1143,"line_end":1143,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1143:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:87:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47379,"byte_end":47394,"line_start":1151,"line_end":1151,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47379,"byte_end":47394,"line_start":1151,"line_end":1151,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1151:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1151\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:88:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47663,"byte_end":47678,"line_start":1158,"line_end":1158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47663,"byte_end":47678,"line_start":1158,"line_end":1158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1158:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1158\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:89:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":48071,"byte_end":48086,"line_start":1167,"line_end":1167,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":48071,"byte_end":48086,"line_start":1167,"line_end":1167,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1167:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1167\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:90:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52366,"byte_end":52381,"line_start":1244,"line_end":1244,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52366,"byte_end":52381,"line_start":1244,"line_end":1244,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1244:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1244\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:91:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52649,"byte_end":52664,"line_start":1251,"line_end":1251,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52649,"byte_end":52664,"line_start":1251,"line_end":1251,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1251:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1251\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:92:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52975,"byte_end":52990,"line_start":1259,"line_end":1259,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52975,"byte_end":52990,"line_start":1259,"line_end":1259,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1259:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1259\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:93:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53243,"byte_end":53258,"line_start":1266,"line_end":1266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53243,"byte_end":53258,"line_start":1266,"line_end":1266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1266:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1266\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:94:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53512,"byte_end":53527,"line_start":1273,"line_end":1273,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53512,"byte_end":53527,"line_start":1273,"line_end":1273,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1273:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1273\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:95:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53784,"byte_end":53799,"line_start":1280,"line_end":1280,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53784,"byte_end":53799,"line_start":1280,"line_end":1280,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1280:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1280\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:96:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":57576,"byte_end":57591,"line_start":1349,"line_end":1349,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":57576,"byte_end":57591,"line_start":1349,"line_end":1349,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1349:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1349\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:97:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":57889,"byte_end":57904,"line_start":1357,"line_end":1357,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":57889,"byte_end":57904,"line_start":1357,"line_end":1357,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1357:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1357\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:98:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58137,"byte_end":58152,"line_start":1364,"line_end":1364,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58137,"byte_end":58152,"line_start":1364,"line_end":1364,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1364:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1364\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:99:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58383,"byte_end":58398,"line_start":1371,"line_end":1371,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58383,"byte_end":58398,"line_start":1371,"line_end":1371,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1371:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1371\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:100:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58631,"byte_end":58646,"line_start":1378,"line_end":1378,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58631,"byte_end":58646,"line_start":1378,"line_end":1378,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1378:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1378\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:101:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58876,"byte_end":58891,"line_start":1385,"line_end":1385,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58876,"byte_end":58891,"line_start":1385,"line_end":1385,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1385:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1385\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:102:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":59036,"byte_end":59051,"line_start":1391,"line_end":1391,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":59036,"byte_end":59051,"line_start":1391,"line_end":1391,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1391:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1391\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:103:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":59596,"byte_end":59611,"line_start":1404,"line_end":1404,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":59596,"byte_end":59611,"line_start":1404,"line_end":1404,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1404:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1404\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:104:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":60554,"byte_end":60569,"line_start":1429,"line_end":1429,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":60554,"byte_end":60569,"line_start":1429,"line_end":1429,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1429:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1429\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:105:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":61039,"byte_end":61054,"line_start":1440,"line_end":1440,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":61039,"byte_end":61054,"line_start":1440,"line_end":1440,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1440:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1440\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:106:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":61413,"byte_end":61428,"line_start":1450,"line_end":1450,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":61413,"byte_end":61428,"line_start":1450,"line_end":1450,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1450:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1450\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:107:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":62143,"byte_end":62158,"line_start":1465,"line_end":1465,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":62143,"byte_end":62158,"line_start":1465,"line_end":1465,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1465:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1465\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:108:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":62532,"byte_end":62547,"line_start":1474,"line_end":1474,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":62532,"byte_end":62547,"line_start":1474,"line_end":1474,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1474:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1474\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:109:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":65661,"byte_end":65676,"line_start":1565,"line_end":1565,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":65661,"byte_end":65676,"line_start":1565,"line_end":1565,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1565:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1565\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:110:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":66131,"byte_end":66146,"line_start":1576,"line_end":1576,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":66131,"byte_end":66146,"line_start":1576,"line_end":1576,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1576:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1576\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:111:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":68034,"byte_end":68049,"line_start":1621,"line_end":1621,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":68034,"byte_end":68049,"line_start":1621,"line_end":1621,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1621:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1621\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:112:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":69982,"byte_end":69997,"line_start":1656,"line_end":1656,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":69982,"byte_end":69997,"line_start":1656,"line_end":1656,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1656:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1656\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:113:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":70152,"byte_end":70167,"line_start":1661,"line_end":1661,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":70152,"byte_end":70167,"line_start":1661,"line_end":1661,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1661:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1661\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:114:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":70324,"byte_end":70339,"line_start":1666,"line_end":1666,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":70324,"byte_end":70339,"line_start":1666,"line_end":1666,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1666:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1666\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:115:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":71584,"byte_end":71599,"line_start":1694,"line_end":1694,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":71584,"byte_end":71599,"line_start":1694,"line_end":1694,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1694:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1694\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:116:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":71968,"byte_end":71983,"line_start":1703,"line_end":1703,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":71968,"byte_end":71983,"line_start":1703,"line_end":1703,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1703:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1703\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:117:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":73915,"byte_end":73930,"line_start":1756,"line_end":1756,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":73915,"byte_end":73930,"line_start":1756,"line_end":1756,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1756:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1756\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:118:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":75124,"byte_end":75139,"line_start":1779,"line_end":1779,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":75124,"byte_end":75139,"line_start":1779,"line_end":1779,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1779:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1779\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:119:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":75955,"byte_end":75970,"line_start":1796,"line_end":1796,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":75955,"byte_end":75970,"line_start":1796,"line_end":1796,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1796:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1796\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:120:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":77440,"byte_end":77455,"line_start":1822,"line_end":1822,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":77440,"byte_end":77455,"line_start":1822,"line_end":1822,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1822:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1822\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:121:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":77852,"byte_end":77867,"line_start":1831,"line_end":1831,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":77852,"byte_end":77867,"line_start":1831,"line_end":1831,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1831:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1831\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:122:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78160,"byte_end":78175,"line_start":1838,"line_end":1838,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78160,"byte_end":78175,"line_start":1838,"line_end":1838,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1838:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1838\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:123:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78468,"byte_end":78483,"line_start":1846,"line_end":1846,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78468,"byte_end":78483,"line_start":1846,"line_end":1846,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1846:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1846\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:124:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78766,"byte_end":78781,"line_start":1853,"line_end":1853,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78766,"byte_end":78781,"line_start":1853,"line_end":1853,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1853:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1853\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:125:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":79182,"byte_end":79197,"line_start":1863,"line_end":1863,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":79182,"byte_end":79197,"line_start":1863,"line_end":1863,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1863:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1863\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:126:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":79564,"byte_end":79579,"line_start":1871,"line_end":1871,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":79564,"byte_end":79579,"line_start":1871,"line_end":1871,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1871:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1871\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:127:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80331,"byte_end":80346,"line_start":1890,"line_end":1890,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80331,"byte_end":80346,"line_start":1890,"line_end":1890,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1890:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1890\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:128:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80524,"byte_end":80539,"line_start":1896,"line_end":1896,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80524,"byte_end":80539,"line_start":1896,"line_end":1896,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1896:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1896\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:129:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80685,"byte_end":80700,"line_start":1901,"line_end":1901,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80685,"byte_end":80700,"line_start":1901,"line_end":1901,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1901:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1901\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:130:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80851,"byte_end":80866,"line_start":1906,"line_end":1906,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80851,"byte_end":80866,"line_start":1906,"line_end":1906,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1906:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1906\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:131:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81017,"byte_end":81032,"line_start":1911,"line_end":1911,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81017,"byte_end":81032,"line_start":1911,"line_end":1911,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1911:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1911\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:132:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81177,"byte_end":81192,"line_start":1916,"line_end":1916,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81177,"byte_end":81192,"line_start":1916,"line_end":1916,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1916:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1916\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:133:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81338,"byte_end":81353,"line_start":1921,"line_end":1921,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81338,"byte_end":81353,"line_start":1921,"line_end":1921,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1921:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1921\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:134:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":82136,"byte_end":82151,"line_start":1940,"line_end":1940,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":82136,"byte_end":82151,"line_start":1940,"line_end":1940,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1940:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1940\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:135:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":83569,"byte_end":83584,"line_start":1968,"line_end":1968,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":83569,"byte_end":83584,"line_start":1968,"line_end":1968,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1968:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1968\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:136:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":84163,"byte_end":84178,"line_start":1982,"line_end":1982,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":84163,"byte_end":84178,"line_start":1982,"line_end":1982,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1982:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1982\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:137:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":85552,"byte_end":85567,"line_start":2017,"line_end":2017,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":85552,"byte_end":85567,"line_start":2017,"line_end":2017,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2017:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2017\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:138:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":85930,"byte_end":85945,"line_start":2027,"line_end":2027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":85930,"byte_end":85945,"line_start":2027,"line_end":2027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2027:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2027\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:139:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":86585,"byte_end":86600,"line_start":2042,"line_end":2042,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":86585,"byte_end":86600,"line_start":2042,"line_end":2042,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2042:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2042\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:140:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87021,"byte_end":87036,"line_start":2051,"line_end":2051,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87021,"byte_end":87036,"line_start":2051,"line_end":2051,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2051:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2051\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:141:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87374,"byte_end":87389,"line_start":2058,"line_end":2058,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87374,"byte_end":87389,"line_start":2058,"line_end":2058,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2058:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2058\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:142:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87690,"byte_end":87705,"line_start":2067,"line_end":2067,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87690,"byte_end":87705,"line_start":2067,"line_end":2067,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2067:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2067\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:143:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":88219,"byte_end":88234,"line_start":2080,"line_end":2080,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":88219,"byte_end":88234,"line_start":2080,"line_end":2080,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2080:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2080\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:144:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":88778,"byte_end":88793,"line_start":2093,"line_end":2093,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":88778,"byte_end":88793,"line_start":2093,"line_end":2093,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2093:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2093\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:145:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":89536,"byte_end":89551,"line_start":2110,"line_end":2110,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":89536,"byte_end":89551,"line_start":2110,"line_end":2110,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2110:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2110\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:146:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":90590,"byte_end":90605,"line_start":2133,"line_end":2133,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":90590,"byte_end":90605,"line_start":2133,"line_end":2133,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2133:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2133\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:147:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":91758,"byte_end":91773,"line_start":2158,"line_end":2158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":91758,"byte_end":91773,"line_start":2158,"line_end":2158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2158:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2158\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:148:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":92326,"byte_end":92341,"line_start":2171,"line_end":2171,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":92326,"byte_end":92341,"line_start":2171,"line_end":2171,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2171:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2171\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:149:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":93093,"byte_end":93108,"line_start":2188,"line_end":2188,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":93093,"byte_end":93108,"line_start":2188,"line_end":2188,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2188:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:150:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":93857,"byte_end":93872,"line_start":2205,"line_end":2205,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":93857,"byte_end":93872,"line_start":2205,"line_end":2205,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2205:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2205\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:151:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":94730,"byte_end":94745,"line_start":2224,"line_end":2224,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":94730,"byte_end":94745,"line_start":2224,"line_end":2224,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2224:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2224\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:152:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":95702,"byte_end":95717,"line_start":2245,"line_end":2245,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":95702,"byte_end":95717,"line_start":2245,"line_end":2245,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2245:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2245\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:153:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":96687,"byte_end":96702,"line_start":2266,"line_end":2266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":96687,"byte_end":96702,"line_start":2266,"line_end":2266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2266:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2266\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:154:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":97003,"byte_end":97018,"line_start":2275,"line_end":2275,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":97003,"byte_end":97018,"line_start":2275,"line_end":2275,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2275:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2275\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:155:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":98398,"byte_end":98413,"line_start":2302,"line_end":2302,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":98398,"byte_end":98413,"line_start":2302,"line_end":2302,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2302:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2302\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:156:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":104920,"byte_end":104935,"line_start":2445,"line_end":2445,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":104920,"byte_end":104935,"line_start":2445,"line_end":2445,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2445:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2445\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:157:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":116118,"byte_end":116133,"line_start":2737,"line_end":2737,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":116118,"byte_end":116133,"line_start":2737,"line_end":2737,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2737:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2737\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:158:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":117463,"byte_end":117478,"line_start":2763,"line_end":2763,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":117463,"byte_end":117478,"line_start":2763,"line_end":2763,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2763:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2763\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:159:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":118808,"byte_end":118823,"line_start":2789,"line_end":2789,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":118808,"byte_end":118823,"line_start":2789,"line_end":2789,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2789:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2789\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:160:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":119711,"byte_end":119726,"line_start":2809,"line_end":2809,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":119711,"byte_end":119726,"line_start":2809,"line_end":2809,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2809:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2809\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:161:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":120731,"byte_end":120746,"line_start":2832,"line_end":2832,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":120731,"byte_end":120746,"line_start":2832,"line_end":2832,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2832:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2832\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:162:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":121073,"byte_end":121088,"line_start":2841,"line_end":2841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":121073,"byte_end":121088,"line_start":2841,"line_end":2841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2841:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2841\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:163:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":121553,"byte_end":121568,"line_start":2854,"line_end":2854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":121553,"byte_end":121568,"line_start":2854,"line_end":2854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2854:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2854\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:164:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":123246,"byte_end":123261,"line_start":2893,"line_end":2893,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":123246,"byte_end":123261,"line_start":2893,"line_end":2893,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2893:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2893\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:165:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":123709,"byte_end":123724,"line_start":2904,"line_end":2904,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":123709,"byte_end":123724,"line_start":2904,"line_end":2904,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2904:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2904\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:166:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":124044,"byte_end":124059,"line_start":2915,"line_end":2915,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":124044,"byte_end":124059,"line_start":2915,"line_end":2915,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2915:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2915\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:167:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":125585,"byte_end":125600,"line_start":2965,"line_end":2965,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":125585,"byte_end":125600,"line_start":2965,"line_end":2965,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2965:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2965\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:168:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":137292,"byte_end":137307,"line_start":3272,"line_end":3272,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":137292,"byte_end":137307,"line_start":3272,"line_end":3272,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:3272:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3272\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:169:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs","byte_start":274,"byte_end":289,"line_start":7,"line_end":7,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs","byte_start":274,"byte_end":289,"line_start":7,"line_end":7,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs:7:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf:170:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs","byte_start":518,"byte_end":533,"line_start":14,"line_end":14,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs","byte_start":518,"byte_end":533,"line_start":14,"line_end":14,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs:14:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf-171-{"$message_type":"diagnostic","message":"aborting due to 170 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 170 previous errors\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-dc74ff1d529dc2b9/output-lib-protobuf-172-{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0412`.\u001b[0m\n"} +-- +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:1:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":15778,"byte_end":15793,"line_start":305,"line_end":305,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":15778,"byte_end":15793,"line_start":305,"line_end":305,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:305:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m305\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:2:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":16516,"byte_end":16531,"line_start":323,"line_end":323,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":16516,"byte_end":16531,"line_start":323,"line_end":323,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:323:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m323\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:3:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":16909,"byte_end":16924,"line_start":333,"line_end":333,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":16909,"byte_end":16924,"line_start":333,"line_end":333,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:333:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m333\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:4:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17127,"byte_end":17142,"line_start":339,"line_end":339,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17127,"byte_end":17142,"line_start":339,"line_end":339,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:339:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m339\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:5:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17438,"byte_end":17453,"line_start":346,"line_end":346,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17438,"byte_end":17453,"line_start":346,"line_end":346,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:346:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m346\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:6:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17724,"byte_end":17739,"line_start":353,"line_end":353,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":17724,"byte_end":17739,"line_start":353,"line_end":353,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:353:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m353\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:7:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":20011,"byte_end":20026,"line_start":425,"line_end":425,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":20011,"byte_end":20026,"line_start":425,"line_end":425,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:425:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m425\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:8:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":20851,"byte_end":20866,"line_start":442,"line_end":442,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":20851,"byte_end":20866,"line_start":442,"line_end":442,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:442:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m442\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:9:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21217,"byte_end":21232,"line_start":451,"line_end":451,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21217,"byte_end":21232,"line_start":451,"line_end":451,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:451:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m451\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:10:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21393,"byte_end":21408,"line_start":457,"line_end":457,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21393,"byte_end":21408,"line_start":457,"line_end":457,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:457:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m457\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:11:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21557,"byte_end":21572,"line_start":462,"line_end":462,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":21557,"byte_end":21572,"line_start":462,"line_end":462,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:462:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m462\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:12:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":22963,"byte_end":22978,"line_start":508,"line_end":508,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":22963,"byte_end":22978,"line_start":508,"line_end":508,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:508:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m508\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:13:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":23443,"byte_end":23458,"line_start":519,"line_end":519,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":23443,"byte_end":23458,"line_start":519,"line_end":519,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:519:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m519\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:14:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":27493,"byte_end":27508,"line_start":612,"line_end":612,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":27493,"byte_end":27508,"line_start":612,"line_end":612,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:612:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m612\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:15:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28169,"byte_end":28184,"line_start":627,"line_end":627,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28169,"byte_end":28184,"line_start":627,"line_end":627,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:627:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m627\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:16:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28514,"byte_end":28529,"line_start":637,"line_end":637,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28514,"byte_end":28529,"line_start":637,"line_end":637,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:637:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m637\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:17:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28732,"byte_end":28747,"line_start":643,"line_end":643,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":28732,"byte_end":28747,"line_start":643,"line_end":643,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:643:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m643\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:18:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":29019,"byte_end":29034,"line_start":650,"line_end":650,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":29019,"byte_end":29034,"line_start":650,"line_end":650,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:650:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m650\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:19:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":29281,"byte_end":29296,"line_start":657,"line_end":657,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs","byte_start":29281,"byte_end":29296,"line_start":657,"line_end":657,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:657:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m657\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:20:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":15987,"byte_end":16002,"line_start":336,"line_end":336,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":15987,"byte_end":16002,"line_start":336,"line_end":336,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:336:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m336\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:21:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":16696,"byte_end":16711,"line_start":354,"line_end":354,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":16696,"byte_end":16711,"line_start":354,"line_end":354,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:354:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m354\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:22:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20260,"byte_end":20275,"line_start":467,"line_end":467,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20260,"byte_end":20275,"line_start":467,"line_end":467,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:467:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m467\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:23:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20430,"byte_end":20445,"line_start":472,"line_end":472,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20430,"byte_end":20445,"line_start":472,"line_end":472,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:472:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m472\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:24:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20594,"byte_end":20609,"line_start":477,"line_end":477,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs","byte_start":20594,"byte_end":20609,"line_start":477,"line_end":477,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:477:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m477\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:25:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":9566,"byte_end":9581,"line_start":189,"line_end":189,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":9566,"byte_end":9581,"line_start":189,"line_end":189,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:189:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m189\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:26:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10370,"byte_end":10385,"line_start":207,"line_end":207,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10370,"byte_end":10385,"line_start":207,"line_end":207,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:207:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m207\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:27:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10643,"byte_end":10658,"line_start":214,"line_end":214,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10643,"byte_end":10658,"line_start":214,"line_end":214,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:214:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m214\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:28:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10916,"byte_end":10931,"line_start":221,"line_end":221,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":10916,"byte_end":10931,"line_start":221,"line_end":221,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:221:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m221\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:29:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":13708,"byte_end":13723,"line_start":301,"line_end":301,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":13708,"byte_end":13723,"line_start":301,"line_end":301,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:301:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m301\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:30:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":14429,"byte_end":14444,"line_start":319,"line_end":319,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":14429,"byte_end":14444,"line_start":319,"line_end":319,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:319:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m319\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:31:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15042,"byte_end":15057,"line_start":335,"line_end":335,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15042,"byte_end":15057,"line_start":335,"line_end":335,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:335:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m335\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:32:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15451,"byte_end":15466,"line_start":346,"line_end":346,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15451,"byte_end":15466,"line_start":346,"line_end":346,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:346:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m346\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:33:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15619,"byte_end":15634,"line_start":351,"line_end":351,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15619,"byte_end":15634,"line_start":351,"line_end":351,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:351:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m351\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:34:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15786,"byte_end":15801,"line_start":356,"line_end":356,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":15786,"byte_end":15801,"line_start":356,"line_end":356,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:356:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m356\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:35:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16040,"byte_end":16055,"line_start":363,"line_end":363,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16040,"byte_end":16055,"line_start":363,"line_end":363,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:363:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m363\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:36:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16294,"byte_end":16309,"line_start":370,"line_end":370,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16294,"byte_end":16309,"line_start":370,"line_end":370,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:370:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m370\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:37:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16650,"byte_end":16665,"line_start":379,"line_end":379,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":16650,"byte_end":16665,"line_start":379,"line_end":379,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:379:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m379\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:38:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17033,"byte_end":17048,"line_start":388,"line_end":388,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17033,"byte_end":17048,"line_start":388,"line_end":388,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:388:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m388\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:39:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17522,"byte_end":17537,"line_start":400,"line_end":400,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17522,"byte_end":17537,"line_start":400,"line_end":400,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:400:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m400\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:40:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17696,"byte_end":17711,"line_start":406,"line_end":406,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17696,"byte_end":17711,"line_start":406,"line_end":406,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:406:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m406\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:41:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17865,"byte_end":17880,"line_start":411,"line_end":411,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":17865,"byte_end":17880,"line_start":411,"line_end":411,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:411:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m411\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:42:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":18235,"byte_end":18250,"line_start":420,"line_end":420,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":18235,"byte_end":18250,"line_start":420,"line_end":420,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:420:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m420\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:43:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":18735,"byte_end":18750,"line_start":432,"line_end":432,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":18735,"byte_end":18750,"line_start":432,"line_end":432,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:432:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m432\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:44:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":19383,"byte_end":19398,"line_start":447,"line_end":447,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":19383,"byte_end":19398,"line_start":447,"line_end":447,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:447:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m447\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:45:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":19856,"byte_end":19871,"line_start":458,"line_end":458,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":19856,"byte_end":19871,"line_start":458,"line_end":458,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:458:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m458\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:46:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":20377,"byte_end":20392,"line_start":469,"line_end":469,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":20377,"byte_end":20392,"line_start":469,"line_end":469,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:469:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m469\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:47:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":20744,"byte_end":20759,"line_start":480,"line_end":480,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":20744,"byte_end":20759,"line_start":480,"line_end":480,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:480:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m480\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:48:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":21207,"byte_end":21222,"line_start":491,"line_end":491,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":21207,"byte_end":21222,"line_start":491,"line_end":491,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:491:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m491\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:49:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":21721,"byte_end":21736,"line_start":503,"line_end":503,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":21721,"byte_end":21736,"line_start":503,"line_end":503,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:503:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m503\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:50:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":22195,"byte_end":22210,"line_start":514,"line_end":514,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":22195,"byte_end":22210,"line_start":514,"line_end":514,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:514:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m514\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:51:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":24297,"byte_end":24312,"line_start":575,"line_end":575,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":24297,"byte_end":24312,"line_start":575,"line_end":575,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:575:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m575\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:52:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":26822,"byte_end":26837,"line_start":654,"line_end":654,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":26822,"byte_end":26837,"line_start":654,"line_end":654,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:654:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m654\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:53:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":31795,"byte_end":31810,"line_start":780,"line_end":780,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":31795,"byte_end":31810,"line_start":780,"line_end":780,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:780:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m780\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:54:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":32447,"byte_end":32462,"line_start":794,"line_end":794,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":32447,"byte_end":32462,"line_start":794,"line_end":794,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:794:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m794\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:55:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":32899,"byte_end":32914,"line_start":805,"line_end":805,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":32899,"byte_end":32914,"line_start":805,"line_end":805,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:805:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m805\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:56:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":33929,"byte_end":33944,"line_start":827,"line_end":827,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":33929,"byte_end":33944,"line_start":827,"line_end":827,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:827:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m827\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:57:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34284,"byte_end":34299,"line_start":835,"line_end":835,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34284,"byte_end":34299,"line_start":835,"line_end":835,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:835:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m835\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:58:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34510,"byte_end":34525,"line_start":841,"line_end":841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34510,"byte_end":34525,"line_start":841,"line_end":841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:841:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m841\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:59:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34825,"byte_end":34840,"line_start":848,"line_end":848,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":34825,"byte_end":34840,"line_start":848,"line_end":848,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:848:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m848\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:60:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35028,"byte_end":35043,"line_start":854,"line_end":854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35028,"byte_end":35043,"line_start":854,"line_end":854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:854:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m854\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:61:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35398,"byte_end":35413,"line_start":863,"line_end":863,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35398,"byte_end":35413,"line_start":863,"line_end":863,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:863:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m863\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:62:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35788,"byte_end":35803,"line_start":872,"line_end":872,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35788,"byte_end":35803,"line_start":872,"line_end":872,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:872:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m872\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:63:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35981,"byte_end":35996,"line_start":879,"line_end":879,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":35981,"byte_end":35996,"line_start":879,"line_end":879,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:879:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m879\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:64:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":36512,"byte_end":36527,"line_start":891,"line_end":891,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":36512,"byte_end":36527,"line_start":891,"line_end":891,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:891:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m891\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:65:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":36882,"byte_end":36897,"line_start":900,"line_end":900,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":36882,"byte_end":36897,"line_start":900,"line_end":900,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:900:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m900\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:66:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":37500,"byte_end":37515,"line_start":914,"line_end":914,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":37500,"byte_end":37515,"line_start":914,"line_end":914,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:914:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m914\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:67:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":37870,"byte_end":37885,"line_start":923,"line_end":923,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":37870,"byte_end":37885,"line_start":923,"line_end":923,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:923:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m923\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:68:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38307,"byte_end":38322,"line_start":933,"line_end":933,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38307,"byte_end":38322,"line_start":933,"line_end":933,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:933:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m933\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:69:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38583,"byte_end":38598,"line_start":940,"line_end":940,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38583,"byte_end":38598,"line_start":940,"line_end":940,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:940:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m940\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:70:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38972,"byte_end":38987,"line_start":950,"line_end":950,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":38972,"byte_end":38987,"line_start":950,"line_end":950,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:950:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m950\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:71:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39244,"byte_end":39259,"line_start":957,"line_end":957,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39244,"byte_end":39259,"line_start":957,"line_end":957,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:957:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m957\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:72:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39606,"byte_end":39621,"line_start":966,"line_end":966,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39606,"byte_end":39621,"line_start":966,"line_end":966,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:966:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m966\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:73:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39954,"byte_end":39969,"line_start":975,"line_end":975,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":39954,"byte_end":39969,"line_start":975,"line_end":975,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:975:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m975\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:74:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":40716,"byte_end":40731,"line_start":995,"line_end":995,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":40716,"byte_end":40731,"line_start":995,"line_end":995,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:995:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m995\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:75:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41065,"byte_end":41080,"line_start":1004,"line_end":1004,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41065,"byte_end":41080,"line_start":1004,"line_end":1004,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1004:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1004\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:76:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41327,"byte_end":41342,"line_start":1011,"line_end":1011,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41327,"byte_end":41342,"line_start":1011,"line_end":1011,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1011:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1011\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:77:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41634,"byte_end":41649,"line_start":1020,"line_end":1020,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41634,"byte_end":41649,"line_start":1020,"line_end":1020,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1020:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1020\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:78:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41885,"byte_end":41900,"line_start":1027,"line_end":1027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":41885,"byte_end":41900,"line_start":1027,"line_end":1027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1027:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1027\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:79:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":42154,"byte_end":42169,"line_start":1034,"line_end":1034,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":42154,"byte_end":42169,"line_start":1034,"line_end":1034,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1034:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1034\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:80:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":42636,"byte_end":42651,"line_start":1045,"line_end":1045,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":42636,"byte_end":42651,"line_start":1045,"line_end":1045,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1045:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1045\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:81:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43005,"byte_end":43020,"line_start":1054,"line_end":1054,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43005,"byte_end":43020,"line_start":1054,"line_end":1054,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1054:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1054\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:82:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43359,"byte_end":43374,"line_start":1065,"line_end":1065,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43359,"byte_end":43374,"line_start":1065,"line_end":1065,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1065:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1065\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:83:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43932,"byte_end":43947,"line_start":1078,"line_end":1078,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":43932,"byte_end":43947,"line_start":1078,"line_end":1078,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1078:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1078\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:84:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":45665,"byte_end":45680,"line_start":1112,"line_end":1112,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":45665,"byte_end":45680,"line_start":1112,"line_end":1112,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1112:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1112\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:85:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":46396,"byte_end":46411,"line_start":1129,"line_end":1129,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":46396,"byte_end":46411,"line_start":1129,"line_end":1129,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1129:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1129\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:86:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47089,"byte_end":47104,"line_start":1143,"line_end":1143,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47089,"byte_end":47104,"line_start":1143,"line_end":1143,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1143:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1143\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:87:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47379,"byte_end":47394,"line_start":1151,"line_end":1151,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47379,"byte_end":47394,"line_start":1151,"line_end":1151,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1151:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1151\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:88:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47663,"byte_end":47678,"line_start":1158,"line_end":1158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":47663,"byte_end":47678,"line_start":1158,"line_end":1158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1158:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1158\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:89:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":48071,"byte_end":48086,"line_start":1167,"line_end":1167,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":48071,"byte_end":48086,"line_start":1167,"line_end":1167,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1167:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1167\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:90:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52366,"byte_end":52381,"line_start":1244,"line_end":1244,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52366,"byte_end":52381,"line_start":1244,"line_end":1244,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1244:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1244\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:91:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52649,"byte_end":52664,"line_start":1251,"line_end":1251,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52649,"byte_end":52664,"line_start":1251,"line_end":1251,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1251:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1251\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:92:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52975,"byte_end":52990,"line_start":1259,"line_end":1259,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":52975,"byte_end":52990,"line_start":1259,"line_end":1259,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1259:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1259\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:93:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53243,"byte_end":53258,"line_start":1266,"line_end":1266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53243,"byte_end":53258,"line_start":1266,"line_end":1266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1266:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1266\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:94:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53512,"byte_end":53527,"line_start":1273,"line_end":1273,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53512,"byte_end":53527,"line_start":1273,"line_end":1273,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1273:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1273\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:95:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53784,"byte_end":53799,"line_start":1280,"line_end":1280,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":53784,"byte_end":53799,"line_start":1280,"line_end":1280,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1280:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1280\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:96:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":57576,"byte_end":57591,"line_start":1349,"line_end":1349,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":57576,"byte_end":57591,"line_start":1349,"line_end":1349,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1349:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1349\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:97:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":57889,"byte_end":57904,"line_start":1357,"line_end":1357,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":57889,"byte_end":57904,"line_start":1357,"line_end":1357,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1357:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1357\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:98:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58137,"byte_end":58152,"line_start":1364,"line_end":1364,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58137,"byte_end":58152,"line_start":1364,"line_end":1364,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1364:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1364\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:99:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58383,"byte_end":58398,"line_start":1371,"line_end":1371,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58383,"byte_end":58398,"line_start":1371,"line_end":1371,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1371:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1371\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:100:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58631,"byte_end":58646,"line_start":1378,"line_end":1378,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58631,"byte_end":58646,"line_start":1378,"line_end":1378,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1378:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1378\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:101:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58876,"byte_end":58891,"line_start":1385,"line_end":1385,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":58876,"byte_end":58891,"line_start":1385,"line_end":1385,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1385:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1385\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:102:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":59036,"byte_end":59051,"line_start":1391,"line_end":1391,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":59036,"byte_end":59051,"line_start":1391,"line_end":1391,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1391:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1391\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:103:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":59596,"byte_end":59611,"line_start":1404,"line_end":1404,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":59596,"byte_end":59611,"line_start":1404,"line_end":1404,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1404:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1404\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:104:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":60554,"byte_end":60569,"line_start":1429,"line_end":1429,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":60554,"byte_end":60569,"line_start":1429,"line_end":1429,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1429:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1429\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:105:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":61039,"byte_end":61054,"line_start":1440,"line_end":1440,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":61039,"byte_end":61054,"line_start":1440,"line_end":1440,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1440:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1440\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:106:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":61413,"byte_end":61428,"line_start":1450,"line_end":1450,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":61413,"byte_end":61428,"line_start":1450,"line_end":1450,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1450:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1450\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:107:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":62143,"byte_end":62158,"line_start":1465,"line_end":1465,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":62143,"byte_end":62158,"line_start":1465,"line_end":1465,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1465:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1465\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:108:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":62532,"byte_end":62547,"line_start":1474,"line_end":1474,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":62532,"byte_end":62547,"line_start":1474,"line_end":1474,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1474:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1474\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:109:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":65661,"byte_end":65676,"line_start":1565,"line_end":1565,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":65661,"byte_end":65676,"line_start":1565,"line_end":1565,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1565:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1565\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:110:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":66131,"byte_end":66146,"line_start":1576,"line_end":1576,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":66131,"byte_end":66146,"line_start":1576,"line_end":1576,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1576:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1576\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:111:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":68034,"byte_end":68049,"line_start":1621,"line_end":1621,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":68034,"byte_end":68049,"line_start":1621,"line_end":1621,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1621:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1621\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:112:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":69982,"byte_end":69997,"line_start":1656,"line_end":1656,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":69982,"byte_end":69997,"line_start":1656,"line_end":1656,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1656:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1656\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:113:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":70152,"byte_end":70167,"line_start":1661,"line_end":1661,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":70152,"byte_end":70167,"line_start":1661,"line_end":1661,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1661:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1661\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:114:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":70324,"byte_end":70339,"line_start":1666,"line_end":1666,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":70324,"byte_end":70339,"line_start":1666,"line_end":1666,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1666:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1666\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:115:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":71584,"byte_end":71599,"line_start":1694,"line_end":1694,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":71584,"byte_end":71599,"line_start":1694,"line_end":1694,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1694:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1694\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:116:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":71968,"byte_end":71983,"line_start":1703,"line_end":1703,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":71968,"byte_end":71983,"line_start":1703,"line_end":1703,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1703:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1703\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:117:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":73915,"byte_end":73930,"line_start":1756,"line_end":1756,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":73915,"byte_end":73930,"line_start":1756,"line_end":1756,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1756:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1756\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:118:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":75124,"byte_end":75139,"line_start":1779,"line_end":1779,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":75124,"byte_end":75139,"line_start":1779,"line_end":1779,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1779:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1779\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:119:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":75955,"byte_end":75970,"line_start":1796,"line_end":1796,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":75955,"byte_end":75970,"line_start":1796,"line_end":1796,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1796:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1796\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:120:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":77440,"byte_end":77455,"line_start":1822,"line_end":1822,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":77440,"byte_end":77455,"line_start":1822,"line_end":1822,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1822:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1822\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:121:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":77852,"byte_end":77867,"line_start":1831,"line_end":1831,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":77852,"byte_end":77867,"line_start":1831,"line_end":1831,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1831:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1831\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:122:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78160,"byte_end":78175,"line_start":1838,"line_end":1838,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78160,"byte_end":78175,"line_start":1838,"line_end":1838,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1838:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1838\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:123:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78468,"byte_end":78483,"line_start":1846,"line_end":1846,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78468,"byte_end":78483,"line_start":1846,"line_end":1846,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1846:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1846\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:124:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78766,"byte_end":78781,"line_start":1853,"line_end":1853,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":78766,"byte_end":78781,"line_start":1853,"line_end":1853,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1853:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1853\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:125:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":79182,"byte_end":79197,"line_start":1863,"line_end":1863,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":79182,"byte_end":79197,"line_start":1863,"line_end":1863,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1863:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1863\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:126:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":79564,"byte_end":79579,"line_start":1871,"line_end":1871,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":79564,"byte_end":79579,"line_start":1871,"line_end":1871,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1871:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1871\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:127:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80331,"byte_end":80346,"line_start":1890,"line_end":1890,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80331,"byte_end":80346,"line_start":1890,"line_end":1890,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1890:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1890\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:128:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80524,"byte_end":80539,"line_start":1896,"line_end":1896,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80524,"byte_end":80539,"line_start":1896,"line_end":1896,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1896:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1896\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:129:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80685,"byte_end":80700,"line_start":1901,"line_end":1901,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80685,"byte_end":80700,"line_start":1901,"line_end":1901,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1901:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1901\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:130:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80851,"byte_end":80866,"line_start":1906,"line_end":1906,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":80851,"byte_end":80866,"line_start":1906,"line_end":1906,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1906:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1906\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:131:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81017,"byte_end":81032,"line_start":1911,"line_end":1911,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81017,"byte_end":81032,"line_start":1911,"line_end":1911,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1911:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1911\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:132:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81177,"byte_end":81192,"line_start":1916,"line_end":1916,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81177,"byte_end":81192,"line_start":1916,"line_end":1916,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1916:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1916\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:133:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81338,"byte_end":81353,"line_start":1921,"line_end":1921,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":81338,"byte_end":81353,"line_start":1921,"line_end":1921,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1921:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1921\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:134:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":82136,"byte_end":82151,"line_start":1940,"line_end":1940,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":82136,"byte_end":82151,"line_start":1940,"line_end":1940,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1940:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1940\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:135:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":83569,"byte_end":83584,"line_start":1968,"line_end":1968,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":83569,"byte_end":83584,"line_start":1968,"line_end":1968,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1968:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1968\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:136:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":84163,"byte_end":84178,"line_start":1982,"line_end":1982,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":84163,"byte_end":84178,"line_start":1982,"line_end":1982,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1982:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m1982\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:137:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":85552,"byte_end":85567,"line_start":2017,"line_end":2017,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":85552,"byte_end":85567,"line_start":2017,"line_end":2017,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2017:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2017\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:138:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":85930,"byte_end":85945,"line_start":2027,"line_end":2027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":85930,"byte_end":85945,"line_start":2027,"line_end":2027,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2027:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2027\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:139:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":86585,"byte_end":86600,"line_start":2042,"line_end":2042,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":86585,"byte_end":86600,"line_start":2042,"line_end":2042,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2042:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2042\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:140:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87021,"byte_end":87036,"line_start":2051,"line_end":2051,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87021,"byte_end":87036,"line_start":2051,"line_end":2051,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2051:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2051\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:141:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87374,"byte_end":87389,"line_start":2058,"line_end":2058,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87374,"byte_end":87389,"line_start":2058,"line_end":2058,"column_start":42,"column_end":57,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":42,"highlight_end":57}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2058:42\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2058\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:142:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87690,"byte_end":87705,"line_start":2067,"line_end":2067,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":87690,"byte_end":87705,"line_start":2067,"line_end":2067,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2067:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2067\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:143:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":88219,"byte_end":88234,"line_start":2080,"line_end":2080,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":88219,"byte_end":88234,"line_start":2080,"line_end":2080,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2080:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2080\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:144:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":88778,"byte_end":88793,"line_start":2093,"line_end":2093,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":88778,"byte_end":88793,"line_start":2093,"line_end":2093,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2093:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2093\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:145:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":89536,"byte_end":89551,"line_start":2110,"line_end":2110,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":89536,"byte_end":89551,"line_start":2110,"line_end":2110,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2110:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2110\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:146:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":90590,"byte_end":90605,"line_start":2133,"line_end":2133,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":90590,"byte_end":90605,"line_start":2133,"line_end":2133,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2133:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2133\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:147:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":91758,"byte_end":91773,"line_start":2158,"line_end":2158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":91758,"byte_end":91773,"line_start":2158,"line_end":2158,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2158:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2158\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:148:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":92326,"byte_end":92341,"line_start":2171,"line_end":2171,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":92326,"byte_end":92341,"line_start":2171,"line_end":2171,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2171:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2171\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:149:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":93093,"byte_end":93108,"line_start":2188,"line_end":2188,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":93093,"byte_end":93108,"line_start":2188,"line_end":2188,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2188:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2188\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:150:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":93857,"byte_end":93872,"line_start":2205,"line_end":2205,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":93857,"byte_end":93872,"line_start":2205,"line_end":2205,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2205:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2205\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:151:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":94730,"byte_end":94745,"line_start":2224,"line_end":2224,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":94730,"byte_end":94745,"line_start":2224,"line_end":2224,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2224:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2224\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:152:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":95702,"byte_end":95717,"line_start":2245,"line_end":2245,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":95702,"byte_end":95717,"line_start":2245,"line_end":2245,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2245:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2245\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:153:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":96687,"byte_end":96702,"line_start":2266,"line_end":2266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":96687,"byte_end":96702,"line_start":2266,"line_end":2266,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2266:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2266\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:154:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":97003,"byte_end":97018,"line_start":2275,"line_end":2275,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":97003,"byte_end":97018,"line_start":2275,"line_end":2275,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2275:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2275\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:155:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":98398,"byte_end":98413,"line_start":2302,"line_end":2302,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":98398,"byte_end":98413,"line_start":2302,"line_end":2302,"column_start":38,"column_end":53,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":38,"highlight_end":53}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2302:38\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2302\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:156:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":104920,"byte_end":104935,"line_start":2445,"line_end":2445,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":104920,"byte_end":104935,"line_start":2445,"line_end":2445,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2445:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2445\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:157:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":116118,"byte_end":116133,"line_start":2737,"line_end":2737,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":116118,"byte_end":116133,"line_start":2737,"line_end":2737,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2737:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2737\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:158:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":117463,"byte_end":117478,"line_start":2763,"line_end":2763,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":117463,"byte_end":117478,"line_start":2763,"line_end":2763,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2763:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2763\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:159:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":118808,"byte_end":118823,"line_start":2789,"line_end":2789,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":118808,"byte_end":118823,"line_start":2789,"line_end":2789,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2789:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2789\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:160:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":119711,"byte_end":119726,"line_start":2809,"line_end":2809,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":119711,"byte_end":119726,"line_start":2809,"line_end":2809,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2809:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2809\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:161:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":120731,"byte_end":120746,"line_start":2832,"line_end":2832,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":120731,"byte_end":120746,"line_start":2832,"line_end":2832,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2832:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2832\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:162:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":121073,"byte_end":121088,"line_start":2841,"line_end":2841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":121073,"byte_end":121088,"line_start":2841,"line_end":2841,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2841:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2841\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:163:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":121553,"byte_end":121568,"line_start":2854,"line_end":2854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":121553,"byte_end":121568,"line_start":2854,"line_end":2854,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2854:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2854\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:164:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":123246,"byte_end":123261,"line_start":2893,"line_end":2893,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":123246,"byte_end":123261,"line_start":2893,"line_end":2893,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2893:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2893\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:165:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":123709,"byte_end":123724,"line_start":2904,"line_end":2904,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":123709,"byte_end":123724,"line_start":2904,"line_end":2904,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2904:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2904\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:166:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":124044,"byte_end":124059,"line_start":2915,"line_end":2915,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":124044,"byte_end":124059,"line_start":2915,"line_end":2915,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2915:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2915\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:167:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":125585,"byte_end":125600,"line_start":2965,"line_end":2965,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":125585,"byte_end":125600,"line_start":2965,"line_end":2965,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2965:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m2965\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:168:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":137292,"byte_end":137307,"line_start":3272,"line_end":3272,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs","byte_start":137292,"byte_end":137307,"line_start":3272,"line_end":3272,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:3272:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3272\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:169:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs","byte_start":274,"byte_end":289,"line_start":7,"line_end":7,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs","byte_start":274,"byte_end":289,"line_start":7,"line_end":7,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs:7:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m7\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf:170:{"$message_type":"diagnostic","message":"cannot find type `UnknownFieldSet` in crate `prost`","code":{"code":"E0412","explanation":"A used type name is not in scope.\n\nErroneous code examples:\n\n```compile_fail,E0412\nimpl Something {} // error: type name `Something` is not in scope\n\n// or:\n\ntrait Foo {\n fn bar(N); // error: type name `N` is not in scope\n}\n\n// or:\n\nfn foo(x: T) {} // type name `T` is not in scope\n```\n\nTo fix this error, please verify you didn't misspell the type name, you did\ndeclare it or imported it into the scope. Examples:\n\n```\nstruct Something;\n\nimpl Something {} // ok!\n\n// or:\n\ntrait Foo {\n type N;\n\n fn bar(_: Self::N); // ok!\n}\n\n// or:\n\nfn foo(x: T) {} // ok!\n```\n\nAnother case that causes this error is when a type is imported into a parent\nmodule. To fix this, you can follow the suggestion and use File directly or\n`use super::File;` which will import the types from the parent namespace. An\nexample that causes this error is below:\n\n```compile_fail,E0412\nuse std::fs::File;\n\nmod foo {\n fn some_function(f: File) {}\n}\n```\n\n```\nuse std::fs::File;\n\nmod foo {\n // either\n use super::File;\n // or\n // use std::fs::File;\n fn foo(f: File) {}\n}\n# fn main() {} // don't insert it for us; that'll break imports\n```\n"},"level":"error","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs","byte_start":469,"byte_end":490,"line_start":18,"line_end":18,"column_start":1,"column_end":22,"is_primary":false,"text":[{"text":"pub enum UnknownField {","highlight_start":1,"highlight_end":22}],"label":"similarly named enum `UnknownField` defined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs","byte_start":518,"byte_end":533,"line_start":14,"line_end":14,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an enum with a similar name exists","code":null,"level":"help","spans":[{"file_name":"/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs","byte_start":518,"byte_end":533,"line_start":14,"line_end":14,"column_start":34,"column_end":49,"is_primary":true,"text":[{"text":" pub unknown_fields: ::prost::UnknownFieldSet,","highlight_start":34,"highlight_end":49}],"label":null,"suggested_replacement":"UnknownField","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `UnknownFieldSet` in crate `prost`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs:14:34\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m14\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m pub unknown_fields: ::prost::UnknownFieldSet,\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^^^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mhelp: an enum with a similar name exists: `UnknownField`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m::: \u001b[0m\u001b[0m/home/bfinnegan/Documents/prost-update/new_mr/prost/src/unknown.rs:18:1\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m18\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0mpub enum UnknownField {\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m---------------------\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12msimilarly named enum `UnknownField` defined here\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf-171-{"$message_type":"diagnostic","message":"aborting due to 170 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 170 previous errors\u001b[0m\n\n"} +target/debug/.fingerprint/protobuf-4686f00b81bf8dbc/output-test-lib-protobuf-172-{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0412`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1mFor more information about this error, try `rustc --explain E0412`.\u001b[0m\n"} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-104- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-105- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-106- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-110- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-114- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-115- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-112- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-113- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-114- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:115: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-116- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:117: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-118- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:119: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-120- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:121: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-122- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-123- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-124- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-311- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-312- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-313- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:314: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-315- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:316: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-317- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:318: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-319- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:320: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-321- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-322- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-323- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-584- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-585- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-586- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:587: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-588- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:589: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-590- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:591: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-592- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:593: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-594- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-595- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-596- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-104- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-105- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-106- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-110- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-114- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-115- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-104- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-105- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-106- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-110- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-114- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-115- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-104- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-105- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-106- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-110- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-114- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-115- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-104- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-105- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-106- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-110- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-114- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-115- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-149- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-150- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-151- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:152: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-153- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:154: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-155- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:156: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-157- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:158: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-159- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-160- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-161- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-332- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-333- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-334- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:335: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-336- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:337: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-338- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:339: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-340- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:341: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-342- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-343- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-344- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-544- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-545- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-546- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:547: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-548- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:549: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-550- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:551: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-552- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:553: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-554- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-555- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-556- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-104- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-105- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-106- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-110- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-114- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-115- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-238- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-239- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-240- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:241: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-242- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:243: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-244- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:245: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-246- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:247: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-248- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-249- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-250- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-437- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-438- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-439- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:440: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-441- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:442: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-443- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:444: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-445- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:446: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-447- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-448- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-449- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-811- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-812- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-813- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:814: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-815- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:816: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-817- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:818: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-819- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:820: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-821- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-822- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-823- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1024- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1025- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1026- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1027: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1028- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1029: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1030- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1031: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1032- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1033: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1034- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1035- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1036- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1323- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1324- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1325- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1326: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1327- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1328: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1329- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1330: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1331- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1332: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1333- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1334- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1335- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-128- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-129- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-130- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:131: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-132- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:133: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-134- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:135: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-136- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:137: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-138- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-139- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-140- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-303- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-304- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-305- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:306: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-307- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:308: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-309- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:310: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-311- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:312: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-313- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-314- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-315- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-478- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-479- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-480- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:481: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-482- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:483: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-484- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:485: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-486- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:487: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-488- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-489- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-490- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-659- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-660- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-661- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:662: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-663- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:664: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-665- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:666: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-667- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:668: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-669- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-670- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-671- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-834- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-835- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-836- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:837: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-838- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:839: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-840- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:841: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-842- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:843: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-844- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-845- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-846- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1009- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1010- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1011- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1012: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1013- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1014: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1015- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1016: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1017- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1018: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1019- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1020- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1021- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1184- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1185- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1186- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1187: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1188- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1189: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1190- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1191: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1192- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1193: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1194- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1195- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1196- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1359- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1360- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1361- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1362: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1363- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1364: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1365- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1366: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1367- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1368: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1369- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1370- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1371- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1540- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1541- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1542- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1543: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1544- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1545: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1546- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1547: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1548- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1549: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1550- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1551- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1552- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-311-FileOptions_OptimizeMode GetOptimizeFor(const FileDescriptor* file, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-312- const Options& options); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-313- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h:314:// Determines whether unknown fields will be stored in an UnknownFieldSet or +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-315-// a string. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h:316:inline bool UseUnknownFieldSet(const FileDescriptor* file, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-317- const Options& options) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-318- return GetOptimizeFor(file, options) != FileOptions::LITE_RUNTIME; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-319-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-345- FileDescriptorLegacy::Syntax::SYNTAX_PROTO2; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-346-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-347- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h:348:// Whether unknown enum values are kept (i.e., not stored in UnknownFieldSet +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-349-// but in the message and can be queried using additional getters that return +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-350-// ints. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-351-inline bool SupportUnknownEnumValue(const FieldDescriptor* field) { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-137- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-138- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-139- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:140: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-141- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:142: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-143- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:144: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-145- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:146: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-147- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-148- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-149- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-154- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-155- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-156- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:157: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-158- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:159: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-160- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:161: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-162- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:163: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-164- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-165- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-166- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-376- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-377- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-378- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:379: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-380- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:381: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-382- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:383: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-384- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:385: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-386- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-387- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-388- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-614- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-615- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-616- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:617: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-618- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:619: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-620- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:621: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-622- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:623: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-624- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-625- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-626- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-853- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-854- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-855- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:856: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-857- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:858: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-859- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:860: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-861- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:862: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-863- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-864- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-865- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-106- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-107- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-108- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:109: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-110- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:111: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-112- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:113: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-114- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:115: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-116- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-117- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-118- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2909-// different answer depending on the language. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2910-namespace cpp { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2911-// Returns true if 'enum' semantics are such that unknown values are preserved +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h:2912:// in the enum field itself, rather than going to the UnknownFieldSet. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2913-PROTOBUF_EXPORT bool HasPreservingUnknownEnumSemantics( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2914- const FieldDescriptor* field); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2915- +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-735- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-736- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-737- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:738: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-739- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:740: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-741- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:742: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-743- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:744: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-745- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-746- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-747- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-931- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-932- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-933- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:934: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-935- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:936: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-937- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:938: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-939- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:940: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-941- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-942- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-943- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1205- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1206- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1207- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1208: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1209- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1210: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1211- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1212: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1213- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1214: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1215- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1216- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1217- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1469- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1470- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1471- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1472: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1473- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1474: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1475- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1476: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1477- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1478: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1479- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1480- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1481- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1665- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1666- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1667- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1668: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1669- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1670: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1671- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1672: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1673- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1674: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1675- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1676- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1677- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2213- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2214- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2215- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2216: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2217- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2218: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2219- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2220: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2221- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2222: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2223- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2224- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2225- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2454- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2455- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2456- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2457: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2458- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2459: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2460- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2461: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2462- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2463: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2464- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2465- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2466- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2644- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2645- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2646- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2647: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2648- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2649: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2650- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2651: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2652- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2653: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2654- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2655- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2656- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2834- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2835- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2836- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2837: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2838- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2839: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2840- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2841: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2842- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2843: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2844- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2845- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2846- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3116- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3117- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3118- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3119: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3120- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3121: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3122- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3123: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3124- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3125: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3126- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3127- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3128- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3301- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3302- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3303- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3304: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3305- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3306: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3307- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3308: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3309- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3310: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3311- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3312- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3313- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3486- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3487- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3488- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3489: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3490- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3491: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3492- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3493: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3494- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3495: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3496- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3497- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3498- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3680- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3681- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3682- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3683: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3684- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3685: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3686- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3687: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3688- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3689: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3690- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3691- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3692- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4073- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4074- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4075- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4076: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4077- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4078: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4079- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4080: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4081- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4082: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4083- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4084- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4085- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4453- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4454- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4455- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4456: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4457- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4458: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4459- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4460: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4461- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4462: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4463- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4464- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4465- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4880- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4881- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4882- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4883: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4884- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4885: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4886- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4887: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4888- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4889: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4890- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4891- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4892- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5325- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5326- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5327- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5328: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5329- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5330: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5331- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5332: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5333- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5334: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5335- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5336- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5337- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6046- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6047- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6048- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6049: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6050- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6051: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6052- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6053: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6054- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6055: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6056- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6057- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6058- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6677- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6678- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6679- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6680: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6681- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6682: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6683- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6684: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6685- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6686: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6687- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6688- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6689- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6889- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6890- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6891- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6892: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6893- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6894: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6895- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6896: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6897- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6898: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6899- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6900- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6901- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7324- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7325- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7326- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7327: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7328- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7329: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7330- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7331: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7332- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7333: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7334- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7335- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7336- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7730- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7731- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7732- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7733: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7734- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7735: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7736- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7737: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7738- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7739: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7740- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7741- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7742- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8149- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8150- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8151- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8152: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8153- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8154: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8155- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8156: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8157- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8158: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8159- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8160- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8161- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8349- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8350- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8351- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8352: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8353- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8354: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8355- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8356: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8357- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8358: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8359- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8360- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8361- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8613- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8614- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8615- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8616: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8617- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8618: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8619- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8620: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8621- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8622: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8623- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8624- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8625- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9011- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9012- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9013- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9014: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9015- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9016: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9017- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9018: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9019- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9020: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9021- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9022- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9023- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9224- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9225- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9226- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9227: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9228- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9229: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9230- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9231: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9232- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9233: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9234- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9235- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9236- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9431- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9432- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9433- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9434: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9435- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9436: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9437- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9438: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9439- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9440: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9441- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9442- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9443- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9651- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9652- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9653- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9654: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9655- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9656: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9657- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9658: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9659- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9660: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9661- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9662- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9663- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9923- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9924- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9925- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9926: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9927- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9928: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9929- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9930: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9931- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9932: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9933- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9934- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9935- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10296- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10297- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10298- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10299: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10300- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10301: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10302- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10303: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10304- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10305: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10306- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10307- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10308- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10714- return *this; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10715- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10716- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10717: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10718- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10719: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10720- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10721: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10722- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10723: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10724- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10725- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10726- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-52-class Message; // message.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-53-class MessageFactory; // message.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-54-class Reflection; // message.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h:55:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-56-class FeatureSet; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-57-namespace internal { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-58-class FieldSkipper; // wire_format_lite.h +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-89-// corresponding field of the message has been initialized. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-90-// The bit for field index i is obtained by the expression: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-91-// has_bits[i / 32] & (1 << (i % 32)) +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h:92:// unknown_fields_offset: Offset in the message of the UnknownFieldSet for +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-93-// the message. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-94-// extensions_offset: Offset in the message of the ExtensionSet for the +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-95-// message, or -1 if the message type has no extension +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-326- const Metadata& metadata); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-327- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-328-// These cannot be in lite so we put them in the reflection. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h:329:PROTOBUF_EXPORT void UnknownFieldSetSerializer(const uint8_t* base, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-330- uint32_t offset, uint32_t tag, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-331- uint32_t has_offset, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-332- io::CodedOutputStream* output); +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-34-namespace protobuf { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-35- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-36-class Message; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h:37:class UnknownFieldSet; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-38- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-39-namespace internal { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-40- +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-628- // +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-629- // This function parses a field from incoming data based on metadata stored in +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-630- // the message definition. If the field is not defined in the message, it is +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h:631: // stored in either the ExtensionSet (if applicable) or the UnknownFieldSet. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-632- // +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-633- // NOTE: Currently, this function only calls the table-level fallback +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-634- // function, so it should only be called as the fallback from fast table +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-112- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-113- ~MapEntry() override { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-114- if (GetArena() != nullptr) return; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h:115: Message::_internal_metadata_.template Delete(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-116- KeyTypeHandler::DeleteNoArena(key_); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-117- ValueTypeHandler::DeleteNoArena(value_); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-118- } +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-145-class CachedSize; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-146-struct TailCallTableInfo; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-147-} // namespace internal +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h:148:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-149-namespace io { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-150-class ZeroCopyInputStream; // zero_copy_stream.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-151-class ZeroCopyOutputStream; // zero_copy_stream.h +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-275- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-276- // Clears all unknown fields from this message and all embedded messages. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-277- // Normally, if unknown tag numbers are encountered when parsing a message, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h:278: // the tag and value are stored in the message's UnknownFieldSet and +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-279- // then written back out when the message is serialized. This allows servers +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-280- // which simply route messages to other servers to pass through messages +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-281- // that have new field definitions which they don't yet know about. However, +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-427- Reflection& operator=(const Reflection&) = delete; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-428- ~Reflection(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-429- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h:430: // Get the UnknownFieldSet for the message. This contains fields which +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-431- // were seen when the Message was parsed but were not recognized according +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-432- // to the Message's definition. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h:433: const UnknownFieldSet& GetUnknownFields(const Message& message) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h:434: // Get a mutable pointer to the UnknownFieldSet for the message. This +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-435- // contains fields which were seen when the Message was parsed but were not +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-436- // recognized according to the Message's definition. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h:437: UnknownFieldSet* MutableUnknownFields(Message* message) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-438- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-439- // Estimate the amount of memory used by the message object. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-440- size_t SpaceUsedLong(const Message& message) const; +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-895- // +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-896- // Generic code that uses reflection to handle messages with enum fields +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-897- // should check this flag before using the integer-based setter, and either +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h:898: // downgrade to a compatible value or use the UnknownFieldSet if not. For +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-899- // example: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-900- // +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/message.h-901- // int new_value = GetValueFromApplicationLogic(); +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-23-namespace google { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-24-namespace protobuf { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-25- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:26:class UnknownFieldSet; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-27- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-28-namespace internal { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-29- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-30-// This is the representation for messages that support arena allocation. It +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-31-// uses a tagged pointer to either store the owning Arena pointer, if there are +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-32-// no unknown fields, or a pointer to a block of memory with both the owning +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:33:// Arena pointer and the UnknownFieldSet, if there are unknown fields. Besides, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-34-// it also uses the tag to distinguish whether the owning Arena pointer is also +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-35-// used by sub-structure allocation. This optimization allows for +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-36-// "zero-overhead" storage of the Arena pointer, relative to the above baseline +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-208-template <> +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-209-PROTOBUF_EXPORT void InternalMetadata::DoSwap(std::string* other); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-210- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:211:// Instantiated once in message.cc (where the definition of UnknownFieldSet is +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-212-// known) to prevent much duplication across translation units of a large build. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-213-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:214:InternalMetadata::DoClear(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-215-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:216:InternalMetadata::DoMergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-217-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:218:InternalMetadata::DoSwap(UnknownFieldSet* other); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-219-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:220:InternalMetadata::DeleteOutOfLineHelper(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:221:extern template PROTOBUF_EXPORT UnknownFieldSet* +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:222:InternalMetadata::mutable_unknown_fields_slow(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-223- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-224-// This helper RAII class is needed to efficiently parse unknown fields. We +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-225-// should only call mutable_unknown_fields if there are actual unknown fields. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-226-// The obvious thing to just use a stack string and swap it at the end of +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-227-// the parse won't work, because the destructor of StringOutputStream needs to +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-228-// be called before we can modify the string (it check-fails). Using +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:229:// LiteUnknownFieldSetter setter(&_internal_metadata_); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-230-// StringOutputStream stream(setter.buffer()); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-231-// guarantees that the string is only swapped after stream is destroyed. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:232:class PROTOBUF_EXPORT LiteUnknownFieldSetter { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-233- public: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:234: explicit LiteUnknownFieldSetter(InternalMetadata* metadata) +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-235- : metadata_(metadata) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-236- if (metadata->have_unknown_fields()) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-237- buffer_.swap(*metadata->mutable_unknown_fields()); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-238- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-239- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:240: ~LiteUnknownFieldSetter() { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-241- if (!buffer_.empty()) +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-242- metadata_->mutable_unknown_fields()->swap(buffer_); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-243- } +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-41-namespace google { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-42-namespace protobuf { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-43- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:44:class UnknownFieldSet; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-45-class DescriptorPool; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-46-class MessageFactory; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-47- +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-52-PROTOBUF_EXPORT void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-53- std::string* s); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-54-// Inline because it is just forwarding to s->WriteVarint +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:55:inline void WriteVarint(uint32_t num, uint64_t val, UnknownFieldSet* s); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-56-inline void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:57: UnknownFieldSet* s); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-58- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-59- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-60-// The basic abstraction the parser is designed for is a slight modification +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1413- std::string* unknown, const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1414-// This is a helper to for the UnknownGroupLiteParse but is actually also +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1415-// useful in the generated code. It uses overload on std::string* vs +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:1416:// UnknownFieldSet* to make the generated code isomorphic between full and lite. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1417-PROTOBUF_NODISCARD PROTOBUF_EXPORT const char* UnknownFieldParse( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1418- uint32_t tag, std::string* unknown, const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1419- +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-97- // output stream. Returns false if printing fails. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-98- static bool Print(const Message& message, io::ZeroCopyOutputStream* output); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-99- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:100: // Print the fields in an UnknownFieldSet. They are printed by tag number +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-101- // only. Embedded messages are heuristically identified by attempting to +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-102- // parse them. Returns false if printing fails. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:103: static bool PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-104- io::ZeroCopyOutputStream* output); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-105- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-106- // Like Print(), but outputs directly to a string. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-110- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-111- // Like PrintUnknownFields(), but outputs directly to a string. Returns +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-112- // false if printing fails. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:113: static bool PrintUnknownFieldsToString(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-114- std::string* output); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-115- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-116- // Outputs a textual representation of the value of the field supplied on +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-304- bool Print(const Message& message, io::ZeroCopyOutputStream* output, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-305- internal::FieldReporterLevel reporter) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-306- // Like TextFormat::PrintUnknownFields +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:307: bool PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-308- io::ZeroCopyOutputStream* output) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-309- // Like TextFormat::PrintToString +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-310- bool PrintToString(const Message& message, std::string* output) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-311- // Like TextFormat::PrintUnknownFieldsToString +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:312: bool PrintUnknownFieldsToString(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-313- std::string* output) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-314- // Like TextFormat::PrintFieldValueToString +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-315- void PrintFieldValueToString(const Message& message, +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-496- const FieldDescriptor* field, int index, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-497- BaseTextGenerator* generator) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-498- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:499: // Print the fields in an UnknownFieldSet. They are printed by tag number +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-500- // only. Embedded messages are heuristically identified by attempting to +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-501- // parse them (subject to the recursion budget). +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:502: void PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-503- BaseTextGenerator* generator, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-504- int recursion_budget) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-505- +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-47-class Message; // message.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-48-class UnknownField; // below +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-49- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:50:// An UnknownFieldSet contains fields that were encountered while parsing a +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-51-// message but were not defined by its type. Keeping track of these can be +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-52-// useful, especially in that they may be written if the message is serialized +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-53-// again without being cleared in between. This means that software which +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-54-// simply receives messages and forwards them to other servers does not need +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-55-// to be updated every time a new field is added to the message definition. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-56-// +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:57:// To get the UnknownFieldSet attached to any message, call +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-58-// Reflection::GetUnknownFields(). +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-59-// +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-60-// This class is necessarily tied to the protocol buffer wire format, unlike +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-61-// the Reflection interface which is independent of any serialization scheme. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:62:class PROTOBUF_EXPORT UnknownFieldSet { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-63- public: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:64: UnknownFieldSet(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:65: UnknownFieldSet(const UnknownFieldSet&) = delete; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:66: UnknownFieldSet& operator=(const UnknownFieldSet&) = delete; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:67: ~UnknownFieldSet(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-68- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-69- // Remove all fields. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-70- inline void Clear(); +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-75- // Is this set empty? +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-76- inline bool empty() const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-77- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:78: // Merge the contents of some other UnknownFieldSet with this one. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:79: void MergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-80- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-81- // Similar to above, but this function will destroy the contents of other. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:82: void MergeFromAndDestroy(UnknownFieldSet* other); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-83- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:84: // Merge the contents an UnknownFieldSet with the UnknownFieldSet in +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:85: // *metadata, if there is one. If *metadata doesn't have an UnknownFieldSet +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-86- // then add one to it and make it be a copy of the first arg. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:87: static void MergeToInternalMetadata(const UnknownFieldSet& other, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-88- internal::InternalMetadata* metadata); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-89- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:90: // Swaps the contents of some other UnknownFieldSet with this one. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:91: inline void Swap(UnknownFieldSet* x); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-92- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-93- // Computes (an estimate of) the total number of bytes currently used for +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-94- // storing the unknown fields in memory. Does NOT include +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-104- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-105- int SpaceUsed() const { return internal::ToIntSize(SpaceUsedLong()); } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-106- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:107: // Returns the number of fields present in the UnknownFieldSet. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-108- inline int field_count() const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-109- // Get a field in the set, where 0 <= index < field_count(). The fields +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-110- // appear in the order in which they were added. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-121- void AddFixed64(int number, uint64_t value); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-122- void AddLengthDelimited(int number, const std::string& value); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-123- std::string* AddLengthDelimited(int number); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:124: UnknownFieldSet* AddGroup(int number); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-125- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-126- // Adds an unknown field from another set. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-127- void AddField(const UnknownField& field); +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-156- bool SerializeToString(std::string* output) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-157- bool SerializeToCord(absl::Cord* output) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-158- bool SerializeToCodedStream(io::CodedOutputStream* output) const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:159: static const UnknownFieldSet& default_instance(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-160- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-161- private: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-162- // For InternalMergeFrom +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-163- friend class UnknownField; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:164: // Merges from other UnknownFieldSet. This method assumes, that this object +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-165- // is newly created and has no fields. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:166: void InternalMergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-167- void ClearFallback(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-168- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-169- template AddVarint(num, val); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-197-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-198-inline void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:199: UnknownFieldSet* unknown) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-200- unknown->AddLengthDelimited(num)->assign(val.data(), val.size()); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-201-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-202- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-203-PROTOBUF_EXPORT +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:204:const char* UnknownGroupParse(UnknownFieldSet* unknown, const char* ptr, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-205- ParseContext* ctx); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-206-PROTOBUF_EXPORT +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:207:const char* UnknownFieldParse(uint64_t tag, UnknownFieldSet* unknown, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-208- const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-209- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-210-} // namespace internal +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-211- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:212:// Represents one field in an UnknownFieldSet. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-213-class PROTOBUF_EXPORT UnknownField { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-214- public: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-215- enum Type { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-233- inline uint32_t fixed32() const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-234- inline uint64_t fixed64() const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-235- inline const std::string& length_delimited() const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:236: inline const UnknownFieldSet& group() const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-237- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-238- inline void set_varint(uint64_t value); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-239- inline void set_fixed32(uint32_t value); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-240- inline void set_fixed64(uint64_t value); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-241- inline void set_length_delimited(const std::string& value); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-242- inline std::string* mutable_length_delimited(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:243: inline UnknownFieldSet* mutable_group(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-244- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-245- inline size_t GetLengthDelimitedSize() const; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-246- uint8_t* InternalSerializeLengthDelimitedNoTag( +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-268- uint32_t fixed32_; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-269- uint64_t fixed64_; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-270- mutable union LengthDelimited length_delimited_; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:271: UnknownFieldSet* group_; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-272- } data_; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-273-}; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-274- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-275-// =================================================================== +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-276-// inline implementations +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-277- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:278:inline UnknownFieldSet::UnknownFieldSet() {} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-279- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:280:inline UnknownFieldSet::~UnknownFieldSet() { Clear(); } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-281- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:282:inline void UnknownFieldSet::ClearAndFreeMemory() { Clear(); } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-283- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:284:inline void UnknownFieldSet::Clear() { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-285- if (!fields_.empty()) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-286- ClearFallback(); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-287- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-288-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-289- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:290:inline bool UnknownFieldSet::empty() const { return fields_.empty(); } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-291- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:292:inline void UnknownFieldSet::Swap(UnknownFieldSet* x) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-293- fields_.swap(x->fields_); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-294-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-295- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:296:inline int UnknownFieldSet::field_count() const { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-297- return static_cast(fields_.size()); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-298-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:299:inline const UnknownField& UnknownFieldSet::field(int index) const { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-300- return (fields_)[static_cast(index)]; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-301-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:302:inline UnknownField* UnknownFieldSet::mutable_field(int index) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-303- return &(fields_)[static_cast(index)]; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-304-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-305- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:306:inline void UnknownFieldSet::AddLengthDelimited(int number, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-307- const std::string& value) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-308- AddLengthDelimited(number)->assign(value); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-309-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-332- assert(type() == TYPE_LENGTH_DELIMITED); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-333- return *data_.length_delimited_.string_value; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-334-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:335:inline const UnknownFieldSet& UnknownField::group() const { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-336- assert(type() == TYPE_GROUP); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-337- return *data_.group_; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-338-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-357- assert(type() == TYPE_LENGTH_DELIMITED); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-358- return data_.length_delimited_.string_value; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-359-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:360:inline UnknownFieldSet* UnknownField::mutable_group() { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-361- assert(type() == TYPE_GROUP); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-362- return data_.group_; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-363-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-364-template +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:365:bool UnknownFieldSet::MergeFromMessage(const MessageType& message) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-366- // SFINAE will route to the right version. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-367- return InternalMergeFromMessage(message); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-368-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-188- const Message* map_entry1 = nullptr; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-189- const Message* map_entry2 = nullptr; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-190- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:191: // For unknown fields, these are the pointers to the UnknownFieldSet +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-192- // containing the unknown fields. In certain cases (e.g. proto1's +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-193- // MessageSet, or nested groups of unknown fields), these may differ from +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:194: // the messages' internal UnknownFieldSets. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:195: const UnknownFieldSet* unknown_field_set1 = nullptr; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:196: const UnknownFieldSet* unknown_field_set2 = nullptr; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-197- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-198- // For unknown fields, these are the index of the field within the +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:199: // UnknownFieldSets. One or the other will be -1 when +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-200- // reporting an addition or deletion. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-201- int unknown_field_index1 = -1; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-202- int unknown_field_index2 = -1; +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-781- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-782- // Compares all the unknown fields in two messages. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-783- bool CompareUnknownFields(const Message& message1, const Message& message2, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:784: const UnknownFieldSet&, const UnknownFieldSet&, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-785- std::vector* parent_fields); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-786- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-787- // Compares the specified messages for the requested field lists. The field +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-37-namespace google { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-38-namespace protobuf { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-39-class MapKey; // map_field.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:40:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-41-} // namespace protobuf +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-42-} // namespace google +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-43- +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-128- // positioned immediately after the tag. If unknown_fields is non-nullptr, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-129- // the contents of the field will be added to it. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-130- static bool SkipField(io::CodedInputStream* input, uint32_t tag, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:131: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-132- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-133- // Reads and ignores a message from the input. If unknown_fields is +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-134- // non-nullptr, the contents will be added to it. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-135- static bool SkipMessage(io::CodedInputStream* input, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:136: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-137- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-138- // Read a packed enum field. If the is_valid function is not nullptr, values +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-139- // for which is_valid(value) returns false are appended to +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-141- static bool ReadPackedEnumPreserveUnknowns(io::CodedInputStream* input, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-142- uint32_t field_number, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-143- bool (*is_valid)(int), +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:144: UnknownFieldSet* unknown_fields, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-145- RepeatedField* values); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-146- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:147: // Write the contents of an UnknownFieldSet to the output. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:148: static void SerializeUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-149- io::CodedOutputStream* output) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-150- output->SetCur(InternalSerializeUnknownFieldsToArray( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-151- unknown_fields, output->Cur(), output->EpsCopy())); +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-156- // +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-157- // Returns a pointer past the last written byte. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-158- static uint8_t* SerializeUnknownFieldsToArray( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:159: const UnknownFieldSet& unknown_fields, uint8_t* target) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-160- io::EpsCopyOutputStream stream( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-161- target, static_cast(ComputeUnknownFieldsSize(unknown_fields)), +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-162- io::CodedOutputStream::IsDefaultSerializationDeterministic()); +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-164- &stream); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-165- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-166- static uint8_t* InternalSerializeUnknownFieldsToArray( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:167: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-168- io::EpsCopyOutputStream* stream); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-169- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-170- // Same thing except for messages that have the message_set_wire_format +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-171- // option. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-172- static void SerializeUnknownMessageSetItems( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:173: const UnknownFieldSet& unknown_fields, io::CodedOutputStream* output) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-174- output->SetCur(InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-175- unknown_fields, output->Cur(), output->EpsCopy())); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-176- } +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-180- // +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-181- // Returns a pointer past the last written byte. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-182- static uint8_t* SerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:183: const UnknownFieldSet& unknown_fields, uint8_t* target); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-184- static uint8_t* InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:185: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-186- io::EpsCopyOutputStream* stream); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-187- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:188: // Compute the size of the UnknownFieldSet on the wire. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:189: static size_t ComputeUnknownFieldsSize(const UnknownFieldSet& unknown_fields); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-190- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-191- // Same thing except for messages that have the message_set_wire_format +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-192- // option. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-193- static size_t ComputeUnknownMessageSetItemsSize( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:194: const UnknownFieldSet& unknown_fields); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-195- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-196- // Helper functions for encoding and decoding tags. (Inlined below and in +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-197- // _inl.h) +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-268- // Skip a MessageSet field. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-269- static bool SkipMessageSetField(io::CodedInputStream* input, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-270- uint32_t field_number, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:271: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-272- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-273- // Parse a MessageSet field. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-274- static bool ParseAndMergeMessageSetField(uint32_t field_number, +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-283- const FieldDescriptor* field); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-284-}; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-285- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:286:// Subclass of FieldSkipper which saves skipped fields to an UnknownFieldSet. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:287:class PROTOBUF_EXPORT UnknownFieldSetFieldSkipper : public FieldSkipper { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-288- public: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:289: UnknownFieldSetFieldSkipper(UnknownFieldSet* unknown_fields) +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-290- : unknown_fields_(unknown_fields) {} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:291: ~UnknownFieldSetFieldSkipper() override {} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-292- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-293- // implements FieldSkipper ----------------------------------------- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-294- bool SkipField(io::CodedInputStream* input, uint32_t tag) override; +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-296- void SkipUnknownEnum(int field_number, int value) override; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-297- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-298- protected: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:299: UnknownFieldSet* unknown_fields_; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-300-}; +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-301- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-302-// inline methods ==================================================== +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-362- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-363- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-364-inline uint8_t* InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:365: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-366- io::EpsCopyOutputStream* stream) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-367- return WireFormat::InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-368- unknown_fields, target, stream); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-369-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-370- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-371-inline size_t ComputeUnknownMessageSetItemsSize( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:372: const UnknownFieldSet& unknown_fields) { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-373- return WireFormat::ComputeUnknownMessageSetItemsSize(unknown_fields); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-374-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-375- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:376:// Compute the size of the UnknownFieldSet on the wire. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-377-PROTOBUF_EXPORT +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-378-size_t ComputeUnknownFieldsSize(const InternalMetadata& metadata, size_t size, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-379- CachedSize* cached_size); +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-161- // Skips a field value with the given tag. The input should start +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-162- // positioned immediately after the tag. Skipped values are simply +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-163- // discarded, not recorded anywhere. See WireFormat::SkipField() for a +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:164: // version that records to an UnknownFieldSet. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-165- static bool SkipField(io::CodedInputStream* input, uint32_t tag); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-166- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-167- // Skips a field value with the given tag. The input should start +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-172- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-173- // Reads and ignores a message from the input. Skipped values are simply +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-174- // discarded, not recorded anywhere. See WireFormat::SkipMessage() for a +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:175: // version that records to an UnknownFieldSet. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-176- static bool SkipMessage(io::CodedInputStream* input); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-177- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-178- // Reads and ignores a message from the input. Skipped values are recorded +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-755- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-756-// A class which deals with unknown values. The default implementation just +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-757-// discards them. WireFormat defines a subclass which writes to an +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:758:// UnknownFieldSet. This class is used by ExtensionSet::ParseField(), since +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:759:// ExtensionSet is part of the lite library but UnknownFieldSet is not. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-760-class PROTOBUF_EXPORT FieldSkipper { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-761- public: +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-762- FieldSkipper() {} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-770- virtual bool SkipMessage(io::CodedInputStream* input); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-771- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-772- // Deal with an already-parsed unrecognized enum value. The default +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:773: // implementation does nothing, but the UnknownFieldSet-based implementation +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-774- // saves it as an unknown varint. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-775- virtual void SkipUnknownEnum(int field_number, int value); +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-776-}; +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-333- #[prost(int32, tag = "418")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-334- pub field_name18: i32, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-335- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:336: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-337- #[prost( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-338- oneof = "test_all_types_proto3::OneofField", +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-339- tags = "111, 112, 113, 114, 115, 116, 117, 118, 119, 120" +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-351- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-352- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-353- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:354: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-355- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-356- #[derive( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-357- Clone, +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-464- #[prost(int32, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-465- pub c: i32, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-466- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:467: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-468-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-469-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-470-pub struct NullHypothesisProto3 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-471- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:472: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-473-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-474-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-475-pub struct EnumOnlyProto3 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-476- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs:477: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-478-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-479-/// Nested message and enum types in `EnumOnlyProto3`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto3.rs-480-pub mod enum_only_proto3 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-4- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-5- pub e: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-6- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs:7: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-8-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-9-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-10-pub struct ImportMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-11- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-12- pub d: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-13- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs:14: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-15-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-16-#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest_import.rs-17-#[repr(i32)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-186- #[prost(string, optional, tag = "85", default = "123")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-187- pub default_cord: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-188- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:189: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-190- /// For oneof test +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-191- #[prost( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-192- oneof = "test_all_types::OneofField", +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-204- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-205- pub bb: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-206- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:207: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-208- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-209- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-210- pub struct OptionalGroup { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-211- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-212- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-213- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:214: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-215- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-216- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-217- pub struct RepeatedGroup { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-218- #[prost(int32, optional, tag = "47")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-219- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-220- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:221: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-222- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-223- #[derive( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-224- Clone, +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-298- #[prost(message, optional, tag = "5")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-299- pub eager_child: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-300- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:301: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-302-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-303-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-304-pub struct TestDeprecatedFields { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-316- #[prost(message, optional, boxed, tag = "5")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-317- pub nested: ::core::option::Option<::prost::alloc::boxed::Box>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-318- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:319: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-320- #[prost(oneof = "test_deprecated_fields::OneofFields", tags = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-321- pub oneof_fields: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-322-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-332-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-333-pub struct TestDeprecatedMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-334- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:335: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-336-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-337-/// Define these after TestAllTypes to make sure the compiler can handle +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-338-/// that. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-343- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-344- pub d: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-345- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:346: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-347-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-348-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-349-pub struct TestReservedFields { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-350- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:351: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-352-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-353-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-354-pub struct TestAllExtensions { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-355- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:356: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-357-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-358-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-359-pub struct OptionalGroupExtension { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-360- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-361- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-362- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:363: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-364-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-365-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-366-pub struct RepeatedGroupExtension { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-367- #[prost(int32, optional, tag = "47")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-368- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-369- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:370: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-371-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-372-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-373-pub struct TestMixedFieldsAndExtensions { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-376- #[prost(fixed32, repeated, packed = "false", tag = "3")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-377- pub b: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-378- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:379: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-380-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-381-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-382-pub struct TestGroup { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-385- #[prost(enumeration = "ForeignEnum", optional, tag = "22")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-386- pub optional_foreign_enum: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-387- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:388: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-389-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-390-/// Nested message and enum types in `TestGroup`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-391-pub mod test_group { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-397- #[prost(int32, optional, tag = "89")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-398- pub zz: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-399- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:400: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-401- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-402-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-403-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-404-pub struct TestGroupExtension { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-405- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:406: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-407-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-408-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-409-pub struct TestNestedExtension { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-410- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:411: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-412-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-413-/// Nested message and enum types in `TestNestedExtension`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-414-pub mod test_nested_extension { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-417- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-418- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-419- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:420: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-421- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-422-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-423-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-429- #[prost(message, optional, tag = "3")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-430- pub optional_extension: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-431- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:432: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-433-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-434-/// Emulates wireformat data of TestChildExtension with dynamic extension +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-435-/// (DynamicExtension). +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-444- test_child_extension_data::NestedTestAllExtensionsData, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-445- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-446- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:447: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-448-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-449-/// Nested message and enum types in `TestChildExtensionData`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-450-pub mod test_child_extension_data { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-455- nested_test_all_extensions_data::NestedDynamicExtensions, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-456- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-457- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:458: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-459- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-460- /// Nested message and enum types in `NestedTestAllExtensionsData`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-461- pub mod nested_test_all_extensions_data { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-466- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-467- pub b: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-468- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:469: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-470- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-471- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-472-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-477- #[prost(message, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-478- pub child: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-479- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:480: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-481-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-482-/// Emulates wireformat data of TestNestedChildExtension with dynamic extension +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-483-/// (DynamicExtension). +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-488- #[prost(message, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-489- pub child: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-490- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:491: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-492-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-493-/// Required and closed enum fields are considered unknown fields if the value is +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-494-/// not valid. We need to make sure it functions as expected. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-500- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-501- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-502- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:503: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-504-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-505-/// TestRequiredEnum + using enum values that won't fit to 64 bitmask. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-506-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-511- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-512- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-513- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:514: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-515-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-516-/// Nested message and enum types in `TestRequiredEnumNoMask`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-517-pub mod test_required_enum_no_mask { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-572- #[prost(enumeration = "ForeignEnum", required, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-573- pub required_enum_1: i32, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-574- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:575: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-576-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-577-/// Nested message and enum types in `TestRequiredEnumMulti`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-578-pub mod test_required_enum_multi { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-651- #[prost(enumeration = "ForeignEnum", required, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-652- pub required_enum_1: i32, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-653- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:654: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-655-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-656-/// Nested message and enum types in `TestRequiredNoMaskMulti`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-657-pub mod test_required_no_mask_multi { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-777- #[prost(message, optional, tag = "34")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-778- pub optional_foreign: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-779- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:780: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-781-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-782-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-783-pub struct TestRequiredForeign { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-791- #[prost(message, optional, tag = "4")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-792- pub optional_lazy_message: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-793- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:794: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-795-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-796-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-797-pub struct TestRequiredMessage { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-802- #[prost(message, required, tag = "3")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-803- pub required_message: TestRequired, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-804- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:805: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-806-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-807-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-808-pub struct TestNestedRequiredForeign { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-824- #[prost(message, optional, tag = "9")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-825- pub required_no_mask: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-826- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:827: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-828-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-829-/// Test that we can use NestedMessage from outside TestAllTypes. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-830-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-832- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-833- pub foreign_nested: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-834- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:835: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-836-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-837-/// TestEmptyMessage is used to test unknown field support. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-838-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-839-pub struct TestEmptyMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-840- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:841: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-842-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-843-/// Like above, but declare all field numbers as potential extensions. No +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-844-/// actual extensions should ever be defined for this type. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-845-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-846-pub struct TestEmptyMessageWithExtensions { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-847- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:848: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-849-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-850-/// Needed for a Python test. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-851-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-852-pub struct TestPickleNestedMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-853- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:854: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-855-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-856-/// Nested message and enum types in `TestPickleNestedMessage`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-857-pub mod test_pickle_nested_message { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-860- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-861- pub bb: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-862- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:863: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-864- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-865- /// Nested message and enum types in `NestedMessage`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-866- pub mod nested_message { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-869- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-870- pub cc: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-871- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:872: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-873- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-874- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-875-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-876-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-877-pub struct TestMultipleExtensionRanges { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-878- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:879: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-880-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-881-/// Test that really large tag numbers don't break anything. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-882-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-888- #[prost(int32, optional, tag = "268435455")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-889- pub bb: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-890- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:891: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-892-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-893-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-894-pub struct TestRecursiveMessage { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-897- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-898- pub i: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-899- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:900: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-901-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-902-/// Test that mutual recursion works. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-903-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-911- #[prost(group, repeated, tag = "5")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-912- pub subgroupr: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-913- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:914: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-915-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-916-/// Nested message and enum types in `TestMutualRecursionA`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-917-pub mod test_mutual_recursion_a { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-920- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-921- pub b: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-922- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:923: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-924- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-925- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-926- pub struct SubGroup { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-930- #[prost(message, optional, tag = "4")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-931- pub not_in_this_scc: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-932- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:933: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-934- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-935- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-936- pub struct SubGroupR { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-937- #[prost(message, optional, tag = "6")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-938- pub payload: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-939- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:940: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-941- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-942-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-943-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-947- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-948- pub optional_int32: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-949- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:950: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-951-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-952-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-953-pub struct TestIsInitialized { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-954- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-955- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-956- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:957: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-958-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-959-/// Nested message and enum types in `TestIsInitialized`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-960-pub mod test_is_initialized { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-963- #[prost(group, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-964- pub subgroup: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-965- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:966: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-967- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-968- /// Nested message and enum types in `SubMessage`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-969- pub mod sub_message { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-972- #[prost(int32, required, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-973- pub i: i32, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-974- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:975: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-976- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-977- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-978-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-992- #[prost(group, optional, tag = "3")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-993- pub bar: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-994- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:995: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-996-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-997-/// Nested message and enum types in `TestDupFieldNumber`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-998-pub mod test_dup_field_number { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1001- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1002- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1003- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1004: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1005- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1006- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1007- pub struct Bar { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1008- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1009- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1010- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1011: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1012- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1013-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1014-/// Additional messages for testing lazy fields. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1017- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1018- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1019- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1020: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1021-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1022-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1023-pub struct TestLazyMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1024- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1025- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1026- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1027: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1028-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1029-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1030-pub struct TestLazyMessageRepeated { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1031- #[prost(message, repeated, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1032- pub repeated_message: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1033- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1034: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1035-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1036-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1037-pub struct TestEagerMaybeLazy { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1042- #[prost(message, optional, tag = "3")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1043- pub message_baz: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1044- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1045: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1046-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1047-/// Nested message and enum types in `TestEagerMaybeLazy`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1048-pub mod test_eager_maybe_lazy { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1051- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1052- pub packed: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1053- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1054: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1055- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1056-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1057-/// Needed for a Python test. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1062- test_nested_message_has_bits::NestedMessage, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1063- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1064- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1065: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1066-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1067-/// Nested message and enum types in `TestNestedMessageHasBits`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1068-pub mod test_nested_message_has_bits { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1075- super::ForeignMessage, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1076- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1077- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1078: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1079- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1080-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1081-/// Test message with CamelCase field names. This violates Protocol Buffer +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1109- #[prost(string, repeated, tag = "12")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1110- pub repeated_cord_field: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1111- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1112: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1113-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1114-/// We list fields out of order, to ensure that we're using field number and not +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1115-/// field index to determine serialization order. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1126- test_field_orderings::NestedMessage, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1127- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1128- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1129: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1130-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1131-/// Nested message and enum types in `TestFieldOrderings`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1132-pub mod test_field_orderings { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1140- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1141- pub bb: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1142- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1143: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1144- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1145-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1146-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1148- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1149- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1150- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1151: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1152-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1153-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1154-pub struct TestExtensionOrderings2 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1155- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1156- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1157- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1158: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1159-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1160-/// Nested message and enum types in `TestExtensionOrderings2`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1161-pub mod test_extension_orderings2 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1164- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1165- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1166- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1167: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1168- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1169-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1170-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1241- #[prost(string, optional, tag = "27", default = "${unknown}")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1242- pub replacement_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1243- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1244: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1245-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1246-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1247-pub struct SparseEnumMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1248- #[prost(enumeration = "TestSparseEnum", optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1249- pub sparse_enum: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1250- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1251: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1252-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1253-/// Test String and Bytes: string is for valid UTF-8 strings +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1254-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1256- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1257- pub data: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1258- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1259: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1260-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1261-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1262-pub struct MoreString { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1263- #[prost(string, repeated, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1264- pub data: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1265- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1266: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1267-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1268-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1269-pub struct OneBytes { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1270- #[prost(bytes = "vec", optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1271- pub data: ::core::option::Option<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1272- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1273: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1274-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1275-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1276-pub struct MoreBytes { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1277- #[prost(bytes = "vec", repeated, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1278- pub data: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1279- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1280: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1281-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1282-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1283-pub struct ManyOptionalString { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1346- #[prost(string, optional, tag = "32")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1347- pub str32: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1348- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1349: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1350-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1351-/// Test int32, uint32, int64, uint64, and bool are all compatible +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1352-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1354- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1355- pub data: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1356- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1357: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1358-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1359-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1360-pub struct Uint32Message { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1361- #[prost(uint32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1362- pub data: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1363- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1364: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1365-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1366-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1367-pub struct Int64Message { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1368- #[prost(int64, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1369- pub data: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1370- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1371: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1372-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1373-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1374-pub struct Uint64Message { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1375- #[prost(uint64, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1376- pub data: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1377- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1378: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1379-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1380-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1381-pub struct BoolMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1382- #[prost(bool, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1383- pub data: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1384- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1385: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1386-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1387-/// Test oneofs. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1388-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1389-pub struct TestOneof { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1390- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1391: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1392- #[prost(oneof = "test_oneof::Foo", tags = "1, 2, 3, 4")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1393- pub foo: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1394-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1401- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1402- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1403- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1404: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1405- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1406- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1407- pub enum Foo { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1426- #[prost(group, optional, tag = "4")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1427- pub foogroup: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1428- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1429: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1430-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1431-/// Nested message and enum types in `TestOneofBackwardsCompatible`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1432-pub mod test_oneof_backwards_compatible { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1437- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1438- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1439- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1440: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1441- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1442-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1443-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1447- #[prost(string, optional, tag = "19", default = "BAZ")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1448- pub baz_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1449- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1450: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1451- #[prost(oneof = "test_oneof2::Foo", tags = "1, 2, 3, 4, 5, 6, 7, 8, 11, 30")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1452- pub foo: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1453- #[prost(oneof = "test_oneof2::Bar", tags = "12, 13, 14, 15, 16, 17, 20, 21, 22, 23")] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1462- #[prost(string, optional, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1463- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1464- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1465: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1466- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1467- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1468- pub struct NestedMessage { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1471- #[prost(int32, repeated, packed = "false", tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1472- pub corge_int: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1473- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1474: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1475- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1476- #[derive( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1477- Clone, +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1562-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1563-pub struct TestRequiredOneof { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1564- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1565: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1566- #[prost(oneof = "test_required_oneof::Foo", tags = "1, 2, 3, 4")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1567- pub foo: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1568-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1573- #[prost(double, required, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1574- pub required_double: f64, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1575- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1576: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1577- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1578- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1579- pub enum Foo { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1618- #[prost(enumeration = "ForeignEnum", repeated, tag = "103")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1619- pub packed_enum: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1620- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1621: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1622-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1623-/// A message with the same fields as TestPackedTypes, but without packing. Used +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1624-/// to test packed <-> unpacked wire compatibility. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1653- #[prost(enumeration = "ForeignEnum", repeated, packed = "false", tag = "103")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1654- pub unpacked_enum: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1655- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1656: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1657-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1658-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1659-pub struct TestPackedExtensions { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1660- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1661: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1662-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1663-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1664-pub struct TestUnpackedExtensions { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1665- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1666: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1667-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1668-/// Used by ExtensionSetTest/DynamicExtensions. The test actually builds +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1669-/// a set of extensions to TestAllExtensions dynamically, based on the fields +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1691- #[prost(sint32, repeated, tag = "2006")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1692- pub packed_extension: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1693- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1694: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1695-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1696-/// Nested message and enum types in `TestDynamicExtensions`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1697-pub mod test_dynamic_extensions { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1700- #[prost(int32, optional, tag = "2100")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1701- pub dynamic_field: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1702- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1703: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1704- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1705- #[derive( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1706- Clone, +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1753- #[prost(bytes = "vec", repeated, tag = "12")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1754- pub repeated_bytes12: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1755- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1756: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1757-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1758-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1759-pub struct TestRepeatedScalarDifferentTagSizes { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1776- #[prost(uint64, repeated, packed = "false", tag = "262143")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1777- pub repeated_uint64: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1778- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1779: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1780-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1781-/// Test that if an optional or required message/group field appears multiple +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1782-/// times in the input, they need to be merged. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1793- #[prost(group, repeated, tag = "20")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1794- pub repeatedgroup: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1795- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1796: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1797-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1798-/// Nested message and enum types in `TestParsingMerge`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1799-pub mod test_parsing_merge { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1819- #[prost(message, repeated, tag = "1001")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1820- pub ext2: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1821- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1822: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1823- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1824- /// Nested message and enum types in `RepeatedFieldsGenerator`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1825- pub mod repeated_fields_generator { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1828- #[prost(message, optional, tag = "11")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1829- pub field1: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1830- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1831: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1832- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1833- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1834- pub struct Group2 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1835- #[prost(message, optional, tag = "21")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1836- pub field1: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1837- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1838: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1839- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1840- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1841- #[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1843- #[prost(message, optional, tag = "11")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1844- pub optional_group_all_types: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1845- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1846: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1847- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1848- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1849- pub struct RepeatedGroup { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1850- #[prost(message, optional, tag = "21")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1851- pub repeated_group_all_types: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1852- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1853: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1854- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1855-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1856-/// Test that the correct exception is thrown by parseFrom in a corner case +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1860- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1861- pub all_extensions: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1862- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1863: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1864-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1865-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1866-pub struct TestCommentInjectionMessage { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1868- #[prost(string, optional, tag = "1", default = "*/ <- Neither should this.")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1869- pub a: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1870- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1871: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1872-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1873-/// Used to check that the c++ code generator re-orders messages to reduce +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1874-/// padding. +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1887- #[prost(int64, optional, tag = "6")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1888- pub m6: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1889- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1890: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1891-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1892-/// Test that RPC services work. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1893-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1894-pub struct FooRequest { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1895- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1896: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1897-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1898-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1899-pub struct FooResponse { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1900- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1901: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1902-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1903-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1904-pub struct FooClientMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1905- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1906: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1907-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1908-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1909-pub struct FooServerMessage { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1910- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1911: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1912-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1913-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1914-pub struct BarRequest { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1915- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1916: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1917-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1918-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1919-pub struct BarResponse { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1920- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1921: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1922-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1923-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1924-pub struct TestJsonName { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1937- #[prost(int32, optional, tag = "7")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1938- pub fieldname7: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1939- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1940: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1941-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1942-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1943-pub struct TestHugeFieldNumbers { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1965- ::prost::alloc::string::String, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1966- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1967- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1968: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1969- #[prost( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1970- oneof = "test_huge_field_numbers::OneofField", +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1971- tags = "536870011, 536870012, 536870013, 536870014" +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1979- #[prost(int32, optional, tag = "536870009")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1980- pub group_a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1981- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:1982: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1983- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1984- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-1985- pub enum OneofField { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2014- #[prost(int32, optional, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2015- pub field10: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2016- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2017: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2018-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2019-/// NOTE: Intentionally nested to mirror go/glep. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2020-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2024- test_nested_group_extension_outer::Layer1OptionalGroup, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2025- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2026- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2027: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2028-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2029-/// Nested message and enum types in `TestNestedGroupExtensionOuter`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2030-pub mod test_nested_group_extension_outer { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2039- layer1_optional_group::Layer2AnotherOptionalRepeatedGroup, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2040- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2041- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2042: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2043- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2044- /// Nested message and enum types in `Layer1OptionalGroup`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2045- pub mod layer1_optional_group { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2048- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2049- pub another_field: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2050- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2051: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2052- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2053- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2054- pub struct Layer2AnotherOptionalRepeatedGroup { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2055- #[prost(string, optional, tag = "5")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2056- pub but_why_tho: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2057- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2058: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2059- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2060- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2061-} +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2064- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2065- pub inner_name: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2066- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2067: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2068-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2069-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2070-pub struct TestExtensionRangeSerialize { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2077- #[prost(int32, optional, tag = "13")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2078- pub foo_four: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2079- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2080: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2081-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2082-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2083-pub struct TestVerifyInt32Simple { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2090- #[prost(int32, optional, tag = "64")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2091- pub optional_int32_64: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2092- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2093: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2094-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2095-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2096-pub struct TestVerifyInt32 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2107- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2108- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2109- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2110: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2111-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2112-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2113-pub struct TestVerifyMostlyInt32 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2130- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2131- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2132- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2133: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2134-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2135-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2136-pub struct TestVerifyMostlyInt32BigFieldNumber { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2155- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2156- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2157- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2158: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2159-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2160-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2161-pub struct TestVerifyUint32Simple { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2168- #[prost(uint32, optional, tag = "64")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2169- pub optional_uint32_64: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2170- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2171: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2172-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2173-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2174-pub struct TestVerifyUint32 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2185- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2186- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2187- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2188: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2189-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2190-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2191-pub struct TestVerifyOneUint32 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2202- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2203- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2204- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2205: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2206-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2207-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2208-pub struct TestVerifyOneInt32BigFieldNumber { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2221- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2222- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2223- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2224: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2225-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2226-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2227-pub struct TestVerifyInt32BigFieldNumber { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2242- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2243- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2244- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2245: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2246-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2247-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2248-pub struct TestVerifyUint32BigFieldNumber { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2263- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2264- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2265- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2266: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2267-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2268-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2269-pub struct TestVerifyBigFieldNumberUint32 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2272- test_verify_big_field_number_uint32::Nested, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2273- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2274- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2275: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2276-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2277-/// Nested message and enum types in `TestVerifyBigFieldNumberUint32`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2278-pub mod test_verify_big_field_number_uint32 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2299- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2300- pub repeated_nested: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2301- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2302: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2303- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2304-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2305-/// This message contains different kind of enums to exercise the different +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2442- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2443- pub other_field: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2444- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2445: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2446-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2447-/// Nested message and enum types in `EnumParseTester`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2448-pub mod enum_parse_tester { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2734- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2735- pub other_field: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2736- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2737: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2738-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2739-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2740-pub struct Int32ParseTester { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2760- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2761- pub other_field: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2762- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2763: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2764-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2765-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2766-pub struct Int64ParseTester { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2786- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2787- pub other_field: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2788- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2789: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2790-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2791-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2792-pub struct InlinedStringIdxRegressionProto { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2806- #[prost(bytes = "vec", optional, tag = "4")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2807- pub str3: ::core::option::Option<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2808- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2809: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2810-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2811-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2812-pub struct StringParseTester { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2829- ::prost::alloc::string::String, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2830- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2831- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2832: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2833-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2834-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2835-pub struct BadFieldNames { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2838- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2839- pub r#for: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2840- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2841: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2842-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2843-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2844-pub struct TestNestedMessageRedaction { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2851- ::prost::alloc::string::String, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2852- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2853- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2854: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2855-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2856-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2857-pub struct RedactedFields { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2890- ::prost::alloc::string::String, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2891- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2892- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2893: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2894-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2895-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2896-pub struct TestCord { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2901- ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2902- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2903- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2904: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2905-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2906-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2907-pub struct TestPackedEnumSmallRange { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2912- )] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2913- pub vals: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2914- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2915: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2916-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2917-/// Nested message and enum types in `TestPackedEnumSmallRange`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2918-pub mod test_packed_enum_small_range { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2962-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2963-pub struct EnumsForBenchmark { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2964- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:2965: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2966-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2967-/// Nested message and enum types in `EnumsForBenchmark`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-2968-pub mod enums_for_benchmark { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-3269- #[prost(string, repeated, tag = "32")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-3270- pub repeated_string_32: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-3271- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs:3272: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-3273-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-3274-#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_unittest.rs-3275-#[repr(i32)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-302- #[prost(int32, optional, tag = "418")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-303- pub field_name18: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-304- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:305: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-306- #[prost( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-307- oneof = "test_all_types_proto2::OneofField", +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-308- tags = "111, 112, 113, 114, 115, 116, 117, 118, 119" +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-320- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-321- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-322- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:323: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-324- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-325- /// groups +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-326- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-330- #[prost(uint32, optional, tag = "203")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-331- pub group_uint32: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-332- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:333: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-334- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-335- /// message_set test case. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-336- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-337- pub struct MessageSetCorrect { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-338- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:339: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-340- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-341- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-342- pub struct MessageSetCorrectExtension1 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-343- #[prost(string, optional, tag = "25")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-344- pub str: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-345- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:346: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-347- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-348- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-349- pub struct MessageSetCorrectExtension2 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-350- #[prost(int32, optional, tag = "9")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-351- pub i: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-352- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:353: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-354- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-355- #[derive( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-356- Clone, +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-422- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-423- pub c: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-424- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:425: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-426-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-427-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-428-pub struct UnknownToTestAllTypes { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-439- #[prost(int32, repeated, packed = "false", tag = "1011")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-440- pub repeated_int32: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-441- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:442: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-443-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-444-/// Nested message and enum types in `UnknownToTestAllTypes`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-445-pub mod unknown_to_test_all_types { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-448- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-449- pub a: ::core::option::Option, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-450- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:451: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-452- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-453-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-454-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-455-pub struct NullHypothesisProto2 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-456- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:457: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-458-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-459-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-460-pub struct EnumOnlyProto2 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-461- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:462: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-463-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-464-/// Nested message and enum types in `EnumOnlyProto2`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-465-pub mod enum_only_proto2 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-505- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-506- pub data: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-507- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:508: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-509-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-510-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-511-pub struct ProtoWithKeywords { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-516- #[prost(string, repeated, tag = "3")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-517- pub requires: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-518- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:519: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-520-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-521-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-522-pub struct TestAllRequiredTypesProto2 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-609- #[prost(bytes = "vec", required, tag = "255", default = "b\"joshua\"")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-610- pub default_bytes: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-611- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:612: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-613-} +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-614-/// Nested message and enum types in `TestAllRequiredTypesProto2`. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-615-pub mod test_all_required_types_proto2 { +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-624- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-625- >, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-626- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:627: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-628- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-629- /// groups +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-630- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-634- #[prost(uint32, required, tag = "203")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-635- pub group_uint32: u32, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-636- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:637: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-638- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-639- /// message_set test case. +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-640- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-641- pub struct MessageSetCorrect { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-642- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:643: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-644- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-645- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-646- pub struct MessageSetCorrectExtension1 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-647- #[prost(string, required, tag = "25")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-648- pub str: ::prost::alloc::string::String, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-649- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:650: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-651- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-652- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-653- pub struct MessageSetCorrectExtension2 { +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-654- #[prost(int32, required, tag = "9")] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-655- pub i: i32, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-656- #[prost(unknown)] +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs:657: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-658- } +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-659- #[derive( +target/debug/build/protobuf-1d2aafdbc8d5b930/out/protobuf_test_messages.proto2.rs-660- Clone, +-- +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-6-} +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-582967110a15a778/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-6-} +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-e4809f70c8dea9cb/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-6-} +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-24398f48bc2f1f63/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-6-} +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-71331b69e40d54d8/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-6-} +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-b95f3a28cd965694/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-6-} +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-21ffa313b96e79c7/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-6-} +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-8931e136b9eb965d/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-6-} +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-8c471848a434ecd2/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-6-} +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-20345db73343d623/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-6-} +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-273ad8d7ce555893/out/unknown_fields.rs-19-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-104- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-105- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-106- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-110- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-114- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-115- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-112- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-113- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-114- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:115: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-116- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:117: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-118- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:119: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-120- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:121: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-122- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-123- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-124- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-311- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-312- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-313- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:314: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-315- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:316: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-317- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:318: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-319- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:320: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-321- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-322- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-323- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-584- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-585- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-586- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:587: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-588- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:589: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-590- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:591: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-592- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:593: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-594- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-595- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-596- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-104- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-105- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-106- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-110- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-114- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-115- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-104- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-105- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-106- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-110- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-114- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-115- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-104- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-105- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-106- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-110- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-114- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-115- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-104- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-105- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-106- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-110- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-114- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-115- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-149- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-150- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-151- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:152: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-153- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:154: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-155- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:156: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-157- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:158: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-159- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-160- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-161- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-332- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-333- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-334- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:335: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-336- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:337: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-338- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:339: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-340- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:341: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-342- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-343- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-344- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-544- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-545- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-546- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:547: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-548- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:549: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-550- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:551: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-552- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:553: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-554- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-555- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-556- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-104- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-105- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-106- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-110- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-114- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-115- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-238- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-239- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-240- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:241: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-242- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:243: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-244- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:245: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-246- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:247: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-248- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-249- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-250- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-437- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-438- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-439- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:440: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-441- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:442: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-443- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:444: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-445- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:446: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-447- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-448- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-449- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-811- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-812- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-813- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:814: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-815- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:816: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-817- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:818: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-819- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:820: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-821- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-822- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-823- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1024- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1025- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1026- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1027: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1028- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1029: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1030- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1031: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1032- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1033: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1034- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1035- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1036- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1323- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1324- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1325- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1326: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1327- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1328: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1329- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1330: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1331- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1332: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1333- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1334- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1335- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-128- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-129- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-130- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:131: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-132- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:133: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-134- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:135: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-136- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:137: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-138- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-139- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-140- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-303- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-304- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-305- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:306: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-307- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:308: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-309- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:310: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-311- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:312: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-313- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-314- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-315- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-478- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-479- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-480- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:481: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-482- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:483: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-484- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:485: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-486- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:487: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-488- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-489- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-490- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-659- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-660- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-661- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:662: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-663- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:664: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-665- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:666: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-667- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:668: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-669- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-670- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-671- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-834- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-835- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-836- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:837: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-838- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:839: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-840- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:841: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-842- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:843: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-844- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-845- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-846- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1009- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1010- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1011- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1012: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1013- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1014: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1015- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1016: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1017- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1018: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1019- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1020- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1021- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1184- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1185- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1186- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1187: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1188- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1189: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1190- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1191: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1192- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1193: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1194- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1195- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1196- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1359- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1360- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1361- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1362: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1363- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1364: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1365- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1366: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1367- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1368: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1369- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1370- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1371- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1540- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1541- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1542- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1543: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1544- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1545: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1546- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1547: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1548- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1549: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1550- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1551- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1552- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-311-FileOptions_OptimizeMode GetOptimizeFor(const FileDescriptor* file, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-312- const Options& options); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-313- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h:314:// Determines whether unknown fields will be stored in an UnknownFieldSet or +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-315-// a string. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h:316:inline bool UseUnknownFieldSet(const FileDescriptor* file, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-317- const Options& options) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-318- return GetOptimizeFor(file, options) != FileOptions::LITE_RUNTIME; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-319-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-345- FileDescriptorLegacy::Syntax::SYNTAX_PROTO2; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-346-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-347- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h:348:// Whether unknown enum values are kept (i.e., not stored in UnknownFieldSet +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-349-// but in the message and can be queried using additional getters that return +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-350-// ints. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-351-inline bool SupportUnknownEnumValue(const FieldDescriptor* field) { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-137- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-138- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-139- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:140: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-141- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:142: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-143- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:144: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-145- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:146: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-147- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-148- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-149- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-154- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-155- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-156- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:157: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-158- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:159: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-160- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:161: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-162- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:163: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-164- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-165- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-166- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-376- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-377- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-378- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:379: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-380- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:381: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-382- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:383: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-384- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:385: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-386- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-387- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-388- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-614- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-615- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-616- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:617: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-618- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:619: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-620- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:621: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-622- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:623: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-624- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-625- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-626- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-853- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-854- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-855- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:856: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-857- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:858: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-859- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:860: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-861- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:862: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-863- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-864- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-865- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-106- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-107- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-108- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:109: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-110- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:111: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-112- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:113: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-114- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:115: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-116- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-117- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-118- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2909-// different answer depending on the language. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2910-namespace cpp { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2911-// Returns true if 'enum' semantics are such that unknown values are preserved +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h:2912:// in the enum field itself, rather than going to the UnknownFieldSet. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2913-PROTOBUF_EXPORT bool HasPreservingUnknownEnumSemantics( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2914- const FieldDescriptor* field); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2915- +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-735- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-736- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-737- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:738: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-739- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:740: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-741- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:742: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-743- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:744: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-745- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-746- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-747- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-931- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-932- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-933- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:934: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-935- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:936: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-937- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:938: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-939- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:940: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-941- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-942- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-943- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1205- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1206- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1207- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1208: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1209- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1210: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1211- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1212: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1213- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1214: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1215- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1216- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1217- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1469- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1470- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1471- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1472: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1473- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1474: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1475- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1476: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1477- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1478: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1479- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1480- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1481- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1665- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1666- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1667- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1668: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1669- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1670: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1671- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1672: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1673- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1674: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1675- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1676- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1677- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2213- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2214- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2215- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2216: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2217- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2218: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2219- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2220: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2221- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2222: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2223- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2224- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2225- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2454- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2455- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2456- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2457: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2458- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2459: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2460- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2461: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2462- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2463: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2464- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2465- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2466- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2644- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2645- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2646- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2647: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2648- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2649: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2650- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2651: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2652- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2653: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2654- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2655- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2656- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2834- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2835- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2836- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2837: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2838- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2839: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2840- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2841: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2842- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2843: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2844- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2845- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2846- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3116- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3117- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3118- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3119: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3120- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3121: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3122- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3123: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3124- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3125: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3126- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3127- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3128- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3301- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3302- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3303- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3304: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3305- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3306: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3307- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3308: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3309- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3310: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3311- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3312- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3313- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3486- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3487- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3488- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3489: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3490- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3491: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3492- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3493: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3494- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3495: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3496- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3497- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3498- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3680- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3681- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3682- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3683: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3684- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3685: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3686- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3687: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3688- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3689: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3690- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3691- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3692- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4073- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4074- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4075- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4076: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4077- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4078: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4079- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4080: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4081- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4082: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4083- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4084- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4085- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4453- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4454- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4455- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4456: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4457- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4458: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4459- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4460: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4461- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4462: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4463- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4464- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4465- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4880- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4881- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4882- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4883: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4884- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4885: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4886- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4887: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4888- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4889: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4890- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4891- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4892- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5325- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5326- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5327- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5328: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5329- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5330: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5331- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5332: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5333- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5334: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5335- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5336- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5337- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6046- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6047- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6048- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6049: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6050- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6051: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6052- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6053: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6054- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6055: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6056- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6057- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6058- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6677- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6678- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6679- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6680: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6681- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6682: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6683- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6684: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6685- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6686: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6687- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6688- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6689- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6889- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6890- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6891- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6892: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6893- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6894: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6895- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6896: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6897- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6898: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6899- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6900- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6901- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7324- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7325- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7326- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7327: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7328- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7329: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7330- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7331: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7332- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7333: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7334- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7335- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7336- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7730- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7731- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7732- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7733: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7734- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7735: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7736- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7737: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7738- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7739: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7740- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7741- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7742- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8149- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8150- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8151- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8152: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8153- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8154: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8155- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8156: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8157- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8158: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8159- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8160- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8161- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8349- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8350- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8351- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8352: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8353- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8354: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8355- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8356: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8357- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8358: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8359- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8360- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8361- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8613- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8614- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8615- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8616: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8617- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8618: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8619- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8620: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8621- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8622: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8623- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8624- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8625- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9011- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9012- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9013- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9014: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9015- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9016: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9017- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9018: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9019- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9020: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9021- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9022- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9023- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9224- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9225- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9226- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9227: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9228- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9229: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9230- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9231: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9232- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9233: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9234- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9235- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9236- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9431- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9432- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9433- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9434: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9435- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9436: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9437- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9438: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9439- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9440: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9441- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9442- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9443- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9651- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9652- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9653- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9654: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9655- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9656: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9657- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9658: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9659- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9660: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9661- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9662- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9663- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9923- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9924- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9925- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9926: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9927- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9928: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9929- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9930: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9931- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9932: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9933- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9934- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9935- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10296- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10297- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10298- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10299: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10300- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10301: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10302- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10303: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10304- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10305: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10306- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10307- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10308- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10714- return *this; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10715- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10716- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10717: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10718- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10719: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10720- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10721: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10722- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10723: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10724- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10725- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10726- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-52-class Message; // message.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-53-class MessageFactory; // message.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-54-class Reflection; // message.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h:55:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-56-class FeatureSet; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-57-namespace internal { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-58-class FieldSkipper; // wire_format_lite.h +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-89-// corresponding field of the message has been initialized. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-90-// The bit for field index i is obtained by the expression: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-91-// has_bits[i / 32] & (1 << (i % 32)) +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h:92:// unknown_fields_offset: Offset in the message of the UnknownFieldSet for +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-93-// the message. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-94-// extensions_offset: Offset in the message of the ExtensionSet for the +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-95-// message, or -1 if the message type has no extension +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-326- const Metadata& metadata); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-327- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-328-// These cannot be in lite so we put them in the reflection. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h:329:PROTOBUF_EXPORT void UnknownFieldSetSerializer(const uint8_t* base, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-330- uint32_t offset, uint32_t tag, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-331- uint32_t has_offset, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-332- io::CodedOutputStream* output); +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-34-namespace protobuf { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-35- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-36-class Message; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h:37:class UnknownFieldSet; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-38- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-39-namespace internal { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-40- +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-628- // +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-629- // This function parses a field from incoming data based on metadata stored in +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-630- // the message definition. If the field is not defined in the message, it is +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h:631: // stored in either the ExtensionSet (if applicable) or the UnknownFieldSet. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-632- // +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-633- // NOTE: Currently, this function only calls the table-level fallback +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-634- // function, so it should only be called as the fallback from fast table +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-112- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-113- ~MapEntry() override { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-114- if (GetArena() != nullptr) return; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h:115: Message::_internal_metadata_.template Delete(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-116- KeyTypeHandler::DeleteNoArena(key_); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-117- ValueTypeHandler::DeleteNoArena(value_); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-118- } +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-145-class CachedSize; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-146-struct TailCallTableInfo; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-147-} // namespace internal +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h:148:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-149-namespace io { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-150-class ZeroCopyInputStream; // zero_copy_stream.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-151-class ZeroCopyOutputStream; // zero_copy_stream.h +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-275- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-276- // Clears all unknown fields from this message and all embedded messages. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-277- // Normally, if unknown tag numbers are encountered when parsing a message, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h:278: // the tag and value are stored in the message's UnknownFieldSet and +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-279- // then written back out when the message is serialized. This allows servers +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-280- // which simply route messages to other servers to pass through messages +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-281- // that have new field definitions which they don't yet know about. However, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-427- Reflection& operator=(const Reflection&) = delete; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-428- ~Reflection(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-429- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h:430: // Get the UnknownFieldSet for the message. This contains fields which +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-431- // were seen when the Message was parsed but were not recognized according +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-432- // to the Message's definition. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h:433: const UnknownFieldSet& GetUnknownFields(const Message& message) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h:434: // Get a mutable pointer to the UnknownFieldSet for the message. This +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-435- // contains fields which were seen when the Message was parsed but were not +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-436- // recognized according to the Message's definition. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h:437: UnknownFieldSet* MutableUnknownFields(Message* message) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-438- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-439- // Estimate the amount of memory used by the message object. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-440- size_t SpaceUsedLong(const Message& message) const; +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-895- // +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-896- // Generic code that uses reflection to handle messages with enum fields +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-897- // should check this flag before using the integer-based setter, and either +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h:898: // downgrade to a compatible value or use the UnknownFieldSet if not. For +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-899- // example: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-900- // +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/message.h-901- // int new_value = GetValueFromApplicationLogic(); +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-23-namespace google { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-24-namespace protobuf { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-25- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:26:class UnknownFieldSet; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-27- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-28-namespace internal { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-29- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-30-// This is the representation for messages that support arena allocation. It +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-31-// uses a tagged pointer to either store the owning Arena pointer, if there are +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-32-// no unknown fields, or a pointer to a block of memory with both the owning +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:33:// Arena pointer and the UnknownFieldSet, if there are unknown fields. Besides, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-34-// it also uses the tag to distinguish whether the owning Arena pointer is also +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-35-// used by sub-structure allocation. This optimization allows for +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-36-// "zero-overhead" storage of the Arena pointer, relative to the above baseline +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-208-template <> +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-209-PROTOBUF_EXPORT void InternalMetadata::DoSwap(std::string* other); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-210- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:211:// Instantiated once in message.cc (where the definition of UnknownFieldSet is +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-212-// known) to prevent much duplication across translation units of a large build. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-213-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:214:InternalMetadata::DoClear(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-215-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:216:InternalMetadata::DoMergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-217-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:218:InternalMetadata::DoSwap(UnknownFieldSet* other); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-219-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:220:InternalMetadata::DeleteOutOfLineHelper(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:221:extern template PROTOBUF_EXPORT UnknownFieldSet* +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:222:InternalMetadata::mutable_unknown_fields_slow(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-223- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-224-// This helper RAII class is needed to efficiently parse unknown fields. We +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-225-// should only call mutable_unknown_fields if there are actual unknown fields. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-226-// The obvious thing to just use a stack string and swap it at the end of +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-227-// the parse won't work, because the destructor of StringOutputStream needs to +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-228-// be called before we can modify the string (it check-fails). Using +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:229:// LiteUnknownFieldSetter setter(&_internal_metadata_); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-230-// StringOutputStream stream(setter.buffer()); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-231-// guarantees that the string is only swapped after stream is destroyed. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:232:class PROTOBUF_EXPORT LiteUnknownFieldSetter { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-233- public: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:234: explicit LiteUnknownFieldSetter(InternalMetadata* metadata) +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-235- : metadata_(metadata) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-236- if (metadata->have_unknown_fields()) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-237- buffer_.swap(*metadata->mutable_unknown_fields()); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-238- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-239- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:240: ~LiteUnknownFieldSetter() { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-241- if (!buffer_.empty()) +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-242- metadata_->mutable_unknown_fields()->swap(buffer_); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-243- } +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-41-namespace google { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-42-namespace protobuf { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-43- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:44:class UnknownFieldSet; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-45-class DescriptorPool; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-46-class MessageFactory; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-47- +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-52-PROTOBUF_EXPORT void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-53- std::string* s); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-54-// Inline because it is just forwarding to s->WriteVarint +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:55:inline void WriteVarint(uint32_t num, uint64_t val, UnknownFieldSet* s); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-56-inline void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:57: UnknownFieldSet* s); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-58- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-59- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-60-// The basic abstraction the parser is designed for is a slight modification +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1413- std::string* unknown, const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1414-// This is a helper to for the UnknownGroupLiteParse but is actually also +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1415-// useful in the generated code. It uses overload on std::string* vs +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:1416:// UnknownFieldSet* to make the generated code isomorphic between full and lite. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1417-PROTOBUF_NODISCARD PROTOBUF_EXPORT const char* UnknownFieldParse( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1418- uint32_t tag, std::string* unknown, const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1419- +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-97- // output stream. Returns false if printing fails. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-98- static bool Print(const Message& message, io::ZeroCopyOutputStream* output); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-99- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:100: // Print the fields in an UnknownFieldSet. They are printed by tag number +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-101- // only. Embedded messages are heuristically identified by attempting to +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-102- // parse them. Returns false if printing fails. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:103: static bool PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-104- io::ZeroCopyOutputStream* output); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-105- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-106- // Like Print(), but outputs directly to a string. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-110- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-111- // Like PrintUnknownFields(), but outputs directly to a string. Returns +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-112- // false if printing fails. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:113: static bool PrintUnknownFieldsToString(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-114- std::string* output); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-115- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-116- // Outputs a textual representation of the value of the field supplied on +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-304- bool Print(const Message& message, io::ZeroCopyOutputStream* output, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-305- internal::FieldReporterLevel reporter) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-306- // Like TextFormat::PrintUnknownFields +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:307: bool PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-308- io::ZeroCopyOutputStream* output) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-309- // Like TextFormat::PrintToString +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-310- bool PrintToString(const Message& message, std::string* output) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-311- // Like TextFormat::PrintUnknownFieldsToString +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:312: bool PrintUnknownFieldsToString(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-313- std::string* output) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-314- // Like TextFormat::PrintFieldValueToString +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-315- void PrintFieldValueToString(const Message& message, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-496- const FieldDescriptor* field, int index, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-497- BaseTextGenerator* generator) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-498- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:499: // Print the fields in an UnknownFieldSet. They are printed by tag number +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-500- // only. Embedded messages are heuristically identified by attempting to +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-501- // parse them (subject to the recursion budget). +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:502: void PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-503- BaseTextGenerator* generator, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-504- int recursion_budget) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-505- +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-47-class Message; // message.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-48-class UnknownField; // below +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-49- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:50:// An UnknownFieldSet contains fields that were encountered while parsing a +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-51-// message but were not defined by its type. Keeping track of these can be +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-52-// useful, especially in that they may be written if the message is serialized +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-53-// again without being cleared in between. This means that software which +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-54-// simply receives messages and forwards them to other servers does not need +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-55-// to be updated every time a new field is added to the message definition. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-56-// +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:57:// To get the UnknownFieldSet attached to any message, call +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-58-// Reflection::GetUnknownFields(). +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-59-// +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-60-// This class is necessarily tied to the protocol buffer wire format, unlike +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-61-// the Reflection interface which is independent of any serialization scheme. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:62:class PROTOBUF_EXPORT UnknownFieldSet { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-63- public: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:64: UnknownFieldSet(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:65: UnknownFieldSet(const UnknownFieldSet&) = delete; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:66: UnknownFieldSet& operator=(const UnknownFieldSet&) = delete; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:67: ~UnknownFieldSet(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-68- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-69- // Remove all fields. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-70- inline void Clear(); +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-75- // Is this set empty? +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-76- inline bool empty() const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-77- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:78: // Merge the contents of some other UnknownFieldSet with this one. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:79: void MergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-80- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-81- // Similar to above, but this function will destroy the contents of other. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:82: void MergeFromAndDestroy(UnknownFieldSet* other); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-83- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:84: // Merge the contents an UnknownFieldSet with the UnknownFieldSet in +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:85: // *metadata, if there is one. If *metadata doesn't have an UnknownFieldSet +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-86- // then add one to it and make it be a copy of the first arg. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:87: static void MergeToInternalMetadata(const UnknownFieldSet& other, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-88- internal::InternalMetadata* metadata); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-89- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:90: // Swaps the contents of some other UnknownFieldSet with this one. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:91: inline void Swap(UnknownFieldSet* x); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-92- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-93- // Computes (an estimate of) the total number of bytes currently used for +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-94- // storing the unknown fields in memory. Does NOT include +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-104- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-105- int SpaceUsed() const { return internal::ToIntSize(SpaceUsedLong()); } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-106- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:107: // Returns the number of fields present in the UnknownFieldSet. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-108- inline int field_count() const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-109- // Get a field in the set, where 0 <= index < field_count(). The fields +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-110- // appear in the order in which they were added. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-121- void AddFixed64(int number, uint64_t value); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-122- void AddLengthDelimited(int number, const std::string& value); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-123- std::string* AddLengthDelimited(int number); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:124: UnknownFieldSet* AddGroup(int number); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-125- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-126- // Adds an unknown field from another set. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-127- void AddField(const UnknownField& field); +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-156- bool SerializeToString(std::string* output) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-157- bool SerializeToCord(absl::Cord* output) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-158- bool SerializeToCodedStream(io::CodedOutputStream* output) const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:159: static const UnknownFieldSet& default_instance(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-160- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-161- private: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-162- // For InternalMergeFrom +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-163- friend class UnknownField; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:164: // Merges from other UnknownFieldSet. This method assumes, that this object +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-165- // is newly created and has no fields. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:166: void InternalMergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-167- void ClearFallback(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-168- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-169- template AddVarint(num, val); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-197-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-198-inline void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:199: UnknownFieldSet* unknown) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-200- unknown->AddLengthDelimited(num)->assign(val.data(), val.size()); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-201-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-202- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-203-PROTOBUF_EXPORT +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:204:const char* UnknownGroupParse(UnknownFieldSet* unknown, const char* ptr, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-205- ParseContext* ctx); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-206-PROTOBUF_EXPORT +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:207:const char* UnknownFieldParse(uint64_t tag, UnknownFieldSet* unknown, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-208- const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-209- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-210-} // namespace internal +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-211- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:212:// Represents one field in an UnknownFieldSet. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-213-class PROTOBUF_EXPORT UnknownField { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-214- public: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-215- enum Type { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-233- inline uint32_t fixed32() const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-234- inline uint64_t fixed64() const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-235- inline const std::string& length_delimited() const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:236: inline const UnknownFieldSet& group() const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-237- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-238- inline void set_varint(uint64_t value); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-239- inline void set_fixed32(uint32_t value); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-240- inline void set_fixed64(uint64_t value); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-241- inline void set_length_delimited(const std::string& value); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-242- inline std::string* mutable_length_delimited(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:243: inline UnknownFieldSet* mutable_group(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-244- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-245- inline size_t GetLengthDelimitedSize() const; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-246- uint8_t* InternalSerializeLengthDelimitedNoTag( +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-268- uint32_t fixed32_; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-269- uint64_t fixed64_; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-270- mutable union LengthDelimited length_delimited_; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:271: UnknownFieldSet* group_; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-272- } data_; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-273-}; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-274- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-275-// =================================================================== +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-276-// inline implementations +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-277- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:278:inline UnknownFieldSet::UnknownFieldSet() {} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-279- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:280:inline UnknownFieldSet::~UnknownFieldSet() { Clear(); } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-281- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:282:inline void UnknownFieldSet::ClearAndFreeMemory() { Clear(); } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-283- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:284:inline void UnknownFieldSet::Clear() { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-285- if (!fields_.empty()) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-286- ClearFallback(); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-287- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-288-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-289- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:290:inline bool UnknownFieldSet::empty() const { return fields_.empty(); } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-291- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:292:inline void UnknownFieldSet::Swap(UnknownFieldSet* x) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-293- fields_.swap(x->fields_); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-294-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-295- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:296:inline int UnknownFieldSet::field_count() const { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-297- return static_cast(fields_.size()); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-298-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:299:inline const UnknownField& UnknownFieldSet::field(int index) const { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-300- return (fields_)[static_cast(index)]; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-301-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:302:inline UnknownField* UnknownFieldSet::mutable_field(int index) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-303- return &(fields_)[static_cast(index)]; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-304-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-305- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:306:inline void UnknownFieldSet::AddLengthDelimited(int number, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-307- const std::string& value) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-308- AddLengthDelimited(number)->assign(value); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-309-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-332- assert(type() == TYPE_LENGTH_DELIMITED); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-333- return *data_.length_delimited_.string_value; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-334-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:335:inline const UnknownFieldSet& UnknownField::group() const { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-336- assert(type() == TYPE_GROUP); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-337- return *data_.group_; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-338-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-357- assert(type() == TYPE_LENGTH_DELIMITED); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-358- return data_.length_delimited_.string_value; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-359-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:360:inline UnknownFieldSet* UnknownField::mutable_group() { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-361- assert(type() == TYPE_GROUP); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-362- return data_.group_; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-363-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-364-template +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:365:bool UnknownFieldSet::MergeFromMessage(const MessageType& message) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-366- // SFINAE will route to the right version. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-367- return InternalMergeFromMessage(message); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-368-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-188- const Message* map_entry1 = nullptr; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-189- const Message* map_entry2 = nullptr; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-190- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:191: // For unknown fields, these are the pointers to the UnknownFieldSet +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-192- // containing the unknown fields. In certain cases (e.g. proto1's +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-193- // MessageSet, or nested groups of unknown fields), these may differ from +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:194: // the messages' internal UnknownFieldSets. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:195: const UnknownFieldSet* unknown_field_set1 = nullptr; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:196: const UnknownFieldSet* unknown_field_set2 = nullptr; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-197- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-198- // For unknown fields, these are the index of the field within the +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:199: // UnknownFieldSets. One or the other will be -1 when +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-200- // reporting an addition or deletion. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-201- int unknown_field_index1 = -1; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-202- int unknown_field_index2 = -1; +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-781- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-782- // Compares all the unknown fields in two messages. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-783- bool CompareUnknownFields(const Message& message1, const Message& message2, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:784: const UnknownFieldSet&, const UnknownFieldSet&, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-785- std::vector* parent_fields); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-786- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-787- // Compares the specified messages for the requested field lists. The field +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-37-namespace google { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-38-namespace protobuf { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-39-class MapKey; // map_field.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:40:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-41-} // namespace protobuf +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-42-} // namespace google +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-43- +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-128- // positioned immediately after the tag. If unknown_fields is non-nullptr, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-129- // the contents of the field will be added to it. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-130- static bool SkipField(io::CodedInputStream* input, uint32_t tag, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:131: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-132- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-133- // Reads and ignores a message from the input. If unknown_fields is +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-134- // non-nullptr, the contents will be added to it. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-135- static bool SkipMessage(io::CodedInputStream* input, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:136: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-137- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-138- // Read a packed enum field. If the is_valid function is not nullptr, values +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-139- // for which is_valid(value) returns false are appended to +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-141- static bool ReadPackedEnumPreserveUnknowns(io::CodedInputStream* input, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-142- uint32_t field_number, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-143- bool (*is_valid)(int), +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:144: UnknownFieldSet* unknown_fields, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-145- RepeatedField* values); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-146- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:147: // Write the contents of an UnknownFieldSet to the output. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:148: static void SerializeUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-149- io::CodedOutputStream* output) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-150- output->SetCur(InternalSerializeUnknownFieldsToArray( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-151- unknown_fields, output->Cur(), output->EpsCopy())); +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-156- // +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-157- // Returns a pointer past the last written byte. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-158- static uint8_t* SerializeUnknownFieldsToArray( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:159: const UnknownFieldSet& unknown_fields, uint8_t* target) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-160- io::EpsCopyOutputStream stream( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-161- target, static_cast(ComputeUnknownFieldsSize(unknown_fields)), +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-162- io::CodedOutputStream::IsDefaultSerializationDeterministic()); +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-164- &stream); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-165- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-166- static uint8_t* InternalSerializeUnknownFieldsToArray( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:167: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-168- io::EpsCopyOutputStream* stream); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-169- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-170- // Same thing except for messages that have the message_set_wire_format +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-171- // option. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-172- static void SerializeUnknownMessageSetItems( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:173: const UnknownFieldSet& unknown_fields, io::CodedOutputStream* output) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-174- output->SetCur(InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-175- unknown_fields, output->Cur(), output->EpsCopy())); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-176- } +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-180- // +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-181- // Returns a pointer past the last written byte. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-182- static uint8_t* SerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:183: const UnknownFieldSet& unknown_fields, uint8_t* target); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-184- static uint8_t* InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:185: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-186- io::EpsCopyOutputStream* stream); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-187- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:188: // Compute the size of the UnknownFieldSet on the wire. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:189: static size_t ComputeUnknownFieldsSize(const UnknownFieldSet& unknown_fields); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-190- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-191- // Same thing except for messages that have the message_set_wire_format +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-192- // option. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-193- static size_t ComputeUnknownMessageSetItemsSize( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:194: const UnknownFieldSet& unknown_fields); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-195- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-196- // Helper functions for encoding and decoding tags. (Inlined below and in +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-197- // _inl.h) +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-268- // Skip a MessageSet field. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-269- static bool SkipMessageSetField(io::CodedInputStream* input, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-270- uint32_t field_number, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:271: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-272- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-273- // Parse a MessageSet field. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-274- static bool ParseAndMergeMessageSetField(uint32_t field_number, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-283- const FieldDescriptor* field); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-284-}; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-285- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:286:// Subclass of FieldSkipper which saves skipped fields to an UnknownFieldSet. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:287:class PROTOBUF_EXPORT UnknownFieldSetFieldSkipper : public FieldSkipper { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-288- public: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:289: UnknownFieldSetFieldSkipper(UnknownFieldSet* unknown_fields) +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-290- : unknown_fields_(unknown_fields) {} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:291: ~UnknownFieldSetFieldSkipper() override {} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-292- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-293- // implements FieldSkipper ----------------------------------------- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-294- bool SkipField(io::CodedInputStream* input, uint32_t tag) override; +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-296- void SkipUnknownEnum(int field_number, int value) override; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-297- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-298- protected: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:299: UnknownFieldSet* unknown_fields_; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-300-}; +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-301- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-302-// inline methods ==================================================== +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-362- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-363- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-364-inline uint8_t* InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:365: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-366- io::EpsCopyOutputStream* stream) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-367- return WireFormat::InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-368- unknown_fields, target, stream); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-369-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-370- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-371-inline size_t ComputeUnknownMessageSetItemsSize( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:372: const UnknownFieldSet& unknown_fields) { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-373- return WireFormat::ComputeUnknownMessageSetItemsSize(unknown_fields); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-374-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-375- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:376:// Compute the size of the UnknownFieldSet on the wire. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-377-PROTOBUF_EXPORT +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-378-size_t ComputeUnknownFieldsSize(const InternalMetadata& metadata, size_t size, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-379- CachedSize* cached_size); +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-161- // Skips a field value with the given tag. The input should start +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-162- // positioned immediately after the tag. Skipped values are simply +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-163- // discarded, not recorded anywhere. See WireFormat::SkipField() for a +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:164: // version that records to an UnknownFieldSet. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-165- static bool SkipField(io::CodedInputStream* input, uint32_t tag); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-166- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-167- // Skips a field value with the given tag. The input should start +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-172- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-173- // Reads and ignores a message from the input. Skipped values are simply +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-174- // discarded, not recorded anywhere. See WireFormat::SkipMessage() for a +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:175: // version that records to an UnknownFieldSet. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-176- static bool SkipMessage(io::CodedInputStream* input); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-177- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-178- // Reads and ignores a message from the input. Skipped values are recorded +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-755- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-756-// A class which deals with unknown values. The default implementation just +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-757-// discards them. WireFormat defines a subclass which writes to an +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:758:// UnknownFieldSet. This class is used by ExtensionSet::ParseField(), since +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:759:// ExtensionSet is part of the lite library but UnknownFieldSet is not. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-760-class PROTOBUF_EXPORT FieldSkipper { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-761- public: +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-762- FieldSkipper() {} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-770- virtual bool SkipMessage(io::CodedInputStream* input); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-771- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-772- // Deal with an already-parsed unrecognized enum value. The default +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:773: // implementation does nothing, but the UnknownFieldSet-based implementation +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-774- // saves it as an unknown varint. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-775- virtual void SkipUnknownEnum(int field_number, int value); +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-776-}; +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-4- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-5- pub e: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-6- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs:7: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-8-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-9-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-10-pub struct ImportMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-11- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-12- pub d: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-13- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs:14: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-15-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-16-#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest_import.rs-17-#[repr(i32)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-302- #[prost(int32, optional, tag = "418")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-303- pub field_name18: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-304- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:305: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-306- #[prost( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-307- oneof = "test_all_types_proto2::OneofField", +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-308- tags = "111, 112, 113, 114, 115, 116, 117, 118, 119" +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-320- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-321- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-322- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:323: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-324- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-325- /// groups +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-326- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-330- #[prost(uint32, optional, tag = "203")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-331- pub group_uint32: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-332- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:333: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-334- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-335- /// message_set test case. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-336- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-337- pub struct MessageSetCorrect { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-338- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:339: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-340- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-341- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-342- pub struct MessageSetCorrectExtension1 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-343- #[prost(string, optional, tag = "25")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-344- pub str: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-345- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:346: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-347- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-348- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-349- pub struct MessageSetCorrectExtension2 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-350- #[prost(int32, optional, tag = "9")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-351- pub i: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-352- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:353: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-354- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-355- #[derive( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-356- Clone, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-422- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-423- pub c: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-424- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:425: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-426-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-427-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-428-pub struct UnknownToTestAllTypes { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-439- #[prost(int32, repeated, packed = "false", tag = "1011")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-440- pub repeated_int32: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-441- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:442: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-443-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-444-/// Nested message and enum types in `UnknownToTestAllTypes`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-445-pub mod unknown_to_test_all_types { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-448- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-449- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-450- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:451: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-452- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-453-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-454-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-455-pub struct NullHypothesisProto2 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-456- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:457: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-458-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-459-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-460-pub struct EnumOnlyProto2 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-461- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:462: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-463-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-464-/// Nested message and enum types in `EnumOnlyProto2`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-465-pub mod enum_only_proto2 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-505- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-506- pub data: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-507- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:508: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-509-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-510-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-511-pub struct ProtoWithKeywords { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-516- #[prost(string, repeated, tag = "3")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-517- pub requires: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-518- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:519: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-520-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-521-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-522-pub struct TestAllRequiredTypesProto2 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-609- #[prost(bytes = "vec", required, tag = "255", default = "b\"joshua\"")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-610- pub default_bytes: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-611- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:612: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-613-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-614-/// Nested message and enum types in `TestAllRequiredTypesProto2`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-615-pub mod test_all_required_types_proto2 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-624- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-625- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-626- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:627: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-628- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-629- /// groups +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-630- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-634- #[prost(uint32, required, tag = "203")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-635- pub group_uint32: u32, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-636- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:637: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-638- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-639- /// message_set test case. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-640- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-641- pub struct MessageSetCorrect { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-642- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:643: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-644- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-645- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-646- pub struct MessageSetCorrectExtension1 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-647- #[prost(string, required, tag = "25")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-648- pub str: ::prost::alloc::string::String, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-649- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:650: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-651- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-652- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-653- pub struct MessageSetCorrectExtension2 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-654- #[prost(int32, required, tag = "9")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-655- pub i: i32, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-656- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs:657: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-658- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-659- #[derive( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto2.rs-660- Clone, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-186- #[prost(string, optional, tag = "85", default = "123")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-187- pub default_cord: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-188- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:189: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-190- /// For oneof test +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-191- #[prost( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-192- oneof = "test_all_types::OneofField", +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-204- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-205- pub bb: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-206- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:207: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-208- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-209- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-210- pub struct OptionalGroup { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-211- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-212- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-213- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:214: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-215- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-216- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-217- pub struct RepeatedGroup { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-218- #[prost(int32, optional, tag = "47")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-219- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-220- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:221: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-222- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-223- #[derive( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-224- Clone, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-298- #[prost(message, optional, tag = "5")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-299- pub eager_child: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-300- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:301: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-302-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-303-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-304-pub struct TestDeprecatedFields { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-316- #[prost(message, optional, boxed, tag = "5")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-317- pub nested: ::core::option::Option<::prost::alloc::boxed::Box>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-318- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:319: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-320- #[prost(oneof = "test_deprecated_fields::OneofFields", tags = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-321- pub oneof_fields: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-322-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-332-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-333-pub struct TestDeprecatedMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-334- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:335: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-336-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-337-/// Define these after TestAllTypes to make sure the compiler can handle +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-338-/// that. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-343- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-344- pub d: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-345- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:346: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-347-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-348-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-349-pub struct TestReservedFields { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-350- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:351: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-352-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-353-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-354-pub struct TestAllExtensions { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-355- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:356: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-357-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-358-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-359-pub struct OptionalGroupExtension { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-360- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-361- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-362- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:363: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-364-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-365-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-366-pub struct RepeatedGroupExtension { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-367- #[prost(int32, optional, tag = "47")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-368- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-369- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:370: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-371-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-372-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-373-pub struct TestMixedFieldsAndExtensions { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-376- #[prost(fixed32, repeated, packed = "false", tag = "3")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-377- pub b: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-378- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:379: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-380-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-381-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-382-pub struct TestGroup { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-385- #[prost(enumeration = "ForeignEnum", optional, tag = "22")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-386- pub optional_foreign_enum: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-387- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:388: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-389-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-390-/// Nested message and enum types in `TestGroup`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-391-pub mod test_group { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-397- #[prost(int32, optional, tag = "89")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-398- pub zz: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-399- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:400: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-401- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-402-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-403-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-404-pub struct TestGroupExtension { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-405- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:406: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-407-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-408-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-409-pub struct TestNestedExtension { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-410- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:411: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-412-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-413-/// Nested message and enum types in `TestNestedExtension`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-414-pub mod test_nested_extension { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-417- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-418- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-419- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:420: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-421- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-422-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-423-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-429- #[prost(message, optional, tag = "3")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-430- pub optional_extension: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-431- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:432: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-433-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-434-/// Emulates wireformat data of TestChildExtension with dynamic extension +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-435-/// (DynamicExtension). +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-444- test_child_extension_data::NestedTestAllExtensionsData, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-445- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-446- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:447: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-448-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-449-/// Nested message and enum types in `TestChildExtensionData`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-450-pub mod test_child_extension_data { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-455- nested_test_all_extensions_data::NestedDynamicExtensions, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-456- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-457- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:458: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-459- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-460- /// Nested message and enum types in `NestedTestAllExtensionsData`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-461- pub mod nested_test_all_extensions_data { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-466- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-467- pub b: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-468- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:469: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-470- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-471- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-472-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-477- #[prost(message, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-478- pub child: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-479- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:480: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-481-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-482-/// Emulates wireformat data of TestNestedChildExtension with dynamic extension +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-483-/// (DynamicExtension). +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-488- #[prost(message, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-489- pub child: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-490- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:491: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-492-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-493-/// Required and closed enum fields are considered unknown fields if the value is +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-494-/// not valid. We need to make sure it functions as expected. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-500- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-501- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-502- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:503: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-504-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-505-/// TestRequiredEnum + using enum values that won't fit to 64 bitmask. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-506-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-511- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-512- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-513- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:514: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-515-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-516-/// Nested message and enum types in `TestRequiredEnumNoMask`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-517-pub mod test_required_enum_no_mask { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-572- #[prost(enumeration = "ForeignEnum", required, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-573- pub required_enum_1: i32, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-574- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:575: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-576-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-577-/// Nested message and enum types in `TestRequiredEnumMulti`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-578-pub mod test_required_enum_multi { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-651- #[prost(enumeration = "ForeignEnum", required, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-652- pub required_enum_1: i32, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-653- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:654: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-655-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-656-/// Nested message and enum types in `TestRequiredNoMaskMulti`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-657-pub mod test_required_no_mask_multi { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-777- #[prost(message, optional, tag = "34")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-778- pub optional_foreign: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-779- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:780: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-781-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-782-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-783-pub struct TestRequiredForeign { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-791- #[prost(message, optional, tag = "4")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-792- pub optional_lazy_message: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-793- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:794: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-795-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-796-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-797-pub struct TestRequiredMessage { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-802- #[prost(message, required, tag = "3")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-803- pub required_message: TestRequired, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-804- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:805: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-806-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-807-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-808-pub struct TestNestedRequiredForeign { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-824- #[prost(message, optional, tag = "9")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-825- pub required_no_mask: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-826- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:827: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-828-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-829-/// Test that we can use NestedMessage from outside TestAllTypes. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-830-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-832- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-833- pub foreign_nested: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-834- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:835: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-836-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-837-/// TestEmptyMessage is used to test unknown field support. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-838-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-839-pub struct TestEmptyMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-840- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:841: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-842-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-843-/// Like above, but declare all field numbers as potential extensions. No +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-844-/// actual extensions should ever be defined for this type. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-845-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-846-pub struct TestEmptyMessageWithExtensions { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-847- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:848: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-849-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-850-/// Needed for a Python test. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-851-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-852-pub struct TestPickleNestedMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-853- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:854: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-855-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-856-/// Nested message and enum types in `TestPickleNestedMessage`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-857-pub mod test_pickle_nested_message { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-860- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-861- pub bb: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-862- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:863: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-864- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-865- /// Nested message and enum types in `NestedMessage`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-866- pub mod nested_message { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-869- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-870- pub cc: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-871- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:872: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-873- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-874- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-875-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-876-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-877-pub struct TestMultipleExtensionRanges { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-878- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:879: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-880-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-881-/// Test that really large tag numbers don't break anything. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-882-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-888- #[prost(int32, optional, tag = "268435455")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-889- pub bb: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-890- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:891: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-892-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-893-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-894-pub struct TestRecursiveMessage { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-897- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-898- pub i: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-899- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:900: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-901-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-902-/// Test that mutual recursion works. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-903-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-911- #[prost(group, repeated, tag = "5")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-912- pub subgroupr: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-913- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:914: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-915-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-916-/// Nested message and enum types in `TestMutualRecursionA`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-917-pub mod test_mutual_recursion_a { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-920- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-921- pub b: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-922- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:923: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-924- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-925- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-926- pub struct SubGroup { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-930- #[prost(message, optional, tag = "4")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-931- pub not_in_this_scc: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-932- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:933: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-934- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-935- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-936- pub struct SubGroupR { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-937- #[prost(message, optional, tag = "6")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-938- pub payload: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-939- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:940: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-941- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-942-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-943-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-947- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-948- pub optional_int32: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-949- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:950: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-951-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-952-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-953-pub struct TestIsInitialized { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-954- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-955- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-956- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:957: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-958-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-959-/// Nested message and enum types in `TestIsInitialized`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-960-pub mod test_is_initialized { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-963- #[prost(group, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-964- pub subgroup: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-965- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:966: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-967- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-968- /// Nested message and enum types in `SubMessage`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-969- pub mod sub_message { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-972- #[prost(int32, required, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-973- pub i: i32, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-974- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:975: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-976- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-977- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-978-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-992- #[prost(group, optional, tag = "3")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-993- pub bar: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-994- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:995: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-996-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-997-/// Nested message and enum types in `TestDupFieldNumber`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-998-pub mod test_dup_field_number { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1001- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1002- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1003- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1004: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1005- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1006- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1007- pub struct Bar { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1008- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1009- pub a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1010- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1011: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1012- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1013-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1014-/// Additional messages for testing lazy fields. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1017- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1018- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1019- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1020: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1021-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1022-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1023-pub struct TestLazyMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1024- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1025- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1026- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1027: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1028-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1029-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1030-pub struct TestLazyMessageRepeated { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1031- #[prost(message, repeated, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1032- pub repeated_message: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1033- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1034: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1035-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1036-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1037-pub struct TestEagerMaybeLazy { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1042- #[prost(message, optional, tag = "3")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1043- pub message_baz: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1044- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1045: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1046-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1047-/// Nested message and enum types in `TestEagerMaybeLazy`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1048-pub mod test_eager_maybe_lazy { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1051- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1052- pub packed: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1053- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1054: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1055- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1056-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1057-/// Needed for a Python test. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1062- test_nested_message_has_bits::NestedMessage, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1063- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1064- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1065: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1066-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1067-/// Nested message and enum types in `TestNestedMessageHasBits`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1068-pub mod test_nested_message_has_bits { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1075- super::ForeignMessage, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1076- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1077- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1078: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1079- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1080-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1081-/// Test message with CamelCase field names. This violates Protocol Buffer +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1109- #[prost(string, repeated, tag = "12")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1110- pub repeated_cord_field: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1111- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1112: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1113-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1114-/// We list fields out of order, to ensure that we're using field number and not +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1115-/// field index to determine serialization order. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1126- test_field_orderings::NestedMessage, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1127- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1128- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1129: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1130-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1131-/// Nested message and enum types in `TestFieldOrderings`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1132-pub mod test_field_orderings { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1140- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1141- pub bb: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1142- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1143: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1144- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1145-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1146-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1148- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1149- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1150- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1151: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1152-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1153-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1154-pub struct TestExtensionOrderings2 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1155- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1156- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1157- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1158: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1159-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1160-/// Nested message and enum types in `TestExtensionOrderings2`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1161-pub mod test_extension_orderings2 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1164- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1165- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1166- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1167: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1168- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1169-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1170-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1241- #[prost(string, optional, tag = "27", default = "${unknown}")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1242- pub replacement_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1243- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1244: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1245-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1246-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1247-pub struct SparseEnumMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1248- #[prost(enumeration = "TestSparseEnum", optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1249- pub sparse_enum: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1250- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1251: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1252-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1253-/// Test String and Bytes: string is for valid UTF-8 strings +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1254-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1256- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1257- pub data: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1258- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1259: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1260-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1261-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1262-pub struct MoreString { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1263- #[prost(string, repeated, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1264- pub data: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1265- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1266: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1267-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1268-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1269-pub struct OneBytes { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1270- #[prost(bytes = "vec", optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1271- pub data: ::core::option::Option<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1272- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1273: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1274-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1275-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1276-pub struct MoreBytes { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1277- #[prost(bytes = "vec", repeated, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1278- pub data: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1279- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1280: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1281-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1282-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1283-pub struct ManyOptionalString { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1346- #[prost(string, optional, tag = "32")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1347- pub str32: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1348- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1349: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1350-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1351-/// Test int32, uint32, int64, uint64, and bool are all compatible +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1352-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1354- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1355- pub data: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1356- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1357: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1358-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1359-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1360-pub struct Uint32Message { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1361- #[prost(uint32, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1362- pub data: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1363- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1364: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1365-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1366-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1367-pub struct Int64Message { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1368- #[prost(int64, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1369- pub data: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1370- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1371: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1372-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1373-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1374-pub struct Uint64Message { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1375- #[prost(uint64, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1376- pub data: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1377- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1378: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1379-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1380-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1381-pub struct BoolMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1382- #[prost(bool, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1383- pub data: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1384- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1385: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1386-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1387-/// Test oneofs. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1388-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1389-pub struct TestOneof { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1390- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1391: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1392- #[prost(oneof = "test_oneof::Foo", tags = "1, 2, 3, 4")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1393- pub foo: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1394-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1401- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1402- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1403- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1404: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1405- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1406- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1407- pub enum Foo { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1426- #[prost(group, optional, tag = "4")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1427- pub foogroup: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1428- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1429: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1430-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1431-/// Nested message and enum types in `TestOneofBackwardsCompatible`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1432-pub mod test_oneof_backwards_compatible { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1437- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1438- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1439- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1440: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1441- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1442-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1443-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1447- #[prost(string, optional, tag = "19", default = "BAZ")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1448- pub baz_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1449- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1450: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1451- #[prost(oneof = "test_oneof2::Foo", tags = "1, 2, 3, 4, 5, 6, 7, 8, 11, 30")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1452- pub foo: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1453- #[prost(oneof = "test_oneof2::Bar", tags = "12, 13, 14, 15, 16, 17, 20, 21, 22, 23")] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1462- #[prost(string, optional, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1463- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1464- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1465: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1466- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1467- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1468- pub struct NestedMessage { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1471- #[prost(int32, repeated, packed = "false", tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1472- pub corge_int: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1473- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1474: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1475- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1476- #[derive( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1477- Clone, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1562-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1563-pub struct TestRequiredOneof { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1564- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1565: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1566- #[prost(oneof = "test_required_oneof::Foo", tags = "1, 2, 3, 4")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1567- pub foo: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1568-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1573- #[prost(double, required, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1574- pub required_double: f64, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1575- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1576: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1577- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1578- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1579- pub enum Foo { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1618- #[prost(enumeration = "ForeignEnum", repeated, tag = "103")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1619- pub packed_enum: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1620- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1621: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1622-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1623-/// A message with the same fields as TestPackedTypes, but without packing. Used +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1624-/// to test packed <-> unpacked wire compatibility. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1653- #[prost(enumeration = "ForeignEnum", repeated, packed = "false", tag = "103")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1654- pub unpacked_enum: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1655- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1656: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1657-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1658-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1659-pub struct TestPackedExtensions { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1660- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1661: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1662-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1663-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1664-pub struct TestUnpackedExtensions { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1665- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1666: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1667-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1668-/// Used by ExtensionSetTest/DynamicExtensions. The test actually builds +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1669-/// a set of extensions to TestAllExtensions dynamically, based on the fields +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1691- #[prost(sint32, repeated, tag = "2006")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1692- pub packed_extension: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1693- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1694: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1695-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1696-/// Nested message and enum types in `TestDynamicExtensions`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1697-pub mod test_dynamic_extensions { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1700- #[prost(int32, optional, tag = "2100")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1701- pub dynamic_field: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1702- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1703: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1704- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1705- #[derive( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1706- Clone, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1753- #[prost(bytes = "vec", repeated, tag = "12")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1754- pub repeated_bytes12: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1755- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1756: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1757-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1758-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1759-pub struct TestRepeatedScalarDifferentTagSizes { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1776- #[prost(uint64, repeated, packed = "false", tag = "262143")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1777- pub repeated_uint64: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1778- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1779: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1780-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1781-/// Test that if an optional or required message/group field appears multiple +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1782-/// times in the input, they need to be merged. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1793- #[prost(group, repeated, tag = "20")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1794- pub repeatedgroup: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1795- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1796: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1797-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1798-/// Nested message and enum types in `TestParsingMerge`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1799-pub mod test_parsing_merge { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1819- #[prost(message, repeated, tag = "1001")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1820- pub ext2: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1821- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1822: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1823- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1824- /// Nested message and enum types in `RepeatedFieldsGenerator`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1825- pub mod repeated_fields_generator { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1828- #[prost(message, optional, tag = "11")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1829- pub field1: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1830- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1831: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1832- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1833- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1834- pub struct Group2 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1835- #[prost(message, optional, tag = "21")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1836- pub field1: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1837- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1838: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1839- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1840- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1841- #[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1843- #[prost(message, optional, tag = "11")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1844- pub optional_group_all_types: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1845- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1846: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1847- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1848- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1849- pub struct RepeatedGroup { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1850- #[prost(message, optional, tag = "21")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1851- pub repeated_group_all_types: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1852- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1853: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1854- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1855-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1856-/// Test that the correct exception is thrown by parseFrom in a corner case +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1860- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1861- pub all_extensions: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1862- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1863: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1864-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1865-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1866-pub struct TestCommentInjectionMessage { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1868- #[prost(string, optional, tag = "1", default = "*/ <- Neither should this.")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1869- pub a: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1870- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1871: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1872-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1873-/// Used to check that the c++ code generator re-orders messages to reduce +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1874-/// padding. +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1887- #[prost(int64, optional, tag = "6")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1888- pub m6: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1889- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1890: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1891-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1892-/// Test that RPC services work. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1893-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1894-pub struct FooRequest { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1895- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1896: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1897-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1898-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1899-pub struct FooResponse { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1900- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1901: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1902-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1903-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1904-pub struct FooClientMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1905- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1906: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1907-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1908-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1909-pub struct FooServerMessage { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1910- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1911: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1912-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1913-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1914-pub struct BarRequest { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1915- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1916: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1917-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1918-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1919-pub struct BarResponse { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1920- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1921: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1922-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1923-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1924-pub struct TestJsonName { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1937- #[prost(int32, optional, tag = "7")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1938- pub fieldname7: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1939- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1940: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1941-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1942-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1943-pub struct TestHugeFieldNumbers { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1965- ::prost::alloc::string::String, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1966- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1967- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1968: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1969- #[prost( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1970- oneof = "test_huge_field_numbers::OneofField", +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1971- tags = "536870011, 536870012, 536870013, 536870014" +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1979- #[prost(int32, optional, tag = "536870009")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1980- pub group_a: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1981- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:1982: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1983- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1984- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-1985- pub enum OneofField { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2014- #[prost(int32, optional, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2015- pub field10: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2016- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2017: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2018-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2019-/// NOTE: Intentionally nested to mirror go/glep. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2020-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2024- test_nested_group_extension_outer::Layer1OptionalGroup, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2025- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2026- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2027: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2028-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2029-/// Nested message and enum types in `TestNestedGroupExtensionOuter`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2030-pub mod test_nested_group_extension_outer { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2039- layer1_optional_group::Layer2AnotherOptionalRepeatedGroup, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2040- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2041- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2042: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2043- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2044- /// Nested message and enum types in `Layer1OptionalGroup`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2045- pub mod layer1_optional_group { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2048- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2049- pub another_field: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2050- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2051: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2052- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2053- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2054- pub struct Layer2AnotherOptionalRepeatedGroup { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2055- #[prost(string, optional, tag = "5")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2056- pub but_why_tho: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2057- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2058: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2059- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2060- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2061-} +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2064- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2065- pub inner_name: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2066- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2067: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2068-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2069-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2070-pub struct TestExtensionRangeSerialize { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2077- #[prost(int32, optional, tag = "13")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2078- pub foo_four: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2079- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2080: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2081-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2082-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2083-pub struct TestVerifyInt32Simple { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2090- #[prost(int32, optional, tag = "64")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2091- pub optional_int32_64: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2092- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2093: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2094-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2095-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2096-pub struct TestVerifyInt32 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2107- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2108- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2109- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2110: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2111-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2112-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2113-pub struct TestVerifyMostlyInt32 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2130- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2131- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2132- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2133: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2134-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2135-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2136-pub struct TestVerifyMostlyInt32BigFieldNumber { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2155- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2156- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2157- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2158: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2159-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2160-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2161-pub struct TestVerifyUint32Simple { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2168- #[prost(uint32, optional, tag = "64")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2169- pub optional_uint32_64: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2170- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2171: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2172-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2173-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2174-pub struct TestVerifyUint32 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2185- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2186- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2187- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2188: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2189-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2190-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2191-pub struct TestVerifyOneUint32 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2202- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2203- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2204- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2205: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2206-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2207-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2208-pub struct TestVerifyOneInt32BigFieldNumber { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2221- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2222- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2223- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2224: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2225-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2226-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2227-pub struct TestVerifyInt32BigFieldNumber { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2242- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2243- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2244- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2245: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2246-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2247-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2248-pub struct TestVerifyUint32BigFieldNumber { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2263- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2264- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2265- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2266: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2267-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2268-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2269-pub struct TestVerifyBigFieldNumberUint32 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2272- test_verify_big_field_number_uint32::Nested, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2273- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2274- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2275: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2276-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2277-/// Nested message and enum types in `TestVerifyBigFieldNumberUint32`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2278-pub mod test_verify_big_field_number_uint32 { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2299- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2300- pub repeated_nested: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2301- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2302: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2303- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2304-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2305-/// This message contains different kind of enums to exercise the different +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2442- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2443- pub other_field: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2444- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2445: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2446-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2447-/// Nested message and enum types in `EnumParseTester`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2448-pub mod enum_parse_tester { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2734- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2735- pub other_field: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2736- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2737: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2738-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2739-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2740-pub struct Int32ParseTester { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2760- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2761- pub other_field: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2762- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2763: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2764-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2765-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2766-pub struct Int64ParseTester { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2786- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2787- pub other_field: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2788- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2789: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2790-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2791-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2792-pub struct InlinedStringIdxRegressionProto { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2806- #[prost(bytes = "vec", optional, tag = "4")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2807- pub str3: ::core::option::Option<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2808- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2809: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2810-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2811-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2812-pub struct StringParseTester { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2829- ::prost::alloc::string::String, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2830- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2831- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2832: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2833-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2834-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2835-pub struct BadFieldNames { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2838- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2839- pub r#for: ::core::option::Option, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2840- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2841: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2842-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2843-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2844-pub struct TestNestedMessageRedaction { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2851- ::prost::alloc::string::String, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2852- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2853- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2854: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2855-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2856-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2857-pub struct RedactedFields { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2890- ::prost::alloc::string::String, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2891- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2892- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2893: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2894-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2895-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2896-pub struct TestCord { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2901- ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2902- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2903- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2904: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2905-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2906-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2907-pub struct TestPackedEnumSmallRange { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2912- )] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2913- pub vals: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2914- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2915: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2916-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2917-/// Nested message and enum types in `TestPackedEnumSmallRange`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2918-pub mod test_packed_enum_small_range { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2962-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2963-pub struct EnumsForBenchmark { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2964- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:2965: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2966-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2967-/// Nested message and enum types in `EnumsForBenchmark`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-2968-pub mod enums_for_benchmark { +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-3269- #[prost(string, repeated, tag = "32")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-3270- pub repeated_string_32: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-3271- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs:3272: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-3273-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-3274-#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_unittest.rs-3275-#[repr(i32)] +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-333- #[prost(int32, tag = "418")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-334- pub field_name18: i32, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-335- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs:336: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-337- #[prost( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-338- oneof = "test_all_types_proto3::OneofField", +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-339- tags = "111, 112, 113, 114, 115, 116, 117, 118, 119, 120" +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-351- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-352- >, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-353- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs:354: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-355- } +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-356- #[derive( +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-357- Clone, +-- +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-464- #[prost(int32, tag = "1")] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-465- pub c: i32, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-466- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs:467: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-468-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-469-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-470-pub struct NullHypothesisProto3 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-471- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs:472: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-473-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-474-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-475-pub struct EnumOnlyProto3 { +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-476- #[prost(unknown)] +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs:477: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-478-} +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-479-/// Nested message and enum types in `EnumOnlyProto3`. +target/debug/build/protobuf-ae5b5d3810e9d693/out/protobuf_test_messages.proto3.rs-480-pub mod enum_only_proto3 { +-- +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-6-} +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-968906b8c0681171/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-6-} +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-29050db8120332b7/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-6-} +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-83ba4f47c0673d02/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-6-} +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-a6d6ffa33dc5023c/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-6-} +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-b10b7713ae41b05d/out/unknown_fields.rs-19-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-104- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-105- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-106- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-110- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-114- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-115- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-112- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-113- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-114- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:115: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-116- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:117: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-118- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:119: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-120- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:121: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-122- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-123- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-124- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-311- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-312- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-313- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:314: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-315- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:316: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-317- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:318: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-319- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:320: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-321- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-322- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-323- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-584- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-585- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-586- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:587: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-588- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:589: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-590- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:591: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-592- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:593: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-594- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-595- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-596- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-104- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-105- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-106- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-110- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-114- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-115- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-104- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-105- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-106- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-110- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-114- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-115- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-104- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-105- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-106- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-110- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-114- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-115- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-104- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-105- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-106- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-110- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-114- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-115- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-149- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-150- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-151- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:152: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-153- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:154: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-155- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:156: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-157- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:158: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-159- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-160- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-161- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-332- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-333- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-334- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:335: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-336- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:337: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-338- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:339: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-340- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:341: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-342- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-343- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-344- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-544- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-545- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-546- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:547: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-548- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:549: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-550- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:551: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-552- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:553: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-554- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-555- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-556- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-104- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-105- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-106- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-110- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-114- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-115- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-238- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-239- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-240- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:241: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-242- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:243: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-244- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:245: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-246- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:247: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-248- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-249- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-250- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-437- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-438- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-439- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:440: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-441- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:442: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-443- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:444: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-445- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:446: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-447- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-448- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-449- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-811- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-812- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-813- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:814: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-815- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:816: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-817- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:818: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-819- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:820: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-821- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-822- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-823- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1024- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1025- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1026- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1027: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1028- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1029: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1030- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1031: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1032- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1033: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1034- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1035- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1036- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1323- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1324- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1325- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1326: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1327- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1328: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1329- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1330: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1331- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1332: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1333- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1334- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1335- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-128- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-129- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-130- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:131: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-132- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:133: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-134- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:135: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-136- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:137: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-138- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-139- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-140- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-303- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-304- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-305- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:306: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-307- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:308: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-309- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:310: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-311- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:312: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-313- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-314- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-315- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-478- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-479- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-480- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:481: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-482- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:483: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-484- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:485: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-486- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:487: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-488- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-489- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-490- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-659- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-660- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-661- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:662: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-663- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:664: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-665- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:666: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-667- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:668: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-669- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-670- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-671- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-834- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-835- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-836- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:837: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-838- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:839: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-840- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:841: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-842- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:843: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-844- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-845- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-846- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1009- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1010- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1011- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1012: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1013- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1014: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1015- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1016: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1017- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1018: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1019- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1020- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1021- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1184- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1185- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1186- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1187: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1188- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1189: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1190- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1191: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1192- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1193: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1194- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1195- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1196- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1359- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1360- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1361- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1362: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1363- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1364: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1365- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1366: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1367- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1368: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1369- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1370- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1371- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1540- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1541- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1542- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1543: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1544- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1545: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1546- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1547: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1548- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1549: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1550- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1551- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1552- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-311-FileOptions_OptimizeMode GetOptimizeFor(const FileDescriptor* file, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-312- const Options& options); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-313- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h:314:// Determines whether unknown fields will be stored in an UnknownFieldSet or +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-315-// a string. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h:316:inline bool UseUnknownFieldSet(const FileDescriptor* file, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-317- const Options& options) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-318- return GetOptimizeFor(file, options) != FileOptions::LITE_RUNTIME; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-319-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-345- FileDescriptorLegacy::Syntax::SYNTAX_PROTO2; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-346-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-347- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h:348:// Whether unknown enum values are kept (i.e., not stored in UnknownFieldSet +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-349-// but in the message and can be queried using additional getters that return +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-350-// ints. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-351-inline bool SupportUnknownEnumValue(const FieldDescriptor* field) { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-137- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-138- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-139- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:140: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-141- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:142: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-143- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:144: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-145- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:146: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-147- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-148- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-149- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-154- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-155- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-156- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:157: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-158- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:159: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-160- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:161: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-162- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:163: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-164- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-165- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-166- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-376- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-377- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-378- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:379: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-380- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:381: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-382- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:383: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-384- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:385: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-386- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-387- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-388- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-614- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-615- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-616- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:617: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-618- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:619: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-620- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:621: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-622- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:623: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-624- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-625- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-626- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-853- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-854- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-855- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:856: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-857- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:858: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-859- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:860: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-861- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:862: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-863- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-864- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-865- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-106- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-107- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-108- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:109: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-110- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:111: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-112- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:113: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-114- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:115: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-116- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-117- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-118- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2909-// different answer depending on the language. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2910-namespace cpp { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2911-// Returns true if 'enum' semantics are such that unknown values are preserved +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h:2912:// in the enum field itself, rather than going to the UnknownFieldSet. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2913-PROTOBUF_EXPORT bool HasPreservingUnknownEnumSemantics( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2914- const FieldDescriptor* field); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2915- +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-735- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-736- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-737- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:738: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-739- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:740: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-741- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:742: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-743- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:744: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-745- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-746- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-747- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-931- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-932- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-933- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:934: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-935- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:936: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-937- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:938: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-939- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:940: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-941- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-942- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-943- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1205- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1206- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1207- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1208: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1209- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1210: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1211- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1212: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1213- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1214: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1215- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1216- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1217- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1469- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1470- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1471- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1472: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1473- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1474: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1475- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1476: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1477- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1478: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1479- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1480- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1481- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1665- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1666- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1667- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1668: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1669- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1670: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1671- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1672: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1673- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1674: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1675- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1676- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1677- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2213- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2214- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2215- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2216: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2217- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2218: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2219- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2220: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2221- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2222: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2223- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2224- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2225- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2454- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2455- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2456- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2457: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2458- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2459: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2460- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2461: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2462- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2463: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2464- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2465- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2466- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2644- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2645- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2646- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2647: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2648- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2649: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2650- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2651: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2652- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2653: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2654- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2655- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2656- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2834- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2835- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2836- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2837: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2838- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2839: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2840- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2841: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2842- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2843: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2844- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2845- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2846- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3116- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3117- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3118- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3119: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3120- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3121: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3122- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3123: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3124- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3125: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3126- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3127- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3128- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3301- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3302- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3303- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3304: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3305- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3306: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3307- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3308: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3309- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3310: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3311- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3312- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3313- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3486- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3487- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3488- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3489: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3490- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3491: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3492- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3493: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3494- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3495: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3496- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3497- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3498- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3680- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3681- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3682- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3683: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3684- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3685: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3686- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3687: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3688- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3689: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3690- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3691- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3692- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4073- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4074- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4075- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4076: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4077- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4078: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4079- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4080: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4081- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4082: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4083- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4084- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4085- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4453- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4454- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4455- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4456: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4457- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4458: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4459- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4460: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4461- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4462: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4463- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4464- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4465- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4880- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4881- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4882- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4883: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4884- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4885: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4886- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4887: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4888- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4889: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4890- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4891- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4892- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5325- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5326- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5327- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5328: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5329- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5330: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5331- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5332: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5333- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5334: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5335- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5336- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5337- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6046- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6047- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6048- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6049: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6050- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6051: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6052- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6053: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6054- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6055: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6056- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6057- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6058- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6677- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6678- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6679- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6680: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6681- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6682: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6683- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6684: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6685- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6686: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6687- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6688- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6689- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6889- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6890- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6891- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6892: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6893- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6894: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6895- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6896: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6897- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6898: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6899- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6900- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6901- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7324- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7325- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7326- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7327: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7328- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7329: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7330- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7331: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7332- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7333: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7334- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7335- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7336- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7730- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7731- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7732- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7733: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7734- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7735: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7736- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7737: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7738- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7739: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7740- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7741- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7742- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8149- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8150- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8151- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8152: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8153- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8154: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8155- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8156: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8157- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8158: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8159- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8160- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8161- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8349- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8350- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8351- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8352: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8353- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8354: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8355- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8356: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8357- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8358: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8359- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8360- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8361- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8613- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8614- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8615- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8616: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8617- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8618: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8619- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8620: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8621- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8622: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8623- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8624- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8625- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9011- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9012- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9013- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9014: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9015- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9016: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9017- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9018: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9019- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9020: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9021- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9022- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9023- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9224- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9225- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9226- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9227: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9228- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9229: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9230- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9231: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9232- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9233: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9234- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9235- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9236- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9431- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9432- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9433- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9434: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9435- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9436: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9437- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9438: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9439- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9440: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9441- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9442- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9443- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9651- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9652- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9653- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9654: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9655- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9656: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9657- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9658: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9659- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9660: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9661- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9662- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9663- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9923- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9924- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9925- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9926: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9927- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9928: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9929- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9930: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9931- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9932: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9933- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9934- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9935- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10296- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10297- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10298- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10299: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10300- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10301: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10302- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10303: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10304- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10305: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10306- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10307- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10308- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10714- return *this; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10715- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10716- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10717: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10718- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10719: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10720- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10721: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10722- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10723: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10724- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10725- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10726- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-52-class Message; // message.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-53-class MessageFactory; // message.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-54-class Reflection; // message.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h:55:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-56-class FeatureSet; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-57-namespace internal { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-58-class FieldSkipper; // wire_format_lite.h +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-89-// corresponding field of the message has been initialized. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-90-// The bit for field index i is obtained by the expression: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-91-// has_bits[i / 32] & (1 << (i % 32)) +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h:92:// unknown_fields_offset: Offset in the message of the UnknownFieldSet for +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-93-// the message. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-94-// extensions_offset: Offset in the message of the ExtensionSet for the +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-95-// message, or -1 if the message type has no extension +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-326- const Metadata& metadata); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-327- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-328-// These cannot be in lite so we put them in the reflection. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h:329:PROTOBUF_EXPORT void UnknownFieldSetSerializer(const uint8_t* base, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-330- uint32_t offset, uint32_t tag, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-331- uint32_t has_offset, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-332- io::CodedOutputStream* output); +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-34-namespace protobuf { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-35- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-36-class Message; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h:37:class UnknownFieldSet; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-38- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-39-namespace internal { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-40- +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-628- // +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-629- // This function parses a field from incoming data based on metadata stored in +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-630- // the message definition. If the field is not defined in the message, it is +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h:631: // stored in either the ExtensionSet (if applicable) or the UnknownFieldSet. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-632- // +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-633- // NOTE: Currently, this function only calls the table-level fallback +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-634- // function, so it should only be called as the fallback from fast table +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-112- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-113- ~MapEntry() override { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-114- if (GetArena() != nullptr) return; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h:115: Message::_internal_metadata_.template Delete(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-116- KeyTypeHandler::DeleteNoArena(key_); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-117- ValueTypeHandler::DeleteNoArena(value_); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-118- } +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-145-class CachedSize; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-146-struct TailCallTableInfo; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-147-} // namespace internal +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h:148:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-149-namespace io { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-150-class ZeroCopyInputStream; // zero_copy_stream.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-151-class ZeroCopyOutputStream; // zero_copy_stream.h +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-275- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-276- // Clears all unknown fields from this message and all embedded messages. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-277- // Normally, if unknown tag numbers are encountered when parsing a message, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h:278: // the tag and value are stored in the message's UnknownFieldSet and +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-279- // then written back out when the message is serialized. This allows servers +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-280- // which simply route messages to other servers to pass through messages +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-281- // that have new field definitions which they don't yet know about. However, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-427- Reflection& operator=(const Reflection&) = delete; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-428- ~Reflection(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-429- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h:430: // Get the UnknownFieldSet for the message. This contains fields which +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-431- // were seen when the Message was parsed but were not recognized according +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-432- // to the Message's definition. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h:433: const UnknownFieldSet& GetUnknownFields(const Message& message) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h:434: // Get a mutable pointer to the UnknownFieldSet for the message. This +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-435- // contains fields which were seen when the Message was parsed but were not +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-436- // recognized according to the Message's definition. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h:437: UnknownFieldSet* MutableUnknownFields(Message* message) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-438- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-439- // Estimate the amount of memory used by the message object. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-440- size_t SpaceUsedLong(const Message& message) const; +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-895- // +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-896- // Generic code that uses reflection to handle messages with enum fields +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-897- // should check this flag before using the integer-based setter, and either +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h:898: // downgrade to a compatible value or use the UnknownFieldSet if not. For +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-899- // example: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-900- // +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/message.h-901- // int new_value = GetValueFromApplicationLogic(); +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-23-namespace google { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-24-namespace protobuf { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-25- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:26:class UnknownFieldSet; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-27- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-28-namespace internal { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-29- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-30-// This is the representation for messages that support arena allocation. It +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-31-// uses a tagged pointer to either store the owning Arena pointer, if there are +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-32-// no unknown fields, or a pointer to a block of memory with both the owning +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:33:// Arena pointer and the UnknownFieldSet, if there are unknown fields. Besides, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-34-// it also uses the tag to distinguish whether the owning Arena pointer is also +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-35-// used by sub-structure allocation. This optimization allows for +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-36-// "zero-overhead" storage of the Arena pointer, relative to the above baseline +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-208-template <> +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-209-PROTOBUF_EXPORT void InternalMetadata::DoSwap(std::string* other); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-210- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:211:// Instantiated once in message.cc (where the definition of UnknownFieldSet is +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-212-// known) to prevent much duplication across translation units of a large build. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-213-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:214:InternalMetadata::DoClear(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-215-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:216:InternalMetadata::DoMergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-217-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:218:InternalMetadata::DoSwap(UnknownFieldSet* other); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-219-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:220:InternalMetadata::DeleteOutOfLineHelper(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:221:extern template PROTOBUF_EXPORT UnknownFieldSet* +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:222:InternalMetadata::mutable_unknown_fields_slow(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-223- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-224-// This helper RAII class is needed to efficiently parse unknown fields. We +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-225-// should only call mutable_unknown_fields if there are actual unknown fields. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-226-// The obvious thing to just use a stack string and swap it at the end of +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-227-// the parse won't work, because the destructor of StringOutputStream needs to +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-228-// be called before we can modify the string (it check-fails). Using +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:229:// LiteUnknownFieldSetter setter(&_internal_metadata_); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-230-// StringOutputStream stream(setter.buffer()); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-231-// guarantees that the string is only swapped after stream is destroyed. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:232:class PROTOBUF_EXPORT LiteUnknownFieldSetter { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-233- public: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:234: explicit LiteUnknownFieldSetter(InternalMetadata* metadata) +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-235- : metadata_(metadata) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-236- if (metadata->have_unknown_fields()) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-237- buffer_.swap(*metadata->mutable_unknown_fields()); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-238- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-239- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:240: ~LiteUnknownFieldSetter() { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-241- if (!buffer_.empty()) +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-242- metadata_->mutable_unknown_fields()->swap(buffer_); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-243- } +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-41-namespace google { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-42-namespace protobuf { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-43- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:44:class UnknownFieldSet; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-45-class DescriptorPool; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-46-class MessageFactory; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-47- +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-52-PROTOBUF_EXPORT void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-53- std::string* s); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-54-// Inline because it is just forwarding to s->WriteVarint +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:55:inline void WriteVarint(uint32_t num, uint64_t val, UnknownFieldSet* s); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-56-inline void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:57: UnknownFieldSet* s); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-58- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-59- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-60-// The basic abstraction the parser is designed for is a slight modification +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1413- std::string* unknown, const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1414-// This is a helper to for the UnknownGroupLiteParse but is actually also +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1415-// useful in the generated code. It uses overload on std::string* vs +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:1416:// UnknownFieldSet* to make the generated code isomorphic between full and lite. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1417-PROTOBUF_NODISCARD PROTOBUF_EXPORT const char* UnknownFieldParse( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1418- uint32_t tag, std::string* unknown, const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1419- +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-97- // output stream. Returns false if printing fails. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-98- static bool Print(const Message& message, io::ZeroCopyOutputStream* output); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-99- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:100: // Print the fields in an UnknownFieldSet. They are printed by tag number +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-101- // only. Embedded messages are heuristically identified by attempting to +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-102- // parse them. Returns false if printing fails. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:103: static bool PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-104- io::ZeroCopyOutputStream* output); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-105- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-106- // Like Print(), but outputs directly to a string. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-110- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-111- // Like PrintUnknownFields(), but outputs directly to a string. Returns +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-112- // false if printing fails. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:113: static bool PrintUnknownFieldsToString(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-114- std::string* output); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-115- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-116- // Outputs a textual representation of the value of the field supplied on +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-304- bool Print(const Message& message, io::ZeroCopyOutputStream* output, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-305- internal::FieldReporterLevel reporter) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-306- // Like TextFormat::PrintUnknownFields +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:307: bool PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-308- io::ZeroCopyOutputStream* output) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-309- // Like TextFormat::PrintToString +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-310- bool PrintToString(const Message& message, std::string* output) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-311- // Like TextFormat::PrintUnknownFieldsToString +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:312: bool PrintUnknownFieldsToString(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-313- std::string* output) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-314- // Like TextFormat::PrintFieldValueToString +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-315- void PrintFieldValueToString(const Message& message, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-496- const FieldDescriptor* field, int index, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-497- BaseTextGenerator* generator) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-498- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:499: // Print the fields in an UnknownFieldSet. They are printed by tag number +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-500- // only. Embedded messages are heuristically identified by attempting to +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-501- // parse them (subject to the recursion budget). +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:502: void PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-503- BaseTextGenerator* generator, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-504- int recursion_budget) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-505- +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-47-class Message; // message.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-48-class UnknownField; // below +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-49- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:50:// An UnknownFieldSet contains fields that were encountered while parsing a +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-51-// message but were not defined by its type. Keeping track of these can be +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-52-// useful, especially in that they may be written if the message is serialized +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-53-// again without being cleared in between. This means that software which +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-54-// simply receives messages and forwards them to other servers does not need +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-55-// to be updated every time a new field is added to the message definition. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-56-// +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:57:// To get the UnknownFieldSet attached to any message, call +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-58-// Reflection::GetUnknownFields(). +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-59-// +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-60-// This class is necessarily tied to the protocol buffer wire format, unlike +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-61-// the Reflection interface which is independent of any serialization scheme. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:62:class PROTOBUF_EXPORT UnknownFieldSet { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-63- public: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:64: UnknownFieldSet(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:65: UnknownFieldSet(const UnknownFieldSet&) = delete; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:66: UnknownFieldSet& operator=(const UnknownFieldSet&) = delete; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:67: ~UnknownFieldSet(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-68- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-69- // Remove all fields. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-70- inline void Clear(); +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-75- // Is this set empty? +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-76- inline bool empty() const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-77- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:78: // Merge the contents of some other UnknownFieldSet with this one. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:79: void MergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-80- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-81- // Similar to above, but this function will destroy the contents of other. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:82: void MergeFromAndDestroy(UnknownFieldSet* other); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-83- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:84: // Merge the contents an UnknownFieldSet with the UnknownFieldSet in +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:85: // *metadata, if there is one. If *metadata doesn't have an UnknownFieldSet +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-86- // then add one to it and make it be a copy of the first arg. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:87: static void MergeToInternalMetadata(const UnknownFieldSet& other, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-88- internal::InternalMetadata* metadata); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-89- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:90: // Swaps the contents of some other UnknownFieldSet with this one. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:91: inline void Swap(UnknownFieldSet* x); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-92- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-93- // Computes (an estimate of) the total number of bytes currently used for +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-94- // storing the unknown fields in memory. Does NOT include +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-104- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-105- int SpaceUsed() const { return internal::ToIntSize(SpaceUsedLong()); } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-106- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:107: // Returns the number of fields present in the UnknownFieldSet. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-108- inline int field_count() const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-109- // Get a field in the set, where 0 <= index < field_count(). The fields +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-110- // appear in the order in which they were added. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-121- void AddFixed64(int number, uint64_t value); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-122- void AddLengthDelimited(int number, const std::string& value); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-123- std::string* AddLengthDelimited(int number); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:124: UnknownFieldSet* AddGroup(int number); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-125- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-126- // Adds an unknown field from another set. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-127- void AddField(const UnknownField& field); +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-156- bool SerializeToString(std::string* output) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-157- bool SerializeToCord(absl::Cord* output) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-158- bool SerializeToCodedStream(io::CodedOutputStream* output) const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:159: static const UnknownFieldSet& default_instance(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-160- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-161- private: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-162- // For InternalMergeFrom +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-163- friend class UnknownField; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:164: // Merges from other UnknownFieldSet. This method assumes, that this object +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-165- // is newly created and has no fields. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:166: void InternalMergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-167- void ClearFallback(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-168- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-169- template AddVarint(num, val); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-197-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-198-inline void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:199: UnknownFieldSet* unknown) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-200- unknown->AddLengthDelimited(num)->assign(val.data(), val.size()); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-201-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-202- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-203-PROTOBUF_EXPORT +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:204:const char* UnknownGroupParse(UnknownFieldSet* unknown, const char* ptr, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-205- ParseContext* ctx); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-206-PROTOBUF_EXPORT +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:207:const char* UnknownFieldParse(uint64_t tag, UnknownFieldSet* unknown, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-208- const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-209- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-210-} // namespace internal +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-211- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:212:// Represents one field in an UnknownFieldSet. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-213-class PROTOBUF_EXPORT UnknownField { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-214- public: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-215- enum Type { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-233- inline uint32_t fixed32() const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-234- inline uint64_t fixed64() const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-235- inline const std::string& length_delimited() const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:236: inline const UnknownFieldSet& group() const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-237- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-238- inline void set_varint(uint64_t value); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-239- inline void set_fixed32(uint32_t value); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-240- inline void set_fixed64(uint64_t value); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-241- inline void set_length_delimited(const std::string& value); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-242- inline std::string* mutable_length_delimited(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:243: inline UnknownFieldSet* mutable_group(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-244- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-245- inline size_t GetLengthDelimitedSize() const; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-246- uint8_t* InternalSerializeLengthDelimitedNoTag( +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-268- uint32_t fixed32_; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-269- uint64_t fixed64_; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-270- mutable union LengthDelimited length_delimited_; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:271: UnknownFieldSet* group_; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-272- } data_; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-273-}; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-274- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-275-// =================================================================== +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-276-// inline implementations +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-277- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:278:inline UnknownFieldSet::UnknownFieldSet() {} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-279- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:280:inline UnknownFieldSet::~UnknownFieldSet() { Clear(); } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-281- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:282:inline void UnknownFieldSet::ClearAndFreeMemory() { Clear(); } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-283- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:284:inline void UnknownFieldSet::Clear() { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-285- if (!fields_.empty()) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-286- ClearFallback(); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-287- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-288-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-289- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:290:inline bool UnknownFieldSet::empty() const { return fields_.empty(); } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-291- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:292:inline void UnknownFieldSet::Swap(UnknownFieldSet* x) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-293- fields_.swap(x->fields_); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-294-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-295- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:296:inline int UnknownFieldSet::field_count() const { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-297- return static_cast(fields_.size()); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-298-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:299:inline const UnknownField& UnknownFieldSet::field(int index) const { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-300- return (fields_)[static_cast(index)]; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-301-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:302:inline UnknownField* UnknownFieldSet::mutable_field(int index) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-303- return &(fields_)[static_cast(index)]; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-304-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-305- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:306:inline void UnknownFieldSet::AddLengthDelimited(int number, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-307- const std::string& value) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-308- AddLengthDelimited(number)->assign(value); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-309-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-332- assert(type() == TYPE_LENGTH_DELIMITED); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-333- return *data_.length_delimited_.string_value; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-334-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:335:inline const UnknownFieldSet& UnknownField::group() const { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-336- assert(type() == TYPE_GROUP); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-337- return *data_.group_; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-338-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-357- assert(type() == TYPE_LENGTH_DELIMITED); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-358- return data_.length_delimited_.string_value; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-359-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:360:inline UnknownFieldSet* UnknownField::mutable_group() { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-361- assert(type() == TYPE_GROUP); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-362- return data_.group_; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-363-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-364-template +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:365:bool UnknownFieldSet::MergeFromMessage(const MessageType& message) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-366- // SFINAE will route to the right version. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-367- return InternalMergeFromMessage(message); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-368-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-188- const Message* map_entry1 = nullptr; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-189- const Message* map_entry2 = nullptr; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-190- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:191: // For unknown fields, these are the pointers to the UnknownFieldSet +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-192- // containing the unknown fields. In certain cases (e.g. proto1's +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-193- // MessageSet, or nested groups of unknown fields), these may differ from +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:194: // the messages' internal UnknownFieldSets. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:195: const UnknownFieldSet* unknown_field_set1 = nullptr; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:196: const UnknownFieldSet* unknown_field_set2 = nullptr; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-197- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-198- // For unknown fields, these are the index of the field within the +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:199: // UnknownFieldSets. One or the other will be -1 when +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-200- // reporting an addition or deletion. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-201- int unknown_field_index1 = -1; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-202- int unknown_field_index2 = -1; +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-781- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-782- // Compares all the unknown fields in two messages. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-783- bool CompareUnknownFields(const Message& message1, const Message& message2, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:784: const UnknownFieldSet&, const UnknownFieldSet&, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-785- std::vector* parent_fields); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-786- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-787- // Compares the specified messages for the requested field lists. The field +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-37-namespace google { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-38-namespace protobuf { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-39-class MapKey; // map_field.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:40:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-41-} // namespace protobuf +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-42-} // namespace google +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-43- +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-128- // positioned immediately after the tag. If unknown_fields is non-nullptr, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-129- // the contents of the field will be added to it. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-130- static bool SkipField(io::CodedInputStream* input, uint32_t tag, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:131: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-132- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-133- // Reads and ignores a message from the input. If unknown_fields is +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-134- // non-nullptr, the contents will be added to it. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-135- static bool SkipMessage(io::CodedInputStream* input, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:136: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-137- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-138- // Read a packed enum field. If the is_valid function is not nullptr, values +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-139- // for which is_valid(value) returns false are appended to +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-141- static bool ReadPackedEnumPreserveUnknowns(io::CodedInputStream* input, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-142- uint32_t field_number, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-143- bool (*is_valid)(int), +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:144: UnknownFieldSet* unknown_fields, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-145- RepeatedField* values); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-146- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:147: // Write the contents of an UnknownFieldSet to the output. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:148: static void SerializeUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-149- io::CodedOutputStream* output) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-150- output->SetCur(InternalSerializeUnknownFieldsToArray( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-151- unknown_fields, output->Cur(), output->EpsCopy())); +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-156- // +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-157- // Returns a pointer past the last written byte. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-158- static uint8_t* SerializeUnknownFieldsToArray( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:159: const UnknownFieldSet& unknown_fields, uint8_t* target) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-160- io::EpsCopyOutputStream stream( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-161- target, static_cast(ComputeUnknownFieldsSize(unknown_fields)), +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-162- io::CodedOutputStream::IsDefaultSerializationDeterministic()); +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-164- &stream); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-165- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-166- static uint8_t* InternalSerializeUnknownFieldsToArray( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:167: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-168- io::EpsCopyOutputStream* stream); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-169- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-170- // Same thing except for messages that have the message_set_wire_format +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-171- // option. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-172- static void SerializeUnknownMessageSetItems( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:173: const UnknownFieldSet& unknown_fields, io::CodedOutputStream* output) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-174- output->SetCur(InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-175- unknown_fields, output->Cur(), output->EpsCopy())); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-176- } +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-180- // +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-181- // Returns a pointer past the last written byte. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-182- static uint8_t* SerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:183: const UnknownFieldSet& unknown_fields, uint8_t* target); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-184- static uint8_t* InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:185: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-186- io::EpsCopyOutputStream* stream); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-187- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:188: // Compute the size of the UnknownFieldSet on the wire. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:189: static size_t ComputeUnknownFieldsSize(const UnknownFieldSet& unknown_fields); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-190- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-191- // Same thing except for messages that have the message_set_wire_format +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-192- // option. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-193- static size_t ComputeUnknownMessageSetItemsSize( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:194: const UnknownFieldSet& unknown_fields); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-195- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-196- // Helper functions for encoding and decoding tags. (Inlined below and in +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-197- // _inl.h) +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-268- // Skip a MessageSet field. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-269- static bool SkipMessageSetField(io::CodedInputStream* input, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-270- uint32_t field_number, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:271: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-272- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-273- // Parse a MessageSet field. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-274- static bool ParseAndMergeMessageSetField(uint32_t field_number, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-283- const FieldDescriptor* field); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-284-}; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-285- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:286:// Subclass of FieldSkipper which saves skipped fields to an UnknownFieldSet. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:287:class PROTOBUF_EXPORT UnknownFieldSetFieldSkipper : public FieldSkipper { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-288- public: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:289: UnknownFieldSetFieldSkipper(UnknownFieldSet* unknown_fields) +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-290- : unknown_fields_(unknown_fields) {} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:291: ~UnknownFieldSetFieldSkipper() override {} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-292- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-293- // implements FieldSkipper ----------------------------------------- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-294- bool SkipField(io::CodedInputStream* input, uint32_t tag) override; +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-296- void SkipUnknownEnum(int field_number, int value) override; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-297- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-298- protected: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:299: UnknownFieldSet* unknown_fields_; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-300-}; +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-301- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-302-// inline methods ==================================================== +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-362- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-363- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-364-inline uint8_t* InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:365: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-366- io::EpsCopyOutputStream* stream) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-367- return WireFormat::InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-368- unknown_fields, target, stream); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-369-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-370- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-371-inline size_t ComputeUnknownMessageSetItemsSize( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:372: const UnknownFieldSet& unknown_fields) { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-373- return WireFormat::ComputeUnknownMessageSetItemsSize(unknown_fields); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-374-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-375- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:376:// Compute the size of the UnknownFieldSet on the wire. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-377-PROTOBUF_EXPORT +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-378-size_t ComputeUnknownFieldsSize(const InternalMetadata& metadata, size_t size, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-379- CachedSize* cached_size); +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-161- // Skips a field value with the given tag. The input should start +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-162- // positioned immediately after the tag. Skipped values are simply +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-163- // discarded, not recorded anywhere. See WireFormat::SkipField() for a +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:164: // version that records to an UnknownFieldSet. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-165- static bool SkipField(io::CodedInputStream* input, uint32_t tag); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-166- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-167- // Skips a field value with the given tag. The input should start +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-172- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-173- // Reads and ignores a message from the input. Skipped values are simply +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-174- // discarded, not recorded anywhere. See WireFormat::SkipMessage() for a +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:175: // version that records to an UnknownFieldSet. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-176- static bool SkipMessage(io::CodedInputStream* input); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-177- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-178- // Reads and ignores a message from the input. Skipped values are recorded +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-755- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-756-// A class which deals with unknown values. The default implementation just +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-757-// discards them. WireFormat defines a subclass which writes to an +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:758:// UnknownFieldSet. This class is used by ExtensionSet::ParseField(), since +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:759:// ExtensionSet is part of the lite library but UnknownFieldSet is not. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-760-class PROTOBUF_EXPORT FieldSkipper { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-761- public: +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-762- FieldSkipper() {} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-770- virtual bool SkipMessage(io::CodedInputStream* input); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-771- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-772- // Deal with an already-parsed unrecognized enum value. The default +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:773: // implementation does nothing, but the UnknownFieldSet-based implementation +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-774- // saves it as an unknown varint. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-775- virtual void SkipUnknownEnum(int field_number, int value); +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-776-}; +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-4- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-5- pub e: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-6- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs:7: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-8-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-9-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-10-pub struct ImportMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-11- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-12- pub d: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-13- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs:14: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-15-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-16-#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest_import.rs-17-#[repr(i32)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-333- #[prost(int32, tag = "418")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-334- pub field_name18: i32, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-335- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs:336: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-337- #[prost( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-338- oneof = "test_all_types_proto3::OneofField", +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-339- tags = "111, 112, 113, 114, 115, 116, 117, 118, 119, 120" +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-351- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-352- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-353- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs:354: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-355- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-356- #[derive( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-357- Clone, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-464- #[prost(int32, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-465- pub c: i32, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-466- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs:467: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-468-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-469-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-470-pub struct NullHypothesisProto3 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-471- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs:472: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-473-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-474-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-475-pub struct EnumOnlyProto3 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-476- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs:477: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-478-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-479-/// Nested message and enum types in `EnumOnlyProto3`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto3.rs-480-pub mod enum_only_proto3 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-302- #[prost(int32, optional, tag = "418")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-303- pub field_name18: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-304- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:305: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-306- #[prost( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-307- oneof = "test_all_types_proto2::OneofField", +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-308- tags = "111, 112, 113, 114, 115, 116, 117, 118, 119" +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-320- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-321- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-322- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:323: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-324- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-325- /// groups +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-326- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-330- #[prost(uint32, optional, tag = "203")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-331- pub group_uint32: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-332- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:333: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-334- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-335- /// message_set test case. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-336- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-337- pub struct MessageSetCorrect { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-338- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:339: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-340- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-341- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-342- pub struct MessageSetCorrectExtension1 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-343- #[prost(string, optional, tag = "25")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-344- pub str: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-345- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:346: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-347- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-348- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-349- pub struct MessageSetCorrectExtension2 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-350- #[prost(int32, optional, tag = "9")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-351- pub i: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-352- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:353: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-354- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-355- #[derive( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-356- Clone, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-422- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-423- pub c: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-424- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:425: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-426-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-427-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-428-pub struct UnknownToTestAllTypes { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-439- #[prost(int32, repeated, packed = "false", tag = "1011")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-440- pub repeated_int32: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-441- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:442: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-443-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-444-/// Nested message and enum types in `UnknownToTestAllTypes`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-445-pub mod unknown_to_test_all_types { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-448- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-449- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-450- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:451: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-452- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-453-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-454-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-455-pub struct NullHypothesisProto2 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-456- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:457: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-458-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-459-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-460-pub struct EnumOnlyProto2 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-461- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:462: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-463-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-464-/// Nested message and enum types in `EnumOnlyProto2`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-465-pub mod enum_only_proto2 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-505- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-506- pub data: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-507- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:508: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-509-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-510-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-511-pub struct ProtoWithKeywords { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-516- #[prost(string, repeated, tag = "3")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-517- pub requires: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-518- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:519: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-520-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-521-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-522-pub struct TestAllRequiredTypesProto2 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-609- #[prost(bytes = "vec", required, tag = "255", default = "b\"joshua\"")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-610- pub default_bytes: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-611- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:612: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-613-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-614-/// Nested message and enum types in `TestAllRequiredTypesProto2`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-615-pub mod test_all_required_types_proto2 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-624- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-625- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-626- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:627: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-628- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-629- /// groups +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-630- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-634- #[prost(uint32, required, tag = "203")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-635- pub group_uint32: u32, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-636- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:637: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-638- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-639- /// message_set test case. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-640- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-641- pub struct MessageSetCorrect { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-642- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:643: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-644- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-645- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-646- pub struct MessageSetCorrectExtension1 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-647- #[prost(string, required, tag = "25")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-648- pub str: ::prost::alloc::string::String, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-649- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:650: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-651- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-652- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-653- pub struct MessageSetCorrectExtension2 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-654- #[prost(int32, required, tag = "9")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-655- pub i: i32, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-656- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs:657: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-658- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-659- #[derive( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_test_messages.proto2.rs-660- Clone, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-186- #[prost(string, optional, tag = "85", default = "123")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-187- pub default_cord: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-188- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:189: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-190- /// For oneof test +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-191- #[prost( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-192- oneof = "test_all_types::OneofField", +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-204- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-205- pub bb: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-206- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:207: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-208- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-209- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-210- pub struct OptionalGroup { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-211- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-212- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-213- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:214: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-215- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-216- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-217- pub struct RepeatedGroup { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-218- #[prost(int32, optional, tag = "47")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-219- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-220- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:221: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-222- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-223- #[derive( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-224- Clone, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-298- #[prost(message, optional, tag = "5")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-299- pub eager_child: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-300- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:301: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-302-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-303-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-304-pub struct TestDeprecatedFields { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-316- #[prost(message, optional, boxed, tag = "5")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-317- pub nested: ::core::option::Option<::prost::alloc::boxed::Box>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-318- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:319: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-320- #[prost(oneof = "test_deprecated_fields::OneofFields", tags = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-321- pub oneof_fields: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-322-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-332-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-333-pub struct TestDeprecatedMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-334- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:335: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-336-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-337-/// Define these after TestAllTypes to make sure the compiler can handle +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-338-/// that. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-343- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-344- pub d: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-345- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:346: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-347-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-348-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-349-pub struct TestReservedFields { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-350- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:351: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-352-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-353-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-354-pub struct TestAllExtensions { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-355- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:356: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-357-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-358-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-359-pub struct OptionalGroupExtension { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-360- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-361- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-362- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:363: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-364-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-365-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-366-pub struct RepeatedGroupExtension { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-367- #[prost(int32, optional, tag = "47")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-368- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-369- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:370: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-371-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-372-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-373-pub struct TestMixedFieldsAndExtensions { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-376- #[prost(fixed32, repeated, packed = "false", tag = "3")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-377- pub b: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-378- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:379: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-380-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-381-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-382-pub struct TestGroup { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-385- #[prost(enumeration = "ForeignEnum", optional, tag = "22")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-386- pub optional_foreign_enum: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-387- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:388: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-389-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-390-/// Nested message and enum types in `TestGroup`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-391-pub mod test_group { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-397- #[prost(int32, optional, tag = "89")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-398- pub zz: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-399- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:400: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-401- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-402-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-403-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-404-pub struct TestGroupExtension { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-405- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:406: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-407-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-408-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-409-pub struct TestNestedExtension { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-410- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:411: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-412-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-413-/// Nested message and enum types in `TestNestedExtension`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-414-pub mod test_nested_extension { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-417- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-418- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-419- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:420: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-421- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-422-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-423-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-429- #[prost(message, optional, tag = "3")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-430- pub optional_extension: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-431- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:432: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-433-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-434-/// Emulates wireformat data of TestChildExtension with dynamic extension +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-435-/// (DynamicExtension). +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-444- test_child_extension_data::NestedTestAllExtensionsData, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-445- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-446- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:447: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-448-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-449-/// Nested message and enum types in `TestChildExtensionData`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-450-pub mod test_child_extension_data { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-455- nested_test_all_extensions_data::NestedDynamicExtensions, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-456- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-457- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:458: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-459- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-460- /// Nested message and enum types in `NestedTestAllExtensionsData`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-461- pub mod nested_test_all_extensions_data { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-466- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-467- pub b: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-468- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:469: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-470- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-471- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-472-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-477- #[prost(message, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-478- pub child: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-479- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:480: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-481-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-482-/// Emulates wireformat data of TestNestedChildExtension with dynamic extension +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-483-/// (DynamicExtension). +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-488- #[prost(message, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-489- pub child: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-490- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:491: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-492-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-493-/// Required and closed enum fields are considered unknown fields if the value is +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-494-/// not valid. We need to make sure it functions as expected. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-500- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-501- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-502- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:503: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-504-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-505-/// TestRequiredEnum + using enum values that won't fit to 64 bitmask. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-506-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-511- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-512- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-513- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:514: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-515-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-516-/// Nested message and enum types in `TestRequiredEnumNoMask`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-517-pub mod test_required_enum_no_mask { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-572- #[prost(enumeration = "ForeignEnum", required, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-573- pub required_enum_1: i32, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-574- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:575: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-576-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-577-/// Nested message and enum types in `TestRequiredEnumMulti`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-578-pub mod test_required_enum_multi { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-651- #[prost(enumeration = "ForeignEnum", required, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-652- pub required_enum_1: i32, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-653- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:654: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-655-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-656-/// Nested message and enum types in `TestRequiredNoMaskMulti`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-657-pub mod test_required_no_mask_multi { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-777- #[prost(message, optional, tag = "34")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-778- pub optional_foreign: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-779- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:780: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-781-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-782-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-783-pub struct TestRequiredForeign { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-791- #[prost(message, optional, tag = "4")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-792- pub optional_lazy_message: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-793- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:794: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-795-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-796-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-797-pub struct TestRequiredMessage { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-802- #[prost(message, required, tag = "3")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-803- pub required_message: TestRequired, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-804- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:805: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-806-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-807-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-808-pub struct TestNestedRequiredForeign { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-824- #[prost(message, optional, tag = "9")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-825- pub required_no_mask: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-826- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:827: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-828-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-829-/// Test that we can use NestedMessage from outside TestAllTypes. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-830-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-832- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-833- pub foreign_nested: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-834- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:835: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-836-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-837-/// TestEmptyMessage is used to test unknown field support. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-838-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-839-pub struct TestEmptyMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-840- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:841: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-842-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-843-/// Like above, but declare all field numbers as potential extensions. No +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-844-/// actual extensions should ever be defined for this type. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-845-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-846-pub struct TestEmptyMessageWithExtensions { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-847- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:848: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-849-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-850-/// Needed for a Python test. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-851-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-852-pub struct TestPickleNestedMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-853- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:854: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-855-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-856-/// Nested message and enum types in `TestPickleNestedMessage`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-857-pub mod test_pickle_nested_message { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-860- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-861- pub bb: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-862- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:863: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-864- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-865- /// Nested message and enum types in `NestedMessage`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-866- pub mod nested_message { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-869- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-870- pub cc: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-871- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:872: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-873- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-874- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-875-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-876-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-877-pub struct TestMultipleExtensionRanges { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-878- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:879: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-880-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-881-/// Test that really large tag numbers don't break anything. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-882-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-888- #[prost(int32, optional, tag = "268435455")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-889- pub bb: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-890- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:891: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-892-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-893-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-894-pub struct TestRecursiveMessage { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-897- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-898- pub i: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-899- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:900: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-901-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-902-/// Test that mutual recursion works. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-903-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-911- #[prost(group, repeated, tag = "5")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-912- pub subgroupr: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-913- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:914: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-915-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-916-/// Nested message and enum types in `TestMutualRecursionA`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-917-pub mod test_mutual_recursion_a { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-920- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-921- pub b: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-922- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:923: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-924- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-925- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-926- pub struct SubGroup { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-930- #[prost(message, optional, tag = "4")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-931- pub not_in_this_scc: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-932- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:933: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-934- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-935- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-936- pub struct SubGroupR { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-937- #[prost(message, optional, tag = "6")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-938- pub payload: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-939- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:940: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-941- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-942-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-943-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-947- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-948- pub optional_int32: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-949- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:950: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-951-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-952-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-953-pub struct TestIsInitialized { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-954- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-955- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-956- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:957: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-958-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-959-/// Nested message and enum types in `TestIsInitialized`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-960-pub mod test_is_initialized { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-963- #[prost(group, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-964- pub subgroup: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-965- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:966: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-967- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-968- /// Nested message and enum types in `SubMessage`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-969- pub mod sub_message { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-972- #[prost(int32, required, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-973- pub i: i32, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-974- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:975: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-976- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-977- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-978-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-992- #[prost(group, optional, tag = "3")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-993- pub bar: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-994- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:995: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-996-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-997-/// Nested message and enum types in `TestDupFieldNumber`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-998-pub mod test_dup_field_number { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1001- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1002- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1003- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1004: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1005- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1006- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1007- pub struct Bar { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1008- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1009- pub a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1010- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1011: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1012- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1013-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1014-/// Additional messages for testing lazy fields. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1017- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1018- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1019- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1020: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1021-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1022-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1023-pub struct TestLazyMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1024- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1025- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1026- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1027: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1028-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1029-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1030-pub struct TestLazyMessageRepeated { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1031- #[prost(message, repeated, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1032- pub repeated_message: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1033- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1034: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1035-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1036-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1037-pub struct TestEagerMaybeLazy { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1042- #[prost(message, optional, tag = "3")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1043- pub message_baz: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1044- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1045: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1046-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1047-/// Nested message and enum types in `TestEagerMaybeLazy`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1048-pub mod test_eager_maybe_lazy { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1051- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1052- pub packed: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1053- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1054: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1055- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1056-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1057-/// Needed for a Python test. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1062- test_nested_message_has_bits::NestedMessage, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1063- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1064- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1065: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1066-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1067-/// Nested message and enum types in `TestNestedMessageHasBits`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1068-pub mod test_nested_message_has_bits { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1075- super::ForeignMessage, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1076- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1077- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1078: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1079- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1080-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1081-/// Test message with CamelCase field names. This violates Protocol Buffer +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1109- #[prost(string, repeated, tag = "12")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1110- pub repeated_cord_field: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1111- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1112: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1113-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1114-/// We list fields out of order, to ensure that we're using field number and not +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1115-/// field index to determine serialization order. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1126- test_field_orderings::NestedMessage, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1127- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1128- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1129: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1130-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1131-/// Nested message and enum types in `TestFieldOrderings`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1132-pub mod test_field_orderings { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1140- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1141- pub bb: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1142- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1143: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1144- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1145-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1146-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1148- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1149- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1150- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1151: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1152-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1153-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1154-pub struct TestExtensionOrderings2 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1155- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1156- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1157- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1158: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1159-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1160-/// Nested message and enum types in `TestExtensionOrderings2`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1161-pub mod test_extension_orderings2 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1164- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1165- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1166- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1167: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1168- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1169-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1170-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1241- #[prost(string, optional, tag = "27", default = "${unknown}")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1242- pub replacement_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1243- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1244: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1245-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1246-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1247-pub struct SparseEnumMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1248- #[prost(enumeration = "TestSparseEnum", optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1249- pub sparse_enum: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1250- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1251: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1252-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1253-/// Test String and Bytes: string is for valid UTF-8 strings +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1254-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1256- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1257- pub data: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1258- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1259: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1260-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1261-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1262-pub struct MoreString { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1263- #[prost(string, repeated, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1264- pub data: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1265- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1266: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1267-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1268-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1269-pub struct OneBytes { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1270- #[prost(bytes = "vec", optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1271- pub data: ::core::option::Option<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1272- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1273: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1274-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1275-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1276-pub struct MoreBytes { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1277- #[prost(bytes = "vec", repeated, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1278- pub data: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1279- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1280: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1281-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1282-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1283-pub struct ManyOptionalString { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1346- #[prost(string, optional, tag = "32")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1347- pub str32: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1348- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1349: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1350-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1351-/// Test int32, uint32, int64, uint64, and bool are all compatible +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1352-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1354- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1355- pub data: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1356- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1357: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1358-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1359-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1360-pub struct Uint32Message { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1361- #[prost(uint32, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1362- pub data: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1363- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1364: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1365-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1366-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1367-pub struct Int64Message { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1368- #[prost(int64, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1369- pub data: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1370- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1371: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1372-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1373-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1374-pub struct Uint64Message { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1375- #[prost(uint64, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1376- pub data: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1377- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1378: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1379-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1380-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1381-pub struct BoolMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1382- #[prost(bool, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1383- pub data: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1384- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1385: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1386-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1387-/// Test oneofs. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1388-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1389-pub struct TestOneof { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1390- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1391: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1392- #[prost(oneof = "test_oneof::Foo", tags = "1, 2, 3, 4")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1393- pub foo: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1394-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1401- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1402- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1403- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1404: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1405- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1406- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1407- pub enum Foo { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1426- #[prost(group, optional, tag = "4")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1427- pub foogroup: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1428- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1429: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1430-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1431-/// Nested message and enum types in `TestOneofBackwardsCompatible`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1432-pub mod test_oneof_backwards_compatible { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1437- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1438- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1439- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1440: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1441- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1442-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1443-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1447- #[prost(string, optional, tag = "19", default = "BAZ")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1448- pub baz_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1449- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1450: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1451- #[prost(oneof = "test_oneof2::Foo", tags = "1, 2, 3, 4, 5, 6, 7, 8, 11, 30")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1452- pub foo: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1453- #[prost(oneof = "test_oneof2::Bar", tags = "12, 13, 14, 15, 16, 17, 20, 21, 22, 23")] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1462- #[prost(string, optional, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1463- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1464- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1465: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1466- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1467- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1468- pub struct NestedMessage { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1471- #[prost(int32, repeated, packed = "false", tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1472- pub corge_int: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1473- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1474: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1475- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1476- #[derive( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1477- Clone, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1562-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1563-pub struct TestRequiredOneof { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1564- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1565: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1566- #[prost(oneof = "test_required_oneof::Foo", tags = "1, 2, 3, 4")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1567- pub foo: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1568-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1573- #[prost(double, required, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1574- pub required_double: f64, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1575- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1576: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1577- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1578- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1579- pub enum Foo { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1618- #[prost(enumeration = "ForeignEnum", repeated, tag = "103")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1619- pub packed_enum: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1620- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1621: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1622-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1623-/// A message with the same fields as TestPackedTypes, but without packing. Used +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1624-/// to test packed <-> unpacked wire compatibility. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1653- #[prost(enumeration = "ForeignEnum", repeated, packed = "false", tag = "103")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1654- pub unpacked_enum: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1655- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1656: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1657-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1658-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1659-pub struct TestPackedExtensions { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1660- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1661: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1662-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1663-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1664-pub struct TestUnpackedExtensions { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1665- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1666: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1667-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1668-/// Used by ExtensionSetTest/DynamicExtensions. The test actually builds +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1669-/// a set of extensions to TestAllExtensions dynamically, based on the fields +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1691- #[prost(sint32, repeated, tag = "2006")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1692- pub packed_extension: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1693- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1694: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1695-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1696-/// Nested message and enum types in `TestDynamicExtensions`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1697-pub mod test_dynamic_extensions { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1700- #[prost(int32, optional, tag = "2100")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1701- pub dynamic_field: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1702- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1703: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1704- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1705- #[derive( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1706- Clone, +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1753- #[prost(bytes = "vec", repeated, tag = "12")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1754- pub repeated_bytes12: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1755- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1756: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1757-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1758-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1759-pub struct TestRepeatedScalarDifferentTagSizes { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1776- #[prost(uint64, repeated, packed = "false", tag = "262143")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1777- pub repeated_uint64: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1778- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1779: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1780-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1781-/// Test that if an optional or required message/group field appears multiple +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1782-/// times in the input, they need to be merged. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1793- #[prost(group, repeated, tag = "20")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1794- pub repeatedgroup: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1795- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1796: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1797-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1798-/// Nested message and enum types in `TestParsingMerge`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1799-pub mod test_parsing_merge { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1819- #[prost(message, repeated, tag = "1001")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1820- pub ext2: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1821- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1822: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1823- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1824- /// Nested message and enum types in `RepeatedFieldsGenerator`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1825- pub mod repeated_fields_generator { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1828- #[prost(message, optional, tag = "11")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1829- pub field1: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1830- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1831: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1832- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1833- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1834- pub struct Group2 { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1835- #[prost(message, optional, tag = "21")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1836- pub field1: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1837- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1838: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1839- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1840- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1841- #[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1843- #[prost(message, optional, tag = "11")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1844- pub optional_group_all_types: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1845- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1846: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1847- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1848- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1849- pub struct RepeatedGroup { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1850- #[prost(message, optional, tag = "21")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1851- pub repeated_group_all_types: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1852- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1853: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1854- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1855-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1856-/// Test that the correct exception is thrown by parseFrom in a corner case +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1860- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1861- pub all_extensions: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1862- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1863: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1864-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1865-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1866-pub struct TestCommentInjectionMessage { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1868- #[prost(string, optional, tag = "1", default = "*/ <- Neither should this.")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1869- pub a: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1870- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1871: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1872-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1873-/// Used to check that the c++ code generator re-orders messages to reduce +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1874-/// padding. +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1887- #[prost(int64, optional, tag = "6")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1888- pub m6: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1889- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1890: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1891-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1892-/// Test that RPC services work. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1893-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1894-pub struct FooRequest { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1895- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1896: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1897-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1898-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1899-pub struct FooResponse { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1900- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1901: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1902-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1903-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1904-pub struct FooClientMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1905- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1906: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1907-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1908-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1909-pub struct FooServerMessage { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1910- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1911: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1912-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1913-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1914-pub struct BarRequest { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1915- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1916: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1917-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1918-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1919-pub struct BarResponse { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1920- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1921: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1922-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1923-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1924-pub struct TestJsonName { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1937- #[prost(int32, optional, tag = "7")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1938- pub fieldname7: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1939- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1940: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1941-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1942-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1943-pub struct TestHugeFieldNumbers { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1965- ::prost::alloc::string::String, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1966- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1967- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1968: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1969- #[prost( +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1970- oneof = "test_huge_field_numbers::OneofField", +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1971- tags = "536870011, 536870012, 536870013, 536870014" +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1979- #[prost(int32, optional, tag = "536870009")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1980- pub group_a: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1981- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:1982: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1983- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1984- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-1985- pub enum OneofField { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2014- #[prost(int32, optional, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2015- pub field10: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2016- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2017: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2018-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2019-/// NOTE: Intentionally nested to mirror go/glep. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2020-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2024- test_nested_group_extension_outer::Layer1OptionalGroup, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2025- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2026- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2027: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2028-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2029-/// Nested message and enum types in `TestNestedGroupExtensionOuter`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2030-pub mod test_nested_group_extension_outer { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2039- layer1_optional_group::Layer2AnotherOptionalRepeatedGroup, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2040- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2041- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2042: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2043- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2044- /// Nested message and enum types in `Layer1OptionalGroup`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2045- pub mod layer1_optional_group { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2048- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2049- pub another_field: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2050- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2051: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2052- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2053- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2054- pub struct Layer2AnotherOptionalRepeatedGroup { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2055- #[prost(string, optional, tag = "5")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2056- pub but_why_tho: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2057- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2058: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2059- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2060- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2061-} +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2064- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2065- pub inner_name: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2066- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2067: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2068-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2069-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2070-pub struct TestExtensionRangeSerialize { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2077- #[prost(int32, optional, tag = "13")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2078- pub foo_four: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2079- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2080: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2081-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2082-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2083-pub struct TestVerifyInt32Simple { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2090- #[prost(int32, optional, tag = "64")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2091- pub optional_int32_64: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2092- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2093: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2094-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2095-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2096-pub struct TestVerifyInt32 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2107- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2108- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2109- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2110: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2111-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2112-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2113-pub struct TestVerifyMostlyInt32 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2130- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2131- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2132- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2133: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2134-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2135-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2136-pub struct TestVerifyMostlyInt32BigFieldNumber { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2155- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2156- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2157- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2158: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2159-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2160-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2161-pub struct TestVerifyUint32Simple { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2168- #[prost(uint32, optional, tag = "64")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2169- pub optional_uint32_64: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2170- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2171: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2172-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2173-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2174-pub struct TestVerifyUint32 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2185- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2186- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2187- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2188: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2189-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2190-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2191-pub struct TestVerifyOneUint32 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2202- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2203- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2204- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2205: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2206-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2207-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2208-pub struct TestVerifyOneInt32BigFieldNumber { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2221- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2222- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2223- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2224: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2225-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2226-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2227-pub struct TestVerifyInt32BigFieldNumber { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2242- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2243- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2244- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2245: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2246-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2247-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2248-pub struct TestVerifyUint32BigFieldNumber { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2263- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2264- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2265- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2266: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2267-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2268-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2269-pub struct TestVerifyBigFieldNumberUint32 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2272- test_verify_big_field_number_uint32::Nested, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2273- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2274- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2275: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2276-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2277-/// Nested message and enum types in `TestVerifyBigFieldNumberUint32`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2278-pub mod test_verify_big_field_number_uint32 { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2299- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2300- pub repeated_nested: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2301- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2302: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2303- } +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2304-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2305-/// This message contains different kind of enums to exercise the different +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2442- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2443- pub other_field: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2444- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2445: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2446-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2447-/// Nested message and enum types in `EnumParseTester`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2448-pub mod enum_parse_tester { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2734- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2735- pub other_field: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2736- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2737: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2738-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2739-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2740-pub struct Int32ParseTester { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2760- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2761- pub other_field: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2762- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2763: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2764-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2765-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2766-pub struct Int64ParseTester { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2786- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2787- pub other_field: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2788- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2789: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2790-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2791-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2792-pub struct InlinedStringIdxRegressionProto { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2806- #[prost(bytes = "vec", optional, tag = "4")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2807- pub str3: ::core::option::Option<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2808- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2809: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2810-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2811-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2812-pub struct StringParseTester { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2829- ::prost::alloc::string::String, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2830- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2831- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2832: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2833-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2834-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2835-pub struct BadFieldNames { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2838- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2839- pub r#for: ::core::option::Option, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2840- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2841: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2842-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2843-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2844-pub struct TestNestedMessageRedaction { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2851- ::prost::alloc::string::String, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2852- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2853- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2854: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2855-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2856-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2857-pub struct RedactedFields { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2890- ::prost::alloc::string::String, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2891- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2892- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2893: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2894-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2895-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2896-pub struct TestCord { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2901- ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2902- >, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2903- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2904: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2905-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2906-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2907-pub struct TestPackedEnumSmallRange { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2912- )] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2913- pub vals: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2914- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2915: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2916-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2917-/// Nested message and enum types in `TestPackedEnumSmallRange`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2918-pub mod test_packed_enum_small_range { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2962-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2963-pub struct EnumsForBenchmark { +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2964- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:2965: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2966-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2967-/// Nested message and enum types in `EnumsForBenchmark`. +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-2968-pub mod enums_for_benchmark { +-- +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-3269- #[prost(string, repeated, tag = "32")] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-3270- pub repeated_string_32: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-3271- #[prost(unknown)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs:3272: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-3273-} +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-3274-#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +target/debug/build/protobuf-9b83d93e0bdb8b69/out/protobuf_unittest.rs-3275-#[repr(i32)] +-- +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-6-} +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-b0bef09679c2dad0/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-6-} +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-5514855bf003b607/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-6-} +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-23362020a404fb5e/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-6-} +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-3fa7720a2a55636e/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-6-} +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-5bde1a5aea7d6ecf/out/unknown_fields.rs-19-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-104- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-105- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-106- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-110- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-114- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-115- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/any.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-112- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-113- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-114- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:115: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-116- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:117: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-118- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:119: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-120- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:121: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-122- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-123- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-124- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-311- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-312- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-313- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:314: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-315- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:316: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-317- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:318: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-319- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:320: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-321- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-322- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-323- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-584- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-585- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-586- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:587: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-588- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:589: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-590- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:591: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-592- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h:593: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-594- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-595- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/api.pb.h-596- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-104- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-105- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-106- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-110- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-114- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-115- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/duration.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-104- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-105- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-106- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-110- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-114- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-115- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/empty.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-104- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-105- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-106- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-110- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-114- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-115- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/field_mask.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-104- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-105- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-106- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-110- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-114- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-115- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/source_context.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-149- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-150- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-151- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:152: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-153- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:154: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-155- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:156: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-157- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:158: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-159- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-160- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-161- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-332- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-333- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-334- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:335: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-336- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:337: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-338- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:339: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-340- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:341: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-342- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-343- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-344- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-544- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-545- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-546- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:547: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-548- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:549: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-550- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:551: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-552- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h:553: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-554- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-555- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/struct.pb.h-556- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-104- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-105- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-106- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:107: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-108- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:109: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-110- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:111: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-112- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h:113: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-114- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-115- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/timestamp.pb.h-116- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-238- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-239- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-240- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:241: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-242- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:243: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-244- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:245: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-246- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:247: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-248- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-249- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-250- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-437- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-438- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-439- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:440: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-441- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:442: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-443- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:444: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-445- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:446: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-447- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-448- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-449- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-811- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-812- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-813- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:814: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-815- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:816: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-817- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:818: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-819- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:820: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-821- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-822- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-823- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1024- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1025- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1026- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1027: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1028- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1029: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1030- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1031: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1032- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1033: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1034- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1035- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1036- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1323- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1324- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1325- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1326: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1327- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1328: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1329- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1330: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1331- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h:1332: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1333- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1334- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/type.pb.h-1335- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-128- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-129- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-130- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:131: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-132- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:133: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-134- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:135: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-136- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:137: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-138- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-139- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-140- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-303- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-304- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-305- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:306: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-307- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:308: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-309- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:310: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-311- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:312: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-313- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-314- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-315- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-478- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-479- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-480- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:481: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-482- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:483: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-484- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:485: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-486- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:487: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-488- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-489- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-490- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-659- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-660- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-661- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:662: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-663- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:664: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-665- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:666: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-667- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:668: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-669- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-670- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-671- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-834- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-835- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-836- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:837: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-838- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:839: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-840- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:841: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-842- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:843: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-844- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-845- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-846- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1009- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1010- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1011- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1012: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1013- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1014: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1015- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1016: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1017- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1018: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1019- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1020- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1021- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1184- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1185- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1186- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1187: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1188- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1189: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1190- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1191: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1192- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1193: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1194- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1195- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1196- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1359- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1360- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1361- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1362: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1363- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1364: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1365- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1366: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1367- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1368: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1369- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1370- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1371- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1540- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1541- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1542- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1543: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1544- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1545: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1546- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1547: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1548- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h:1549: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1550- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1551- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wrappers.pb.h-1552- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-311-FileOptions_OptimizeMode GetOptimizeFor(const FileDescriptor* file, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-312- const Options& options); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-313- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h:314:// Determines whether unknown fields will be stored in an UnknownFieldSet or +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-315-// a string. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h:316:inline bool UseUnknownFieldSet(const FileDescriptor* file, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-317- const Options& options) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-318- return GetOptimizeFor(file, options) != FileOptions::LITE_RUNTIME; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/cpp/helpers.h-319-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-345- FileDescriptorLegacy::Syntax::SYNTAX_PROTO2; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-346-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-347- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h:348:// Whether unknown enum values are kept (i.e., not stored in UnknownFieldSet +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-349-// but in the message and can be queried using additional getters that return +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-350-// ints. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/helpers.h-351-inline bool SupportUnknownEnumValue(const FieldDescriptor* field) { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-137- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-138- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-139- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:140: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-141- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:142: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-143- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:144: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-145- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h:146: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-147- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-148- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/java/java_features.pb.h-149- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-154- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-155- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-156- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:157: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-158- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:159: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-160- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:161: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-162- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:163: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-164- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-165- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-166- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-376- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-377- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-378- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:379: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-380- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:381: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-382- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:383: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-384- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:385: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-386- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-387- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-388- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-614- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-615- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-616- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:617: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-618- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:619: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-620- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:621: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-622- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:623: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-624- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-625- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-626- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-853- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-854- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-855- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:856: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-857- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:858: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-859- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:860: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-861- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h:862: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-863- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-864- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/compiler/plugin.pb.h-865- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-106- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-107- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-108- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:109: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-110- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:111: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-112- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:113: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-114- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h:115: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-116- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-117- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/cpp_features.pb.h-118- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2909-// different answer depending on the language. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2910-namespace cpp { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2911-// Returns true if 'enum' semantics are such that unknown values are preserved +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h:2912:// in the enum field itself, rather than going to the UnknownFieldSet. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2913-PROTOBUF_EXPORT bool HasPreservingUnknownEnumSemantics( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2914- const FieldDescriptor* field); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.h-2915- +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-735- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-736- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-737- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:738: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-739- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:740: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-741- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:742: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-743- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:744: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-745- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-746- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-747- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-931- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-932- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-933- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:934: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-935- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:936: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-937- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:938: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-939- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:940: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-941- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-942- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-943- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1205- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1206- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1207- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1208: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1209- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1210: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1211- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1212: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1213- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1214: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1215- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1216- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1217- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1469- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1470- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1471- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1472: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1473- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1474: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1475- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1476: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1477- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1478: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1479- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1480- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1481- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1665- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1666- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1667- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1668: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1669- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1670: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1671- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1672: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1673- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:1674: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1675- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1676- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-1677- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2213- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2214- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2215- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2216: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2217- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2218: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2219- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2220: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2221- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2222: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2223- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2224- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2225- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2454- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2455- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2456- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2457: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2458- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2459: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2460- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2461: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2462- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2463: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2464- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2465- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2466- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2644- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2645- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2646- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2647: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2648- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2649: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2650- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2651: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2652- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2653: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2654- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2655- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2656- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2834- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2835- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2836- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2837: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2838- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2839: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2840- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2841: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2842- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:2843: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2844- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2845- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-2846- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3116- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3117- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3118- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3119: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3120- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3121: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3122- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3123: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3124- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3125: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3126- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3127- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3128- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3301- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3302- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3303- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3304: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3305- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3306: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3307- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3308: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3309- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3310: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3311- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3312- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3313- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3486- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3487- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3488- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3489: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3490- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3491: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3492- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3493: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3494- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3495: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3496- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3497- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3498- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3680- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3681- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3682- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3683: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3684- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3685: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3686- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3687: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3688- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:3689: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3690- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3691- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-3692- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4073- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4074- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4075- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4076: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4077- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4078: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4079- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4080: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4081- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4082: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4083- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4084- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4085- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4453- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4454- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4455- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4456: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4457- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4458: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4459- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4460: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4461- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4462: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4463- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4464- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4465- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4880- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4881- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4882- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4883: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4884- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4885: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4886- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4887: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4888- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:4889: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4890- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4891- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-4892- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5325- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5326- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5327- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5328: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5329- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5330: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5331- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5332: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5333- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:5334: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5335- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5336- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-5337- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6046- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6047- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6048- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6049: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6050- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6051: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6052- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6053: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6054- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6055: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6056- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6057- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6058- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6677- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6678- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6679- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6680: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6681- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6682: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6683- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6684: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6685- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6686: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6687- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6688- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6689- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6889- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6890- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6891- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6892: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6893- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6894: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6895- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6896: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6897- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:6898: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6899- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6900- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-6901- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7324- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7325- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7326- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7327: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7328- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7329: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7330- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7331: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7332- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7333: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7334- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7335- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7336- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7730- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7731- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7732- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7733: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7734- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7735: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7736- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7737: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7738- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:7739: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7740- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7741- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-7742- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8149- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8150- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8151- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8152: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8153- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8154: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8155- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8156: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8157- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8158: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8159- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8160- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8161- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8349- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8350- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8351- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8352: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8353- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8354: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8355- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8356: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8357- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8358: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8359- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8360- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8361- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8613- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8614- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8615- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8616: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8617- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8618: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8619- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8620: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8621- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:8622: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8623- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8624- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-8625- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9011- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9012- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9013- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9014: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9015- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9016: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9017- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9018: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9019- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9020: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9021- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9022- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9023- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9224- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9225- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9226- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9227: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9228- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9229: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9230- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9231: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9232- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9233: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9234- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9235- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9236- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9431- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9432- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9433- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9434: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9435- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9436: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9437- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9438: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9439- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9440: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9441- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9442- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9443- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9651- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9652- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9653- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9654: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9655- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9656: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9657- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9658: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9659- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9660: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9661- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9662- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9663- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9923- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9924- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9925- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9926: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9927- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9928: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9929- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9930: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9931- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:9932: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9933- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9934- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-9935- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10296- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10297- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10298- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10299: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10300- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10301: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10302- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10303: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10304- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10305: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10306- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10307- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10308- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10714- return *this; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10715- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10716- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10717: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10718- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10719: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10720- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10721: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10722- ABSL_ATTRIBUTE_LIFETIME_BOUND { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h:10723: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10724- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10725- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/descriptor.pb.h-10726- static const ::google::protobuf::Descriptor* descriptor() { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-52-class Message; // message.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-53-class MessageFactory; // message.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-54-class Reflection; // message.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h:55:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-56-class FeatureSet; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-57-namespace internal { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/extension_set.h-58-class FieldSkipper; // wire_format_lite.h +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-89-// corresponding field of the message has been initialized. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-90-// The bit for field index i is obtained by the expression: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-91-// has_bits[i / 32] & (1 << (i % 32)) +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h:92:// unknown_fields_offset: Offset in the message of the UnknownFieldSet for +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-93-// the message. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-94-// extensions_offset: Offset in the message of the ExtensionSet for the +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-95-// message, or -1 if the message type has no extension +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-326- const Metadata& metadata); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-327- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-328-// These cannot be in lite so we put them in the reflection. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h:329:PROTOBUF_EXPORT void UnknownFieldSetSerializer(const uint8_t* base, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-330- uint32_t offset, uint32_t tag, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-331- uint32_t has_offset, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_reflection.h-332- io::CodedOutputStream* output); +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-34-namespace protobuf { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-35- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-36-class Message; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h:37:class UnknownFieldSet; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-38- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-39-namespace internal { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-40- +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-628- // +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-629- // This function parses a field from incoming data based on metadata stored in +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-630- // the message definition. If the field is not defined in the message, it is +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h:631: // stored in either the ExtensionSet (if applicable) or the UnknownFieldSet. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-632- // +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-633- // NOTE: Currently, this function only calls the table-level fallback +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/generated_message_tctable_impl.h-634- // function, so it should only be called as the fallback from fast table +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-112- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-113- ~MapEntry() override { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-114- if (GetArena() != nullptr) return; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h:115: Message::_internal_metadata_.template Delete(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-116- KeyTypeHandler::DeleteNoArena(key_); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-117- ValueTypeHandler::DeleteNoArena(value_); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/map_entry.h-118- } +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-145-class CachedSize; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-146-struct TailCallTableInfo; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-147-} // namespace internal +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h:148:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-149-namespace io { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-150-class ZeroCopyInputStream; // zero_copy_stream.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-151-class ZeroCopyOutputStream; // zero_copy_stream.h +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-275- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-276- // Clears all unknown fields from this message and all embedded messages. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-277- // Normally, if unknown tag numbers are encountered when parsing a message, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h:278: // the tag and value are stored in the message's UnknownFieldSet and +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-279- // then written back out when the message is serialized. This allows servers +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-280- // which simply route messages to other servers to pass through messages +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-281- // that have new field definitions which they don't yet know about. However, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-427- Reflection& operator=(const Reflection&) = delete; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-428- ~Reflection(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-429- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h:430: // Get the UnknownFieldSet for the message. This contains fields which +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-431- // were seen when the Message was parsed but were not recognized according +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-432- // to the Message's definition. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h:433: const UnknownFieldSet& GetUnknownFields(const Message& message) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h:434: // Get a mutable pointer to the UnknownFieldSet for the message. This +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-435- // contains fields which were seen when the Message was parsed but were not +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-436- // recognized according to the Message's definition. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h:437: UnknownFieldSet* MutableUnknownFields(Message* message) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-438- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-439- // Estimate the amount of memory used by the message object. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-440- size_t SpaceUsedLong(const Message& message) const; +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-895- // +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-896- // Generic code that uses reflection to handle messages with enum fields +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-897- // should check this flag before using the integer-based setter, and either +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h:898: // downgrade to a compatible value or use the UnknownFieldSet if not. For +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-899- // example: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-900- // +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/message.h-901- // int new_value = GetValueFromApplicationLogic(); +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-23-namespace google { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-24-namespace protobuf { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-25- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:26:class UnknownFieldSet; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-27- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-28-namespace internal { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-29- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-30-// This is the representation for messages that support arena allocation. It +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-31-// uses a tagged pointer to either store the owning Arena pointer, if there are +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-32-// no unknown fields, or a pointer to a block of memory with both the owning +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:33:// Arena pointer and the UnknownFieldSet, if there are unknown fields. Besides, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-34-// it also uses the tag to distinguish whether the owning Arena pointer is also +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-35-// used by sub-structure allocation. This optimization allows for +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-36-// "zero-overhead" storage of the Arena pointer, relative to the above baseline +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-208-template <> +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-209-PROTOBUF_EXPORT void InternalMetadata::DoSwap(std::string* other); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-210- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:211:// Instantiated once in message.cc (where the definition of UnknownFieldSet is +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-212-// known) to prevent much duplication across translation units of a large build. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-213-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:214:InternalMetadata::DoClear(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-215-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:216:InternalMetadata::DoMergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-217-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:218:InternalMetadata::DoSwap(UnknownFieldSet* other); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-219-extern template PROTOBUF_EXPORT void +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:220:InternalMetadata::DeleteOutOfLineHelper(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:221:extern template PROTOBUF_EXPORT UnknownFieldSet* +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:222:InternalMetadata::mutable_unknown_fields_slow(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-223- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-224-// This helper RAII class is needed to efficiently parse unknown fields. We +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-225-// should only call mutable_unknown_fields if there are actual unknown fields. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-226-// The obvious thing to just use a stack string and swap it at the end of +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-227-// the parse won't work, because the destructor of StringOutputStream needs to +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-228-// be called before we can modify the string (it check-fails). Using +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:229:// LiteUnknownFieldSetter setter(&_internal_metadata_); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-230-// StringOutputStream stream(setter.buffer()); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-231-// guarantees that the string is only swapped after stream is destroyed. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:232:class PROTOBUF_EXPORT LiteUnknownFieldSetter { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-233- public: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:234: explicit LiteUnknownFieldSetter(InternalMetadata* metadata) +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-235- : metadata_(metadata) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-236- if (metadata->have_unknown_fields()) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-237- buffer_.swap(*metadata->mutable_unknown_fields()); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-238- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-239- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h:240: ~LiteUnknownFieldSetter() { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-241- if (!buffer_.empty()) +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-242- metadata_->mutable_unknown_fields()->swap(buffer_); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/metadata_lite.h-243- } +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-41-namespace google { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-42-namespace protobuf { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-43- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:44:class UnknownFieldSet; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-45-class DescriptorPool; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-46-class MessageFactory; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-47- +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-52-PROTOBUF_EXPORT void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-53- std::string* s); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-54-// Inline because it is just forwarding to s->WriteVarint +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:55:inline void WriteVarint(uint32_t num, uint64_t val, UnknownFieldSet* s); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-56-inline void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:57: UnknownFieldSet* s); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-58- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-59- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-60-// The basic abstraction the parser is designed for is a slight modification +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1413- std::string* unknown, const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1414-// This is a helper to for the UnknownGroupLiteParse but is actually also +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1415-// useful in the generated code. It uses overload on std::string* vs +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h:1416:// UnknownFieldSet* to make the generated code isomorphic between full and lite. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1417-PROTOBUF_NODISCARD PROTOBUF_EXPORT const char* UnknownFieldParse( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1418- uint32_t tag, std::string* unknown, const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/parse_context.h-1419- +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-97- // output stream. Returns false if printing fails. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-98- static bool Print(const Message& message, io::ZeroCopyOutputStream* output); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-99- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:100: // Print the fields in an UnknownFieldSet. They are printed by tag number +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-101- // only. Embedded messages are heuristically identified by attempting to +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-102- // parse them. Returns false if printing fails. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:103: static bool PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-104- io::ZeroCopyOutputStream* output); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-105- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-106- // Like Print(), but outputs directly to a string. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-110- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-111- // Like PrintUnknownFields(), but outputs directly to a string. Returns +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-112- // false if printing fails. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:113: static bool PrintUnknownFieldsToString(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-114- std::string* output); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-115- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-116- // Outputs a textual representation of the value of the field supplied on +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-304- bool Print(const Message& message, io::ZeroCopyOutputStream* output, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-305- internal::FieldReporterLevel reporter) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-306- // Like TextFormat::PrintUnknownFields +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:307: bool PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-308- io::ZeroCopyOutputStream* output) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-309- // Like TextFormat::PrintToString +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-310- bool PrintToString(const Message& message, std::string* output) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-311- // Like TextFormat::PrintUnknownFieldsToString +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:312: bool PrintUnknownFieldsToString(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-313- std::string* output) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-314- // Like TextFormat::PrintFieldValueToString +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-315- void PrintFieldValueToString(const Message& message, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-496- const FieldDescriptor* field, int index, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-497- BaseTextGenerator* generator) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-498- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:499: // Print the fields in an UnknownFieldSet. They are printed by tag number +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-500- // only. Embedded messages are heuristically identified by attempting to +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-501- // parse them (subject to the recursion budget). +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h:502: void PrintUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-503- BaseTextGenerator* generator, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-504- int recursion_budget) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/text_format.h-505- +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-47-class Message; // message.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-48-class UnknownField; // below +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-49- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:50:// An UnknownFieldSet contains fields that were encountered while parsing a +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-51-// message but were not defined by its type. Keeping track of these can be +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-52-// useful, especially in that they may be written if the message is serialized +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-53-// again without being cleared in between. This means that software which +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-54-// simply receives messages and forwards them to other servers does not need +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-55-// to be updated every time a new field is added to the message definition. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-56-// +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:57:// To get the UnknownFieldSet attached to any message, call +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-58-// Reflection::GetUnknownFields(). +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-59-// +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-60-// This class is necessarily tied to the protocol buffer wire format, unlike +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-61-// the Reflection interface which is independent of any serialization scheme. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:62:class PROTOBUF_EXPORT UnknownFieldSet { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-63- public: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:64: UnknownFieldSet(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:65: UnknownFieldSet(const UnknownFieldSet&) = delete; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:66: UnknownFieldSet& operator=(const UnknownFieldSet&) = delete; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:67: ~UnknownFieldSet(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-68- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-69- // Remove all fields. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-70- inline void Clear(); +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-75- // Is this set empty? +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-76- inline bool empty() const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-77- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:78: // Merge the contents of some other UnknownFieldSet with this one. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:79: void MergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-80- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-81- // Similar to above, but this function will destroy the contents of other. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:82: void MergeFromAndDestroy(UnknownFieldSet* other); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-83- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:84: // Merge the contents an UnknownFieldSet with the UnknownFieldSet in +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:85: // *metadata, if there is one. If *metadata doesn't have an UnknownFieldSet +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-86- // then add one to it and make it be a copy of the first arg. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:87: static void MergeToInternalMetadata(const UnknownFieldSet& other, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-88- internal::InternalMetadata* metadata); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-89- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:90: // Swaps the contents of some other UnknownFieldSet with this one. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:91: inline void Swap(UnknownFieldSet* x); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-92- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-93- // Computes (an estimate of) the total number of bytes currently used for +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-94- // storing the unknown fields in memory. Does NOT include +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-104- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-105- int SpaceUsed() const { return internal::ToIntSize(SpaceUsedLong()); } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-106- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:107: // Returns the number of fields present in the UnknownFieldSet. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-108- inline int field_count() const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-109- // Get a field in the set, where 0 <= index < field_count(). The fields +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-110- // appear in the order in which they were added. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-121- void AddFixed64(int number, uint64_t value); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-122- void AddLengthDelimited(int number, const std::string& value); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-123- std::string* AddLengthDelimited(int number); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:124: UnknownFieldSet* AddGroup(int number); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-125- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-126- // Adds an unknown field from another set. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-127- void AddField(const UnknownField& field); +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-156- bool SerializeToString(std::string* output) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-157- bool SerializeToCord(absl::Cord* output) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-158- bool SerializeToCodedStream(io::CodedOutputStream* output) const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:159: static const UnknownFieldSet& default_instance(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-160- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-161- private: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-162- // For InternalMergeFrom +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-163- friend class UnknownField; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:164: // Merges from other UnknownFieldSet. This method assumes, that this object +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-165- // is newly created and has no fields. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:166: void InternalMergeFrom(const UnknownFieldSet& other); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-167- void ClearFallback(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-168- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-169- template AddVarint(num, val); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-197-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-198-inline void WriteLengthDelimited(uint32_t num, absl::string_view val, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:199: UnknownFieldSet* unknown) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-200- unknown->AddLengthDelimited(num)->assign(val.data(), val.size()); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-201-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-202- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-203-PROTOBUF_EXPORT +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:204:const char* UnknownGroupParse(UnknownFieldSet* unknown, const char* ptr, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-205- ParseContext* ctx); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-206-PROTOBUF_EXPORT +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:207:const char* UnknownFieldParse(uint64_t tag, UnknownFieldSet* unknown, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-208- const char* ptr, ParseContext* ctx); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-209- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-210-} // namespace internal +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-211- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:212:// Represents one field in an UnknownFieldSet. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-213-class PROTOBUF_EXPORT UnknownField { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-214- public: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-215- enum Type { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-233- inline uint32_t fixed32() const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-234- inline uint64_t fixed64() const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-235- inline const std::string& length_delimited() const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:236: inline const UnknownFieldSet& group() const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-237- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-238- inline void set_varint(uint64_t value); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-239- inline void set_fixed32(uint32_t value); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-240- inline void set_fixed64(uint64_t value); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-241- inline void set_length_delimited(const std::string& value); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-242- inline std::string* mutable_length_delimited(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:243: inline UnknownFieldSet* mutable_group(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-244- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-245- inline size_t GetLengthDelimitedSize() const; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-246- uint8_t* InternalSerializeLengthDelimitedNoTag( +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-268- uint32_t fixed32_; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-269- uint64_t fixed64_; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-270- mutable union LengthDelimited length_delimited_; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:271: UnknownFieldSet* group_; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-272- } data_; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-273-}; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-274- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-275-// =================================================================== +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-276-// inline implementations +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-277- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:278:inline UnknownFieldSet::UnknownFieldSet() {} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-279- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:280:inline UnknownFieldSet::~UnknownFieldSet() { Clear(); } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-281- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:282:inline void UnknownFieldSet::ClearAndFreeMemory() { Clear(); } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-283- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:284:inline void UnknownFieldSet::Clear() { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-285- if (!fields_.empty()) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-286- ClearFallback(); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-287- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-288-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-289- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:290:inline bool UnknownFieldSet::empty() const { return fields_.empty(); } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-291- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:292:inline void UnknownFieldSet::Swap(UnknownFieldSet* x) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-293- fields_.swap(x->fields_); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-294-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-295- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:296:inline int UnknownFieldSet::field_count() const { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-297- return static_cast(fields_.size()); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-298-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:299:inline const UnknownField& UnknownFieldSet::field(int index) const { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-300- return (fields_)[static_cast(index)]; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-301-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:302:inline UnknownField* UnknownFieldSet::mutable_field(int index) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-303- return &(fields_)[static_cast(index)]; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-304-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-305- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:306:inline void UnknownFieldSet::AddLengthDelimited(int number, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-307- const std::string& value) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-308- AddLengthDelimited(number)->assign(value); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-309-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-332- assert(type() == TYPE_LENGTH_DELIMITED); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-333- return *data_.length_delimited_.string_value; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-334-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:335:inline const UnknownFieldSet& UnknownField::group() const { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-336- assert(type() == TYPE_GROUP); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-337- return *data_.group_; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-338-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-357- assert(type() == TYPE_LENGTH_DELIMITED); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-358- return data_.length_delimited_.string_value; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-359-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:360:inline UnknownFieldSet* UnknownField::mutable_group() { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-361- assert(type() == TYPE_GROUP); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-362- return data_.group_; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-363-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-364-template +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h:365:bool UnknownFieldSet::MergeFromMessage(const MessageType& message) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-366- // SFINAE will route to the right version. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-367- return InternalMergeFromMessage(message); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/unknown_field_set.h-368-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-188- const Message* map_entry1 = nullptr; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-189- const Message* map_entry2 = nullptr; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-190- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:191: // For unknown fields, these are the pointers to the UnknownFieldSet +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-192- // containing the unknown fields. In certain cases (e.g. proto1's +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-193- // MessageSet, or nested groups of unknown fields), these may differ from +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:194: // the messages' internal UnknownFieldSets. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:195: const UnknownFieldSet* unknown_field_set1 = nullptr; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:196: const UnknownFieldSet* unknown_field_set2 = nullptr; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-197- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-198- // For unknown fields, these are the index of the field within the +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:199: // UnknownFieldSets. One or the other will be -1 when +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-200- // reporting an addition or deletion. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-201- int unknown_field_index1 = -1; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-202- int unknown_field_index2 = -1; +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-781- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-782- // Compares all the unknown fields in two messages. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-783- bool CompareUnknownFields(const Message& message1, const Message& message2, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h:784: const UnknownFieldSet&, const UnknownFieldSet&, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-785- std::vector* parent_fields); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-786- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/util/message_differencer.h-787- // Compares the specified messages for the requested field lists. The field +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-37-namespace google { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-38-namespace protobuf { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-39-class MapKey; // map_field.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:40:class UnknownFieldSet; // unknown_field_set.h +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-41-} // namespace protobuf +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-42-} // namespace google +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-43- +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-128- // positioned immediately after the tag. If unknown_fields is non-nullptr, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-129- // the contents of the field will be added to it. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-130- static bool SkipField(io::CodedInputStream* input, uint32_t tag, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:131: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-132- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-133- // Reads and ignores a message from the input. If unknown_fields is +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-134- // non-nullptr, the contents will be added to it. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-135- static bool SkipMessage(io::CodedInputStream* input, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:136: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-137- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-138- // Read a packed enum field. If the is_valid function is not nullptr, values +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-139- // for which is_valid(value) returns false are appended to +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-141- static bool ReadPackedEnumPreserveUnknowns(io::CodedInputStream* input, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-142- uint32_t field_number, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-143- bool (*is_valid)(int), +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:144: UnknownFieldSet* unknown_fields, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-145- RepeatedField* values); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-146- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:147: // Write the contents of an UnknownFieldSet to the output. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:148: static void SerializeUnknownFields(const UnknownFieldSet& unknown_fields, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-149- io::CodedOutputStream* output) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-150- output->SetCur(InternalSerializeUnknownFieldsToArray( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-151- unknown_fields, output->Cur(), output->EpsCopy())); +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-156- // +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-157- // Returns a pointer past the last written byte. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-158- static uint8_t* SerializeUnknownFieldsToArray( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:159: const UnknownFieldSet& unknown_fields, uint8_t* target) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-160- io::EpsCopyOutputStream stream( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-161- target, static_cast(ComputeUnknownFieldsSize(unknown_fields)), +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-162- io::CodedOutputStream::IsDefaultSerializationDeterministic()); +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-164- &stream); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-165- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-166- static uint8_t* InternalSerializeUnknownFieldsToArray( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:167: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-168- io::EpsCopyOutputStream* stream); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-169- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-170- // Same thing except for messages that have the message_set_wire_format +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-171- // option. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-172- static void SerializeUnknownMessageSetItems( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:173: const UnknownFieldSet& unknown_fields, io::CodedOutputStream* output) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-174- output->SetCur(InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-175- unknown_fields, output->Cur(), output->EpsCopy())); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-176- } +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-180- // +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-181- // Returns a pointer past the last written byte. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-182- static uint8_t* SerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:183: const UnknownFieldSet& unknown_fields, uint8_t* target); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-184- static uint8_t* InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:185: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-186- io::EpsCopyOutputStream* stream); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-187- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:188: // Compute the size of the UnknownFieldSet on the wire. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:189: static size_t ComputeUnknownFieldsSize(const UnknownFieldSet& unknown_fields); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-190- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-191- // Same thing except for messages that have the message_set_wire_format +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-192- // option. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-193- static size_t ComputeUnknownMessageSetItemsSize( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:194: const UnknownFieldSet& unknown_fields); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-195- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-196- // Helper functions for encoding and decoding tags. (Inlined below and in +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-197- // _inl.h) +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-268- // Skip a MessageSet field. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-269- static bool SkipMessageSetField(io::CodedInputStream* input, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-270- uint32_t field_number, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:271: UnknownFieldSet* unknown_fields); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-272- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-273- // Parse a MessageSet field. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-274- static bool ParseAndMergeMessageSetField(uint32_t field_number, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-283- const FieldDescriptor* field); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-284-}; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-285- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:286:// Subclass of FieldSkipper which saves skipped fields to an UnknownFieldSet. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:287:class PROTOBUF_EXPORT UnknownFieldSetFieldSkipper : public FieldSkipper { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-288- public: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:289: UnknownFieldSetFieldSkipper(UnknownFieldSet* unknown_fields) +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-290- : unknown_fields_(unknown_fields) {} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:291: ~UnknownFieldSetFieldSkipper() override {} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-292- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-293- // implements FieldSkipper ----------------------------------------- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-294- bool SkipField(io::CodedInputStream* input, uint32_t tag) override; +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-296- void SkipUnknownEnum(int field_number, int value) override; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-297- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-298- protected: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:299: UnknownFieldSet* unknown_fields_; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-300-}; +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-301- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-302-// inline methods ==================================================== +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-362- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-363- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-364-inline uint8_t* InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:365: const UnknownFieldSet& unknown_fields, uint8_t* target, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-366- io::EpsCopyOutputStream* stream) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-367- return WireFormat::InternalSerializeUnknownMessageSetItemsToArray( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-368- unknown_fields, target, stream); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-369-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-370- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-371-inline size_t ComputeUnknownMessageSetItemsSize( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:372: const UnknownFieldSet& unknown_fields) { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-373- return WireFormat::ComputeUnknownMessageSetItemsSize(unknown_fields); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-374-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-375- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h:376:// Compute the size of the UnknownFieldSet on the wire. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-377-PROTOBUF_EXPORT +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-378-size_t ComputeUnknownFieldsSize(const InternalMetadata& metadata, size_t size, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format.h-379- CachedSize* cached_size); +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-161- // Skips a field value with the given tag. The input should start +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-162- // positioned immediately after the tag. Skipped values are simply +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-163- // discarded, not recorded anywhere. See WireFormat::SkipField() for a +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:164: // version that records to an UnknownFieldSet. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-165- static bool SkipField(io::CodedInputStream* input, uint32_t tag); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-166- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-167- // Skips a field value with the given tag. The input should start +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-172- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-173- // Reads and ignores a message from the input. Skipped values are simply +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-174- // discarded, not recorded anywhere. See WireFormat::SkipMessage() for a +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:175: // version that records to an UnknownFieldSet. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-176- static bool SkipMessage(io::CodedInputStream* input); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-177- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-178- // Reads and ignores a message from the input. Skipped values are recorded +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-755- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-756-// A class which deals with unknown values. The default implementation just +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-757-// discards them. WireFormat defines a subclass which writes to an +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:758:// UnknownFieldSet. This class is used by ExtensionSet::ParseField(), since +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:759:// ExtensionSet is part of the lite library but UnknownFieldSet is not. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-760-class PROTOBUF_EXPORT FieldSkipper { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-761- public: +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-762- FieldSkipper() {} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-770- virtual bool SkipMessage(io::CodedInputStream* input); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-771- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-772- // Deal with an already-parsed unrecognized enum value. The default +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h:773: // implementation does nothing, but the UnknownFieldSet-based implementation +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-774- // saves it as an unknown varint. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-775- virtual void SkipUnknownEnum(int field_number, int value); +target/debug/build/protobuf-e966870765d54cd0/out/protobuf-v3.25.8/include/google/protobuf/wire_format_lite.h-776-}; +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-4- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-5- pub e: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-6- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs:7: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-8-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-9-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-10-pub struct ImportMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-11- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-12- pub d: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-13- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs:14: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-15-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-16-#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest_import.rs-17-#[repr(i32)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-302- #[prost(int32, optional, tag = "418")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-303- pub field_name18: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-304- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:305: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-306- #[prost( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-307- oneof = "test_all_types_proto2::OneofField", +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-308- tags = "111, 112, 113, 114, 115, 116, 117, 118, 119" +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-320- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-321- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-322- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:323: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-324- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-325- /// groups +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-326- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-330- #[prost(uint32, optional, tag = "203")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-331- pub group_uint32: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-332- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:333: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-334- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-335- /// message_set test case. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-336- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-337- pub struct MessageSetCorrect { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-338- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:339: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-340- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-341- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-342- pub struct MessageSetCorrectExtension1 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-343- #[prost(string, optional, tag = "25")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-344- pub str: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-345- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:346: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-347- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-348- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-349- pub struct MessageSetCorrectExtension2 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-350- #[prost(int32, optional, tag = "9")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-351- pub i: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-352- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:353: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-354- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-355- #[derive( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-356- Clone, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-422- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-423- pub c: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-424- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:425: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-426-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-427-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-428-pub struct UnknownToTestAllTypes { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-439- #[prost(int32, repeated, packed = "false", tag = "1011")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-440- pub repeated_int32: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-441- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:442: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-443-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-444-/// Nested message and enum types in `UnknownToTestAllTypes`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-445-pub mod unknown_to_test_all_types { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-448- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-449- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-450- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:451: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-452- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-453-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-454-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-455-pub struct NullHypothesisProto2 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-456- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:457: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-458-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-459-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-460-pub struct EnumOnlyProto2 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-461- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:462: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-463-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-464-/// Nested message and enum types in `EnumOnlyProto2`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-465-pub mod enum_only_proto2 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-505- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-506- pub data: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-507- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:508: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-509-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-510-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-511-pub struct ProtoWithKeywords { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-516- #[prost(string, repeated, tag = "3")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-517- pub requires: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-518- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:519: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-520-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-521-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-522-pub struct TestAllRequiredTypesProto2 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-609- #[prost(bytes = "vec", required, tag = "255", default = "b\"joshua\"")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-610- pub default_bytes: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-611- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:612: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-613-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-614-/// Nested message and enum types in `TestAllRequiredTypesProto2`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-615-pub mod test_all_required_types_proto2 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-624- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-625- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-626- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:627: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-628- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-629- /// groups +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-630- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-634- #[prost(uint32, required, tag = "203")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-635- pub group_uint32: u32, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-636- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:637: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-638- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-639- /// message_set test case. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-640- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-641- pub struct MessageSetCorrect { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-642- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:643: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-644- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-645- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-646- pub struct MessageSetCorrectExtension1 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-647- #[prost(string, required, tag = "25")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-648- pub str: ::prost::alloc::string::String, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-649- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:650: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-651- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-652- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-653- pub struct MessageSetCorrectExtension2 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-654- #[prost(int32, required, tag = "9")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-655- pub i: i32, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-656- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs:657: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-658- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-659- #[derive( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto2.rs-660- Clone, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-333- #[prost(int32, tag = "418")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-334- pub field_name18: i32, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-335- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:336: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-337- #[prost( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-338- oneof = "test_all_types_proto3::OneofField", +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-339- tags = "111, 112, 113, 114, 115, 116, 117, 118, 119, 120" +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-351- ::prost::alloc::boxed::Box, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-352- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-353- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:354: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-355- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-356- #[derive( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-357- Clone, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-464- #[prost(int32, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-465- pub c: i32, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-466- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:467: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-468-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-469-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-470-pub struct NullHypothesisProto3 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-471- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:472: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-473-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-474-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-475-pub struct EnumOnlyProto3 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-476- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs:477: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-478-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-479-/// Nested message and enum types in `EnumOnlyProto3`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_test_messages.proto3.rs-480-pub mod enum_only_proto3 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-186- #[prost(string, optional, tag = "85", default = "123")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-187- pub default_cord: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-188- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:189: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-190- /// For oneof test +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-191- #[prost( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-192- oneof = "test_all_types::OneofField", +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-204- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-205- pub bb: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-206- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:207: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-208- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-209- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-210- pub struct OptionalGroup { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-211- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-212- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-213- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:214: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-215- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-216- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-217- pub struct RepeatedGroup { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-218- #[prost(int32, optional, tag = "47")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-219- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-220- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:221: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-222- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-223- #[derive( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-224- Clone, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-298- #[prost(message, optional, tag = "5")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-299- pub eager_child: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-300- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:301: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-302-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-303-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-304-pub struct TestDeprecatedFields { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-316- #[prost(message, optional, boxed, tag = "5")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-317- pub nested: ::core::option::Option<::prost::alloc::boxed::Box>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-318- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:319: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-320- #[prost(oneof = "test_deprecated_fields::OneofFields", tags = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-321- pub oneof_fields: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-322-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-332-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-333-pub struct TestDeprecatedMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-334- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:335: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-336-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-337-/// Define these after TestAllTypes to make sure the compiler can handle +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-338-/// that. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-343- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-344- pub d: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-345- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:346: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-347-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-348-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-349-pub struct TestReservedFields { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-350- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:351: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-352-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-353-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-354-pub struct TestAllExtensions { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-355- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:356: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-357-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-358-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-359-pub struct OptionalGroupExtension { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-360- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-361- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-362- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:363: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-364-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-365-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-366-pub struct RepeatedGroupExtension { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-367- #[prost(int32, optional, tag = "47")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-368- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-369- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:370: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-371-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-372-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-373-pub struct TestMixedFieldsAndExtensions { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-376- #[prost(fixed32, repeated, packed = "false", tag = "3")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-377- pub b: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-378- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:379: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-380-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-381-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-382-pub struct TestGroup { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-385- #[prost(enumeration = "ForeignEnum", optional, tag = "22")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-386- pub optional_foreign_enum: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-387- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:388: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-389-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-390-/// Nested message and enum types in `TestGroup`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-391-pub mod test_group { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-397- #[prost(int32, optional, tag = "89")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-398- pub zz: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-399- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:400: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-401- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-402-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-403-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-404-pub struct TestGroupExtension { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-405- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:406: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-407-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-408-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-409-pub struct TestNestedExtension { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-410- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:411: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-412-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-413-/// Nested message and enum types in `TestNestedExtension`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-414-pub mod test_nested_extension { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-417- #[prost(int32, optional, tag = "17")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-418- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-419- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:420: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-421- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-422-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-423-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-429- #[prost(message, optional, tag = "3")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-430- pub optional_extension: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-431- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:432: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-433-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-434-/// Emulates wireformat data of TestChildExtension with dynamic extension +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-435-/// (DynamicExtension). +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-444- test_child_extension_data::NestedTestAllExtensionsData, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-445- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-446- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:447: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-448-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-449-/// Nested message and enum types in `TestChildExtensionData`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-450-pub mod test_child_extension_data { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-455- nested_test_all_extensions_data::NestedDynamicExtensions, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-456- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-457- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:458: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-459- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-460- /// Nested message and enum types in `NestedTestAllExtensionsData`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-461- pub mod nested_test_all_extensions_data { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-466- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-467- pub b: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-468- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:469: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-470- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-471- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-472-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-477- #[prost(message, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-478- pub child: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-479- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:480: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-481-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-482-/// Emulates wireformat data of TestNestedChildExtension with dynamic extension +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-483-/// (DynamicExtension). +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-488- #[prost(message, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-489- pub child: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-490- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:491: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-492-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-493-/// Required and closed enum fields are considered unknown fields if the value is +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-494-/// not valid. We need to make sure it functions as expected. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-500- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-501- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-502- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:503: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-504-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-505-/// TestRequiredEnum + using enum values that won't fit to 64 bitmask. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-506-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-511- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-512- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-513- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:514: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-515-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-516-/// Nested message and enum types in `TestRequiredEnumNoMask`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-517-pub mod test_required_enum_no_mask { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-572- #[prost(enumeration = "ForeignEnum", required, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-573- pub required_enum_1: i32, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-574- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:575: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-576-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-577-/// Nested message and enum types in `TestRequiredEnumMulti`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-578-pub mod test_required_enum_multi { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-651- #[prost(enumeration = "ForeignEnum", required, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-652- pub required_enum_1: i32, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-653- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:654: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-655-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-656-/// Nested message and enum types in `TestRequiredNoMaskMulti`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-657-pub mod test_required_no_mask_multi { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-777- #[prost(message, optional, tag = "34")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-778- pub optional_foreign: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-779- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:780: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-781-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-782-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-783-pub struct TestRequiredForeign { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-791- #[prost(message, optional, tag = "4")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-792- pub optional_lazy_message: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-793- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:794: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-795-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-796-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-797-pub struct TestRequiredMessage { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-802- #[prost(message, required, tag = "3")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-803- pub required_message: TestRequired, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-804- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:805: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-806-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-807-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-808-pub struct TestNestedRequiredForeign { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-824- #[prost(message, optional, tag = "9")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-825- pub required_no_mask: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-826- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:827: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-828-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-829-/// Test that we can use NestedMessage from outside TestAllTypes. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-830-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-832- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-833- pub foreign_nested: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-834- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:835: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-836-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-837-/// TestEmptyMessage is used to test unknown field support. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-838-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-839-pub struct TestEmptyMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-840- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:841: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-842-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-843-/// Like above, but declare all field numbers as potential extensions. No +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-844-/// actual extensions should ever be defined for this type. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-845-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-846-pub struct TestEmptyMessageWithExtensions { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-847- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:848: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-849-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-850-/// Needed for a Python test. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-851-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-852-pub struct TestPickleNestedMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-853- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:854: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-855-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-856-/// Nested message and enum types in `TestPickleNestedMessage`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-857-pub mod test_pickle_nested_message { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-860- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-861- pub bb: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-862- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:863: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-864- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-865- /// Nested message and enum types in `NestedMessage`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-866- pub mod nested_message { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-869- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-870- pub cc: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-871- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:872: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-873- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-874- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-875-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-876-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-877-pub struct TestMultipleExtensionRanges { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-878- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:879: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-880-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-881-/// Test that really large tag numbers don't break anything. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-882-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-888- #[prost(int32, optional, tag = "268435455")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-889- pub bb: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-890- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:891: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-892-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-893-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-894-pub struct TestRecursiveMessage { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-897- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-898- pub i: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-899- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:900: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-901-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-902-/// Test that mutual recursion works. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-903-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-911- #[prost(group, repeated, tag = "5")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-912- pub subgroupr: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-913- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:914: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-915-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-916-/// Nested message and enum types in `TestMutualRecursionA`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-917-pub mod test_mutual_recursion_a { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-920- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-921- pub b: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-922- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:923: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-924- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-925- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-926- pub struct SubGroup { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-930- #[prost(message, optional, tag = "4")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-931- pub not_in_this_scc: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-932- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:933: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-934- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-935- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-936- pub struct SubGroupR { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-937- #[prost(message, optional, tag = "6")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-938- pub payload: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-939- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:940: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-941- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-942-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-943-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-947- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-948- pub optional_int32: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-949- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:950: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-951-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-952-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-953-pub struct TestIsInitialized { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-954- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-955- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-956- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:957: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-958-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-959-/// Nested message and enum types in `TestIsInitialized`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-960-pub mod test_is_initialized { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-963- #[prost(group, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-964- pub subgroup: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-965- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:966: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-967- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-968- /// Nested message and enum types in `SubMessage`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-969- pub mod sub_message { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-972- #[prost(int32, required, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-973- pub i: i32, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-974- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:975: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-976- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-977- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-978-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-992- #[prost(group, optional, tag = "3")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-993- pub bar: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-994- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:995: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-996-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-997-/// Nested message and enum types in `TestDupFieldNumber`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-998-pub mod test_dup_field_number { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1001- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1002- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1003- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1004: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1005- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1006- #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1007- pub struct Bar { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1008- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1009- pub a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1010- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1011: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1012- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1013-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1014-/// Additional messages for testing lazy fields. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1017- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1018- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1019- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1020: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1021-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1022-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1023-pub struct TestLazyMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1024- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1025- pub sub_message: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1026- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1027: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1028-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1029-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1030-pub struct TestLazyMessageRepeated { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1031- #[prost(message, repeated, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1032- pub repeated_message: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1033- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1034: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1035-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1036-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1037-pub struct TestEagerMaybeLazy { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1042- #[prost(message, optional, tag = "3")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1043- pub message_baz: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1044- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1045: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1046-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1047-/// Nested message and enum types in `TestEagerMaybeLazy`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1048-pub mod test_eager_maybe_lazy { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1051- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1052- pub packed: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1053- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1054: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1055- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1056-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1057-/// Needed for a Python test. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1062- test_nested_message_has_bits::NestedMessage, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1063- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1064- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1065: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1066-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1067-/// Nested message and enum types in `TestNestedMessageHasBits`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1068-pub mod test_nested_message_has_bits { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1075- super::ForeignMessage, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1076- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1077- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1078: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1079- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1080-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1081-/// Test message with CamelCase field names. This violates Protocol Buffer +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1109- #[prost(string, repeated, tag = "12")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1110- pub repeated_cord_field: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1111- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1112: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1113-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1114-/// We list fields out of order, to ensure that we're using field number and not +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1115-/// field index to determine serialization order. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1126- test_field_orderings::NestedMessage, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1127- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1128- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1129: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1130-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1131-/// Nested message and enum types in `TestFieldOrderings`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1132-pub mod test_field_orderings { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1140- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1141- pub bb: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1142- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1143: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1144- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1145-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1146-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1148- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1149- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1150- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1151: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1152-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1153-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1154-pub struct TestExtensionOrderings2 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1155- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1156- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1157- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1158: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1159-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1160-/// Nested message and enum types in `TestExtensionOrderings2`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1161-pub mod test_extension_orderings2 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1164- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1165- pub my_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1166- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1167: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1168- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1169-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1170-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1241- #[prost(string, optional, tag = "27", default = "${unknown}")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1242- pub replacement_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1243- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1244: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1245-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1246-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1247-pub struct SparseEnumMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1248- #[prost(enumeration = "TestSparseEnum", optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1249- pub sparse_enum: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1250- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1251: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1252-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1253-/// Test String and Bytes: string is for valid UTF-8 strings +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1254-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1256- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1257- pub data: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1258- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1259: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1260-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1261-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1262-pub struct MoreString { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1263- #[prost(string, repeated, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1264- pub data: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1265- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1266: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1267-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1268-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1269-pub struct OneBytes { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1270- #[prost(bytes = "vec", optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1271- pub data: ::core::option::Option<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1272- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1273: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1274-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1275-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1276-pub struct MoreBytes { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1277- #[prost(bytes = "vec", repeated, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1278- pub data: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1279- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1280: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1281-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1282-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1283-pub struct ManyOptionalString { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1346- #[prost(string, optional, tag = "32")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1347- pub str32: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1348- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1349: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1350-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1351-/// Test int32, uint32, int64, uint64, and bool are all compatible +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1352-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1354- #[prost(int32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1355- pub data: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1356- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1357: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1358-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1359-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1360-pub struct Uint32Message { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1361- #[prost(uint32, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1362- pub data: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1363- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1364: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1365-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1366-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1367-pub struct Int64Message { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1368- #[prost(int64, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1369- pub data: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1370- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1371: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1372-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1373-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1374-pub struct Uint64Message { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1375- #[prost(uint64, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1376- pub data: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1377- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1378: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1379-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1380-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1381-pub struct BoolMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1382- #[prost(bool, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1383- pub data: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1384- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1385: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1386-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1387-/// Test oneofs. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1388-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1389-pub struct TestOneof { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1390- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1391: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1392- #[prost(oneof = "test_oneof::Foo", tags = "1, 2, 3, 4")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1393- pub foo: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1394-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1401- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1402- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1403- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1404: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1405- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1406- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1407- pub enum Foo { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1426- #[prost(group, optional, tag = "4")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1427- pub foogroup: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1428- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1429: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1430-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1431-/// Nested message and enum types in `TestOneofBackwardsCompatible`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1432-pub mod test_oneof_backwards_compatible { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1437- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1438- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1439- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1440: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1441- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1442-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1443-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1447- #[prost(string, optional, tag = "19", default = "BAZ")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1448- pub baz_string: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1449- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1450: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1451- #[prost(oneof = "test_oneof2::Foo", tags = "1, 2, 3, 4, 5, 6, 7, 8, 11, 30")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1452- pub foo: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1453- #[prost(oneof = "test_oneof2::Bar", tags = "12, 13, 14, 15, 16, 17, 20, 21, 22, 23")] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1462- #[prost(string, optional, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1463- pub b: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1464- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1465: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1466- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1467- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1468- pub struct NestedMessage { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1471- #[prost(int32, repeated, packed = "false", tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1472- pub corge_int: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1473- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1474: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1475- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1476- #[derive( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1477- Clone, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1562-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1563-pub struct TestRequiredOneof { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1564- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1565: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1566- #[prost(oneof = "test_required_oneof::Foo", tags = "1, 2, 3, 4")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1567- pub foo: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1568-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1573- #[prost(double, required, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1574- pub required_double: f64, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1575- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1576: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1577- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1578- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1579- pub enum Foo { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1618- #[prost(enumeration = "ForeignEnum", repeated, tag = "103")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1619- pub packed_enum: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1620- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1621: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1622-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1623-/// A message with the same fields as TestPackedTypes, but without packing. Used +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1624-/// to test packed <-> unpacked wire compatibility. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1653- #[prost(enumeration = "ForeignEnum", repeated, packed = "false", tag = "103")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1654- pub unpacked_enum: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1655- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1656: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1657-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1658-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1659-pub struct TestPackedExtensions { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1660- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1661: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1662-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1663-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1664-pub struct TestUnpackedExtensions { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1665- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1666: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1667-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1668-/// Used by ExtensionSetTest/DynamicExtensions. The test actually builds +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1669-/// a set of extensions to TestAllExtensions dynamically, based on the fields +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1691- #[prost(sint32, repeated, tag = "2006")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1692- pub packed_extension: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1693- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1694: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1695-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1696-/// Nested message and enum types in `TestDynamicExtensions`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1697-pub mod test_dynamic_extensions { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1700- #[prost(int32, optional, tag = "2100")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1701- pub dynamic_field: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1702- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1703: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1704- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1705- #[derive( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1706- Clone, +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1753- #[prost(bytes = "vec", repeated, tag = "12")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1754- pub repeated_bytes12: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1755- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1756: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1757-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1758-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1759-pub struct TestRepeatedScalarDifferentTagSizes { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1776- #[prost(uint64, repeated, packed = "false", tag = "262143")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1777- pub repeated_uint64: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1778- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1779: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1780-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1781-/// Test that if an optional or required message/group field appears multiple +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1782-/// times in the input, they need to be merged. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1793- #[prost(group, repeated, tag = "20")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1794- pub repeatedgroup: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1795- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1796: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1797-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1798-/// Nested message and enum types in `TestParsingMerge`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1799-pub mod test_parsing_merge { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1819- #[prost(message, repeated, tag = "1001")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1820- pub ext2: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1821- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1822: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1823- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1824- /// Nested message and enum types in `RepeatedFieldsGenerator`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1825- pub mod repeated_fields_generator { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1828- #[prost(message, optional, tag = "11")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1829- pub field1: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1830- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1831: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1832- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1833- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1834- pub struct Group2 { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1835- #[prost(message, optional, tag = "21")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1836- pub field1: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1837- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1838: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1839- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1840- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1841- #[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1843- #[prost(message, optional, tag = "11")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1844- pub optional_group_all_types: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1845- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1846: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1847- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1848- #[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1849- pub struct RepeatedGroup { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1850- #[prost(message, optional, tag = "21")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1851- pub repeated_group_all_types: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1852- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1853: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1854- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1855-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1856-/// Test that the correct exception is thrown by parseFrom in a corner case +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1860- #[prost(message, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1861- pub all_extensions: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1862- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1863: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1864-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1865-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1866-pub struct TestCommentInjectionMessage { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1868- #[prost(string, optional, tag = "1", default = "*/ <- Neither should this.")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1869- pub a: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1870- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1871: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1872-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1873-/// Used to check that the c++ code generator re-orders messages to reduce +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1874-/// padding. +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1887- #[prost(int64, optional, tag = "6")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1888- pub m6: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1889- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1890: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1891-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1892-/// Test that RPC services work. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1893-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1894-pub struct FooRequest { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1895- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1896: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1897-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1898-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1899-pub struct FooResponse { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1900- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1901: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1902-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1903-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1904-pub struct FooClientMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1905- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1906: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1907-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1908-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1909-pub struct FooServerMessage { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1910- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1911: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1912-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1913-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1914-pub struct BarRequest { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1915- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1916: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1917-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1918-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1919-pub struct BarResponse { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1920- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1921: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1922-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1923-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1924-pub struct TestJsonName { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1937- #[prost(int32, optional, tag = "7")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1938- pub fieldname7: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1939- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1940: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1941-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1942-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1943-pub struct TestHugeFieldNumbers { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1965- ::prost::alloc::string::String, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1966- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1967- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1968: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1969- #[prost( +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1970- oneof = "test_huge_field_numbers::OneofField", +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1971- tags = "536870011, 536870012, 536870013, 536870014" +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1979- #[prost(int32, optional, tag = "536870009")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1980- pub group_a: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1981- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:1982: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1983- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1984- #[derive(Clone, PartialEq, ::prost::Oneof)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-1985- pub enum OneofField { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2014- #[prost(int32, optional, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2015- pub field10: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2016- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2017: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2018-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2019-/// NOTE: Intentionally nested to mirror go/glep. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2020-#[derive(Clone, PartialEq, ::prost::Message)] +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2024- test_nested_group_extension_outer::Layer1OptionalGroup, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2025- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2026- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2027: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2028-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2029-/// Nested message and enum types in `TestNestedGroupExtensionOuter`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2030-pub mod test_nested_group_extension_outer { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2039- layer1_optional_group::Layer2AnotherOptionalRepeatedGroup, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2040- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2041- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2042: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2043- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2044- /// Nested message and enum types in `Layer1OptionalGroup`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2045- pub mod layer1_optional_group { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2048- #[prost(string, optional, tag = "6")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2049- pub another_field: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2050- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2051: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2052- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2053- #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2054- pub struct Layer2AnotherOptionalRepeatedGroup { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2055- #[prost(string, optional, tag = "5")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2056- pub but_why_tho: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2057- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2058: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2059- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2060- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2061-} +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2064- #[prost(string, optional, tag = "1")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2065- pub inner_name: ::core::option::Option<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2066- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2067: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2068-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2069-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2070-pub struct TestExtensionRangeSerialize { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2077- #[prost(int32, optional, tag = "13")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2078- pub foo_four: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2079- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2080: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2081-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2082-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2083-pub struct TestVerifyInt32Simple { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2090- #[prost(int32, optional, tag = "64")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2091- pub optional_int32_64: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2092- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2093: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2094-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2095-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2096-pub struct TestVerifyInt32 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2107- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2108- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2109- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2110: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2111-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2112-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2113-pub struct TestVerifyMostlyInt32 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2130- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2131- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2132- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2133: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2134-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2135-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2136-pub struct TestVerifyMostlyInt32BigFieldNumber { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2155- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2156- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2157- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2158: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2159-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2160-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2161-pub struct TestVerifyUint32Simple { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2168- #[prost(uint32, optional, tag = "64")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2169- pub optional_uint32_64: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2170- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2171: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2172-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2173-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2174-pub struct TestVerifyUint32 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2185- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2186- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2187- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2188: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2189-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2190-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2191-pub struct TestVerifyOneUint32 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2202- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2203- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2204- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2205: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2206-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2207-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2208-pub struct TestVerifyOneInt32BigFieldNumber { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2221- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2222- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2223- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2224: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2225-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2226-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2227-pub struct TestVerifyInt32BigFieldNumber { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2242- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2243- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2244- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2245: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2246-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2247-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2248-pub struct TestVerifyUint32BigFieldNumber { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2263- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2264- pub repeated_all_types: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2265- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2266: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2267-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2268-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2269-pub struct TestVerifyBigFieldNumberUint32 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2272- test_verify_big_field_number_uint32::Nested, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2273- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2274- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2275: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2276-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2277-/// Nested message and enum types in `TestVerifyBigFieldNumberUint32`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2278-pub mod test_verify_big_field_number_uint32 { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2299- #[prost(message, repeated, tag = "10")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2300- pub repeated_nested: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2301- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2302: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2303- } +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2304-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2305-/// This message contains different kind of enums to exercise the different +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2442- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2443- pub other_field: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2444- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2445: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2446-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2447-/// Nested message and enum types in `EnumParseTester`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2448-pub mod enum_parse_tester { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2734- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2735- pub other_field: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2736- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2737: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2738-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2739-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2740-pub struct Int32ParseTester { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2760- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2761- pub other_field: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2762- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2763: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2764-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2765-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2766-pub struct Int64ParseTester { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2786- #[prost(int32, optional, tag = "99")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2787- pub other_field: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2788- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2789: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2790-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2791-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2792-pub struct InlinedStringIdxRegressionProto { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2806- #[prost(bytes = "vec", optional, tag = "4")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2807- pub str3: ::core::option::Option<::prost::alloc::vec::Vec>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2808- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2809: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2810-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2811-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2812-pub struct StringParseTester { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2829- ::prost::alloc::string::String, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2830- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2831- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2832: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2833-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2834-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2835-pub struct BadFieldNames { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2838- #[prost(int32, optional, tag = "2")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2839- pub r#for: ::core::option::Option, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2840- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2841: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2842-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2843-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2844-pub struct TestNestedMessageRedaction { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2851- ::prost::alloc::string::String, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2852- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2853- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2854: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2855-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2856-#[derive(Clone, PartialEq, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2857-pub struct RedactedFields { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2890- ::prost::alloc::string::String, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2891- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2892- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2893: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2894-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2895-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2896-pub struct TestCord { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2901- ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2902- >, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2903- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2904: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2905-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2906-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2907-pub struct TestPackedEnumSmallRange { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2912- )] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2913- pub vals: ::prost::alloc::vec::Vec, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2914- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2915: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2916-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2917-/// Nested message and enum types in `TestPackedEnumSmallRange`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2918-pub mod test_packed_enum_small_range { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2962-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2963-pub struct EnumsForBenchmark { +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2964- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:2965: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2966-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2967-/// Nested message and enum types in `EnumsForBenchmark`. +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-2968-pub mod enums_for_benchmark { +-- +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-3269- #[prost(string, repeated, tag = "32")] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-3270- pub repeated_string_32: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-3271- #[prost(unknown)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs:3272: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-3273-} +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-3274-#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +target/debug/build/protobuf-e966870765d54cd0/out/protobuf_unittest.rs-3275-#[repr(i32)] +-- +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-6-} +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-bd999df1c64ef9e0/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-6-} +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2015-a48622ae73f31608/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-6-} +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2018-0f776c36fdf85aa4/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-6-} +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-2024-53467e4869fc7f29/out/unknown_fields.rs-19-} +-- +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-2-#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-3-pub struct V1 { +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-4- #[prost(unknown)] +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs:5: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-6-} +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-7-#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-8-pub struct V2 { +-- +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-15- #[prost(string, tag = "4")] +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-16- pub d: ::prost::alloc::string::String, +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-17- #[prost(unknown)] +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs:18: pub unknown_fields: ::prost::UnknownFieldSet, +target/debug/build/tests-no-std-5366dd24b7bd0d4c/out/unknown_fields.rs-19-} +-- +third_party/protobuf/conformance/conformance.pb.cc-298- : ::google::protobuf::Message(arena) { +third_party/protobuf/conformance/conformance.pb.cc-299- FailureSet* const _this = this; +third_party/protobuf/conformance/conformance.pb.cc-300- (void)_this; +third_party/protobuf/conformance/conformance.pb.cc:301: _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( +third_party/protobuf/conformance/conformance.pb.cc-302- from._internal_metadata_); +third_party/protobuf/conformance/conformance.pb.cc-303- new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); +third_party/protobuf/conformance/conformance.pb.cc-304- +-- +third_party/protobuf/conformance/conformance.pb.cc-315-} +third_party/protobuf/conformance/conformance.pb.cc-316-FailureSet::~FailureSet() { +third_party/protobuf/conformance/conformance.pb.cc-317- // @@protoc_insertion_point(destructor:conformance.FailureSet) +third_party/protobuf/conformance/conformance.pb.cc:318: _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.cc-319- SharedDtor(); +third_party/protobuf/conformance/conformance.pb.cc-320-} +third_party/protobuf/conformance/conformance.pb.cc-321-inline void FailureSet::SharedDtor() { +-- +third_party/protobuf/conformance/conformance.pb.cc-331- (void) cached_has_bits; +third_party/protobuf/conformance/conformance.pb.cc-332- +third_party/protobuf/conformance/conformance.pb.cc-333- _impl_.failure_.Clear(); +third_party/protobuf/conformance/conformance.pb.cc:334: _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.cc-335-} +third_party/protobuf/conformance/conformance.pb.cc-336- +third_party/protobuf/conformance/conformance.pb.cc-337-const char* FailureSet::_InternalParse( +-- +third_party/protobuf/conformance/conformance.pb.cc-392- if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { +third_party/protobuf/conformance/conformance.pb.cc-393- target = +third_party/protobuf/conformance/conformance.pb.cc-394- ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( +third_party/protobuf/conformance/conformance.pb.cc:395: _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); +third_party/protobuf/conformance/conformance.pb.cc-396- } +third_party/protobuf/conformance/conformance.pb.cc-397- // @@protoc_insertion_point(serialize_to_array_end:conformance.FailureSet) +third_party/protobuf/conformance/conformance.pb.cc-398- return target; +-- +third_party/protobuf/conformance/conformance.pb.cc-432- (void) cached_has_bits; +third_party/protobuf/conformance/conformance.pb.cc-433- +third_party/protobuf/conformance/conformance.pb.cc-434- _this->_internal_mutable_failure()->MergeFrom(from._internal_failure()); +third_party/protobuf/conformance/conformance.pb.cc:435: _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +third_party/protobuf/conformance/conformance.pb.cc-436-} +third_party/protobuf/conformance/conformance.pb.cc-437- +third_party/protobuf/conformance/conformance.pb.cc-438-void FailureSet::CopyFrom(const FailureSet& from) { +-- +third_party/protobuf/conformance/conformance.pb.cc-498- : ::google::protobuf::Message(arena) { +third_party/protobuf/conformance/conformance.pb.cc-499- ConformanceRequest* const _this = this; +third_party/protobuf/conformance/conformance.pb.cc-500- (void)_this; +third_party/protobuf/conformance/conformance.pb.cc:501: _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( +third_party/protobuf/conformance/conformance.pb.cc-502- from._internal_metadata_); +third_party/protobuf/conformance/conformance.pb.cc-503- new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); +third_party/protobuf/conformance/conformance.pb.cc-504- ::uint32_t cached_has_bits = _impl_._has_bits_[0]; +-- +third_party/protobuf/conformance/conformance.pb.cc-550-} +third_party/protobuf/conformance/conformance.pb.cc-551-ConformanceRequest::~ConformanceRequest() { +third_party/protobuf/conformance/conformance.pb.cc-552- // @@protoc_insertion_point(destructor:conformance.ConformanceRequest) +third_party/protobuf/conformance/conformance.pb.cc:553: _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.cc-554- SharedDtor(); +third_party/protobuf/conformance/conformance.pb.cc-555-} +third_party/protobuf/conformance/conformance.pb.cc-556-inline void ConformanceRequest::SharedDtor() { +-- +third_party/protobuf/conformance/conformance.pb.cc-609- reinterpret_cast(&_impl_.requested_output_format_)) + sizeof(_impl_.print_unknown_fields_)); +third_party/protobuf/conformance/conformance.pb.cc-610- clear_payload(); +third_party/protobuf/conformance/conformance.pb.cc-611- _impl_._has_bits_.Clear(); +third_party/protobuf/conformance/conformance.pb.cc:612: _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.cc-613-} +third_party/protobuf/conformance/conformance.pb.cc-614- +third_party/protobuf/conformance/conformance.pb.cc-615-const char* ConformanceRequest::_InternalParse( +-- +third_party/protobuf/conformance/conformance.pb.cc-775- if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { +third_party/protobuf/conformance/conformance.pb.cc-776- target = +third_party/protobuf/conformance/conformance.pb.cc-777- ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( +third_party/protobuf/conformance/conformance.pb.cc:778: _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); +third_party/protobuf/conformance/conformance.pb.cc-779- } +third_party/protobuf/conformance/conformance.pb.cc-780- // @@protoc_insertion_point(serialize_to_array_end:conformance.ConformanceRequest) +third_party/protobuf/conformance/conformance.pb.cc-781- return target; +-- +third_party/protobuf/conformance/conformance.pb.cc-904- break; +third_party/protobuf/conformance/conformance.pb.cc-905- } +third_party/protobuf/conformance/conformance.pb.cc-906- } +third_party/protobuf/conformance/conformance.pb.cc:907: _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +third_party/protobuf/conformance/conformance.pb.cc-908-} +third_party/protobuf/conformance/conformance.pb.cc-909- +third_party/protobuf/conformance/conformance.pb.cc-910-void ConformanceRequest::CopyFrom(const ConformanceRequest& from) { +-- +third_party/protobuf/conformance/conformance.pb.cc-969- : ::google::protobuf::Message(arena) { +third_party/protobuf/conformance/conformance.pb.cc-970- ConformanceResponse* const _this = this; +third_party/protobuf/conformance/conformance.pb.cc-971- (void)_this; +third_party/protobuf/conformance/conformance.pb.cc:972: _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( +third_party/protobuf/conformance/conformance.pb.cc-973- from._internal_metadata_); +third_party/protobuf/conformance/conformance.pb.cc-974- new (&_impl_) Impl_(internal_visibility(), arena, from._impl_); +third_party/protobuf/conformance/conformance.pb.cc-975- switch (result_case()) { +-- +third_party/protobuf/conformance/conformance.pb.cc-1018-} +third_party/protobuf/conformance/conformance.pb.cc-1019-ConformanceResponse::~ConformanceResponse() { +third_party/protobuf/conformance/conformance.pb.cc-1020- // @@protoc_insertion_point(destructor:conformance.ConformanceResponse) +third_party/protobuf/conformance/conformance.pb.cc:1021: _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.cc-1022- SharedDtor(); +third_party/protobuf/conformance/conformance.pb.cc-1023-} +third_party/protobuf/conformance/conformance.pb.cc-1024-inline void ConformanceResponse::SharedDtor() { +-- +third_party/protobuf/conformance/conformance.pb.cc-1085- (void) cached_has_bits; +third_party/protobuf/conformance/conformance.pb.cc-1086- +third_party/protobuf/conformance/conformance.pb.cc-1087- clear_result(); +third_party/protobuf/conformance/conformance.pb.cc:1088: _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.cc-1089-} +third_party/protobuf/conformance/conformance.pb.cc-1090- +third_party/protobuf/conformance/conformance.pb.cc-1091-const char* ConformanceResponse::_InternalParse( +-- +third_party/protobuf/conformance/conformance.pb.cc-1232- if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { +third_party/protobuf/conformance/conformance.pb.cc-1233- target = +third_party/protobuf/conformance/conformance.pb.cc-1234- ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( +third_party/protobuf/conformance/conformance.pb.cc:1235: _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); +third_party/protobuf/conformance/conformance.pb.cc-1236- } +third_party/protobuf/conformance/conformance.pb.cc-1237- // @@protoc_insertion_point(serialize_to_array_end:conformance.ConformanceResponse) +third_party/protobuf/conformance/conformance.pb.cc-1238- return target; +-- +third_party/protobuf/conformance/conformance.pb.cc-1365- break; +third_party/protobuf/conformance/conformance.pb.cc-1366- } +third_party/protobuf/conformance/conformance.pb.cc-1367- } +third_party/protobuf/conformance/conformance.pb.cc:1368: _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +third_party/protobuf/conformance/conformance.pb.cc-1369-} +third_party/protobuf/conformance/conformance.pb.cc-1370- +third_party/protobuf/conformance/conformance.pb.cc-1371-void ConformanceResponse::CopyFrom(const ConformanceResponse& from) { +-- +third_party/protobuf/conformance/conformance.pb.cc-1421-} +third_party/protobuf/conformance/conformance.pb.cc-1422-JspbEncodingConfig::~JspbEncodingConfig() { +third_party/protobuf/conformance/conformance.pb.cc-1423- // @@protoc_insertion_point(destructor:conformance.JspbEncodingConfig) +third_party/protobuf/conformance/conformance.pb.cc:1424: _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.cc-1425- SharedDtor(); +third_party/protobuf/conformance/conformance.pb.cc-1426-} +third_party/protobuf/conformance/conformance.pb.cc-1427-inline void JspbEncodingConfig::SharedDtor() { +-- +third_party/protobuf/conformance/conformance.pb.cc-1437- (void) cached_has_bits; +third_party/protobuf/conformance/conformance.pb.cc-1438- +third_party/protobuf/conformance/conformance.pb.cc-1439- _impl_.use_jspb_array_any_format_ = false; +third_party/protobuf/conformance/conformance.pb.cc:1440: _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.cc-1441-} +third_party/protobuf/conformance/conformance.pb.cc-1442- +third_party/protobuf/conformance/conformance.pb.cc-1443-const char* JspbEncodingConfig::_InternalParse( +-- +third_party/protobuf/conformance/conformance.pb.cc-1494- if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { +third_party/protobuf/conformance/conformance.pb.cc-1495- target = +third_party/protobuf/conformance/conformance.pb.cc-1496- ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( +third_party/protobuf/conformance/conformance.pb.cc:1497: _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); +third_party/protobuf/conformance/conformance.pb.cc-1498- } +third_party/protobuf/conformance/conformance.pb.cc-1499- // @@protoc_insertion_point(serialize_to_array_end:conformance.JspbEncodingConfig) +third_party/protobuf/conformance/conformance.pb.cc-1500- return target; +-- +third_party/protobuf/conformance/conformance.pb.cc-1535- if (from._internal_use_jspb_array_any_format() != 0) { +third_party/protobuf/conformance/conformance.pb.cc-1536- _this->_internal_set_use_jspb_array_any_format(from._internal_use_jspb_array_any_format()); +third_party/protobuf/conformance/conformance.pb.cc-1537- } +third_party/protobuf/conformance/conformance.pb.cc:1538: _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +third_party/protobuf/conformance/conformance.pb.cc-1539-} +third_party/protobuf/conformance/conformance.pb.cc-1540- +third_party/protobuf/conformance/conformance.pb.cc-1541-void JspbEncodingConfig::CopyFrom(const JspbEncodingConfig& from) { +-- +third_party/protobuf/conformance/conformance.pb.h-188- return *this; +third_party/protobuf/conformance/conformance.pb.h-189- } +third_party/protobuf/conformance/conformance.pb.h-190- +third_party/protobuf/conformance/conformance.pb.h:191: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +third_party/protobuf/conformance/conformance.pb.h-192- ABSL_ATTRIBUTE_LIFETIME_BOUND { +third_party/protobuf/conformance/conformance.pb.h:193: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +third_party/protobuf/conformance/conformance.pb.h-194- } +third_party/protobuf/conformance/conformance.pb.h:195: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +third_party/protobuf/conformance/conformance.pb.h-196- ABSL_ATTRIBUTE_LIFETIME_BOUND { +third_party/protobuf/conformance/conformance.pb.h:197: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.h-198- } +third_party/protobuf/conformance/conformance.pb.h-199- +third_party/protobuf/conformance/conformance.pb.h-200- static const ::google::protobuf::Descriptor* descriptor() { +-- +third_party/protobuf/conformance/conformance.pb.h-363- return *this; +third_party/protobuf/conformance/conformance.pb.h-364- } +third_party/protobuf/conformance/conformance.pb.h-365- +third_party/protobuf/conformance/conformance.pb.h:366: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +third_party/protobuf/conformance/conformance.pb.h-367- ABSL_ATTRIBUTE_LIFETIME_BOUND { +third_party/protobuf/conformance/conformance.pb.h:368: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +third_party/protobuf/conformance/conformance.pb.h-369- } +third_party/protobuf/conformance/conformance.pb.h:370: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +third_party/protobuf/conformance/conformance.pb.h-371- ABSL_ATTRIBUTE_LIFETIME_BOUND { +third_party/protobuf/conformance/conformance.pb.h:372: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.h-373- } +third_party/protobuf/conformance/conformance.pb.h-374- +third_party/protobuf/conformance/conformance.pb.h-375- static const ::google::protobuf::Descriptor* descriptor() { +-- +third_party/protobuf/conformance/conformance.pb.h-556- return *this; +third_party/protobuf/conformance/conformance.pb.h-557- } +third_party/protobuf/conformance/conformance.pb.h-558- +third_party/protobuf/conformance/conformance.pb.h:559: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +third_party/protobuf/conformance/conformance.pb.h-560- ABSL_ATTRIBUTE_LIFETIME_BOUND { +third_party/protobuf/conformance/conformance.pb.h:561: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +third_party/protobuf/conformance/conformance.pb.h-562- } +third_party/protobuf/conformance/conformance.pb.h:563: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +third_party/protobuf/conformance/conformance.pb.h-564- ABSL_ATTRIBUTE_LIFETIME_BOUND { +third_party/protobuf/conformance/conformance.pb.h:565: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.h-566- } +third_party/protobuf/conformance/conformance.pb.h-567- +third_party/protobuf/conformance/conformance.pb.h-568- static const ::google::protobuf::Descriptor* descriptor() { +-- +third_party/protobuf/conformance/conformance.pb.h-923- return *this; +third_party/protobuf/conformance/conformance.pb.h-924- } +third_party/protobuf/conformance/conformance.pb.h-925- +third_party/protobuf/conformance/conformance.pb.h:926: inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const +third_party/protobuf/conformance/conformance.pb.h-927- ABSL_ATTRIBUTE_LIFETIME_BOUND { +third_party/protobuf/conformance/conformance.pb.h:928: return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); +third_party/protobuf/conformance/conformance.pb.h-929- } +third_party/protobuf/conformance/conformance.pb.h:930: inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() +third_party/protobuf/conformance/conformance.pb.h-931- ABSL_ATTRIBUTE_LIFETIME_BOUND { +third_party/protobuf/conformance/conformance.pb.h:932: return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); +third_party/protobuf/conformance/conformance.pb.h-933- } +third_party/protobuf/conformance/conformance.pb.h-934- +third_party/protobuf/conformance/conformance.pb.h-935- static const ::google::protobuf::Descriptor* descriptor() { +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-57- #endif +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-58- { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-59- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Person()); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:60: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-61- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-62- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-63- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-90- email_ = other.email_; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-91- phones_ = other.phones_.Clone(); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-92- lastUpdated_ = other.lastUpdated_ != null ? other.lastUpdated_.Clone() : null; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:93: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-94- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-95- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-96- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-306- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-307- LastUpdated.MergeFrom(other.LastUpdated); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-308- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:309: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-310- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-311- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-312- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-319- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-320- switch(tag) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-321- default: +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:322: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-323- break; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-324- case 10: { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-325- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-357- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-358- switch(tag) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-359- default: +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:360: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-361- break; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-362- case 10: { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-363- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-405- #endif +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-406- { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-407- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new PhoneNumber()); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:408: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-409- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-410- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-411- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-435- public PhoneNumber(PhoneNumber other) : this() { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-436- number_ = other.number_; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-437- type_ = other.type_; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:438: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-439- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-440- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-441- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-572- if (other.Type != global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneType.Mobile) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-573- Type = other.Type; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-574- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:575: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-576- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-577- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-578- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-585- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-586- switch(tag) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-587- default: +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:588: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-589- break; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-590- case 10: { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-591- Number = input.ReadString(); +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-608- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-609- switch(tag) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-610- default: +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:611: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-612- break; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-613- case 10: { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-614- Number = input.ReadString(); +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-640- #endif +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-641- { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-642- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new AddressBook()); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:643: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-644- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-645- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-646- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-669- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-670- public AddressBook(AddressBook other) : this() { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-671- people_ = other.people_.Clone(); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:672: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-673- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-674- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-675- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-767- return; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-768- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-769- people_.Add(other.people_); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:770: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-771- } +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-772- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-773- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-780- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-781- switch(tag) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-782- default: +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:783: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-784- break; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-785- case 10: { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-786- people_.AddEntriesFrom(input, _repeated_people_codec); +-- +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-799- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-800- switch(tag) { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-801- default: +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs:802: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-803- break; +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-804- case 10: { +third_party/protobuf/csharp/src/AddressBook/Addressbook.pb.cs-805- people_.AddEntriesFrom(ref input, _repeated_people_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-116- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-117- { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-118- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FailureSet()); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:119: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-120- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-121- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-122- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-145- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-146- public FailureSet(FailureSet other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-147- failure_ = other.failure_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:148: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-149- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-150- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-151- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-243- return; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-244- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-245- failure_.Add(other.failure_); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:246: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-247- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-248- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-249- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-256- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-257- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-258- default: +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:259: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-260- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-261- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-262- failure_.AddEntriesFrom(input, _repeated_failure_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-275- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-276- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-277- default: +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:278: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-279- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-280- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-281- failure_.AddEntriesFrom(ref input, _repeated_failure_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-302- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-303- { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-304- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ConformanceRequest()); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:305: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-306- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-307- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-308- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-350- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-351- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-352- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:353: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-354- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-355- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-356- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-793- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-794- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-795- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:796: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-797- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-798- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-799- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-806- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-807- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-808- default: +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:809: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-810- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-811- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-812- ProtobufPayload = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-860- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-861- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-862- default: +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:863: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-864- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-865- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-866- ProtobufPayload = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-918- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-919- { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-920- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ConformanceResponse()); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:921: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-922- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-923- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-924- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-976- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-977- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-978- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:979: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-980- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-981- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-982- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1511- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1512- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1513- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:1514: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1515- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1516- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1517- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1524- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1525- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1526- default: +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:1527: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1528- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1529- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1530- ParseError = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1575- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1576- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1577- default: +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:1578: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1579- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1580- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1581- ParseError = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1630- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1631- { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1632- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new JspbEncodingConfig()); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:1633: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1634- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1635- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1636- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1659- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1660- public JspbEncodingConfig(JspbEncodingConfig other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1661- useJspbArrayAnyFormat_ = other.useJspbArrayAnyFormat_; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:1662: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1663- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1664- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1665- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1771- if (other.UseJspbArrayAnyFormat != false) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1772- UseJspbArrayAnyFormat = other.UseJspbArrayAnyFormat; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1773- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:1774: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1775- } +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1776- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1777- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1784- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1785- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1786- default: +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:1787: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1788- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1789- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1790- UseJspbArrayAnyFormat = input.ReadBool(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1803- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1804- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1805- default: +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs:1806: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1807- break; +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1808- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.pb.cs-1809- UseJspbArrayAnyFormat = input.ReadBool(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-184- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-185- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-186- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMap()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:187: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-188- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-189- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-190- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-229- mapInt32Bytes_ = other.mapInt32Bytes_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-230- mapInt32Enum_ = other.mapInt32Enum_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-231- mapInt32ForeignMessage_ = other.mapInt32ForeignMessage_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:232: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-233- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-234- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-235- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-599- mapInt32Bytes_.MergeFrom(other.mapInt32Bytes_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-600- mapInt32Enum_.MergeFrom(other.mapInt32Enum_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-601- mapInt32ForeignMessage_.MergeFrom(other.mapInt32ForeignMessage_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:602: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-603- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-604- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-605- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-612- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-613- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-614- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:615: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-616- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-617- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-618- mapInt32Int32_.AddEntriesFrom(input, _map_mapInt32Int32_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-695- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-696- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-697- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:698: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-699- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-700- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-701- mapInt32Int32_.AddEntriesFrom(ref input, _map_mapInt32Int32_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-779- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-780- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-781- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMapSubmessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:782: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-783- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-784- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-785- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-808- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-809- public TestMapSubmessage(TestMapSubmessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-810- testMap_ = other.testMap_ != null ? other.testMap_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:811: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-812- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-813- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-814- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-920- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-921- TestMap.MergeFrom(other.TestMap); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-922- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:923: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-924- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-925- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-926- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-933- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-934- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-935- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:936: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-937- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-938- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-939- if (testMap_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-955- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-956- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-957- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:958: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-959- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-960- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-961- if (testMap_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-978- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-979- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-980- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMessageMap()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:981: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-982- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-983- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-984- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1007- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1008- public TestMessageMap(TestMessageMap other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1009- mapInt32Message_ = other.mapInt32Message_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1010: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1011- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1012- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1013- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1105- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1106- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1107- mapInt32Message_.MergeFrom(other.mapInt32Message_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1108: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1109- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1110- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1111- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1118- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1119- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1120- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1121: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1122- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1123- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1124- mapInt32Message_.AddEntriesFrom(input, _map_mapInt32Message_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1137- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1138- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1139- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1140: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1141- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1142- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1143- mapInt32Message_.AddEntriesFrom(ref input, _map_mapInt32Message_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1160- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1161- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1162- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestSameTypeMap()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1163: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1164- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1165- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1166- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1190- public TestSameTypeMap(TestSameTypeMap other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1191- map1_ = other.map1_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1192- map2_ = other.map2_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1193: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1194- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1195- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1196- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1305- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1306- map1_.MergeFrom(other.map1_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1307- map2_.MergeFrom(other.map2_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1308: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1309- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1310- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1311- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1318- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1319- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1320- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1321: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1322- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1323- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1324- map1_.AddEntriesFrom(input, _map_map1_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1341- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1342- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1343- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1344: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1345- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1346- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1347- map1_.AddEntriesFrom(ref input, _map_map1_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1365- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1366- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1367- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestArenaMap()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1368: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1369- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1370- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1371- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1408- mapBoolBool_ = other.mapBoolBool_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1409- mapInt32Enum_ = other.mapInt32Enum_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1410- mapInt32ForeignMessage_ = other.mapInt32ForeignMessage_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1411: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1412- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1413- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1414- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1744- mapBoolBool_.MergeFrom(other.mapBoolBool_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1745- mapInt32Enum_.MergeFrom(other.mapInt32Enum_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1746- mapInt32ForeignMessage_.MergeFrom(other.mapInt32ForeignMessage_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1747: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1748- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1749- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1750- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1757- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1758- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1759- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1760: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1761- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1762- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1763- mapInt32Int32_.AddEntriesFrom(input, _map_mapInt32Int32_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1832- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1833- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1834- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1835: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1836- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1837- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1838- mapInt32Int32_.AddEntriesFrom(ref input, _map_mapInt32Int32_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1912- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1913- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1914- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageContainingEnumCalledType()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1915: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1916- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1917- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1918- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1941- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1942- public MessageContainingEnumCalledType(MessageContainingEnumCalledType other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1943- type_ = other.type_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:1944: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1945- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1946- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-1947- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2039- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2040- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2041- type_.MergeFrom(other.type_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:2042: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2043- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2044- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2045- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2052- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2053- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2054- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:2055: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2056- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2057- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2058- type_.AddEntriesFrom(input, _map_type_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2071- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2072- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2073- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:2074: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2075- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2076- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2077- type_.AddEntriesFrom(ref input, _map_type_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2106- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2107- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2108- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageContainingMapCalledEntry()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:2109: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2110- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2111- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2112- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2135- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2136- public MessageContainingMapCalledEntry(MessageContainingMapCalledEntry other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2137- entry_ = other.entry_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:2138: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2139- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2140- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2141- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2233- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2234- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2235- entry_.MergeFrom(other.entry_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:2236: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2237- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2238- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2239- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2246- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2247- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2248- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:2249: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2250- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2251- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2252- entry_.AddEntriesFrom(input, _map_entry_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2265- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2266- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2267- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs:2268: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2269- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2270- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.pb.cs-2271- entry_.AddEntriesFrom(ref input, _map_entry_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-42- /// +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-43- public sealed partial class TestMessage : pb::IMessage { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-44- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs:45: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-46- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-47- public static pb::MessageParser Parser { get { return _parser; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-48- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-65- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-66- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-67- public TestMessage(TestMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs:68: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-69- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-70- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-71- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-124- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-125- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-126- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs:127: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-128- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-129- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-130- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-133- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-134- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-135- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs:136: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-137- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-138- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs-139- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-333- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-334- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-335- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestAllTypesProto2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:336: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-337- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-338- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-339- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-521- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-522- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-523- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:524: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-525- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-526- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-527- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4565- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4566- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4567- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:4568: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4569- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4570- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4571- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4579- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4580- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4581- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:4582: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4583- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4584- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-4585- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5189- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5190- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5191- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:5192: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5193- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5194- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5195- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5834- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5835- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5836- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:5837: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5838- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5839- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5840- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5866- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5867- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5868- corecursive_ = other.corecursive_ != null ? other.corecursive_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:5869: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5870- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5871- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-5872- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6021- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6022- Corecursive.MergeFrom(other.Corecursive); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6023- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6024: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6025- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6026- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6027- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6034- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6035- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6036- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6037: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6038- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6039- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6040- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6060- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6061- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6062- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6063: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6064- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6065- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6066- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6090- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6091- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6092- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Data()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6093: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6094- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6095- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6096- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6122- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6123- groupInt32_ = other.groupInt32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6124- groupUint32_ = other.groupUint32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6125: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6126- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6127- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6128- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6289- if (other.HasGroupUint32) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6290- GroupUint32 = other.GroupUint32; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6291- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6292: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6293- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6294- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6295- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6304- case 1612: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6305- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6306- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6307: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6308- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6309- case 1616: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6310- GroupInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6329- case 1612: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6330- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6331- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6332: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6333- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6334- case 1616: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6335- GroupInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6356- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6357- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6358- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageSetCorrect()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6359: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6360- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6361- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6362- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6386- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6387- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6388- public MessageSetCorrect(MessageSetCorrect other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6389: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6390- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6391- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6392- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6484- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6485- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6486- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6487: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6488- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6489- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6490- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6498- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6499- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6500- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6501: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6502- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6503- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6504- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6515- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6516- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6517- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6518: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6519- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6520- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6521- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6554- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6555- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6556- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageSetCorrectExtension1()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6557: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6558- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6559- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6560- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6583- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6584- public MessageSetCorrectExtension1(MessageSetCorrectExtension1 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6585- str_ = other.str_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6586: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6587- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6588- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6589- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6706- if (other.HasStr) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6707- Str = other.Str; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6708- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6709: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6710- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6711- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6712- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6719- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6720- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6721- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6722: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6723- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6724- case 202: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6725- Str = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6738- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6739- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6740- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6741: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6742- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6743- case 202: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6744- Str = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6768- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6769- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6770- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageSetCorrectExtension2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6771: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6772- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6773- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6774- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6799- public MessageSetCorrectExtension2(MessageSetCorrectExtension2 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6800- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6801- i_ = other.i_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6802: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6803- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6804- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6805- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6923- if (other.HasI) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6924- I = other.I; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6925- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6926: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6927- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6928- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6929- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6936- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6937- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6938- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6939: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6940- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6941- case 72: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6942- I = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6955- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6956- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6957- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6958: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6959- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6960- case 72: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6961- I = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6990- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6991- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6992- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ForeignMessageProto2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:6993: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6994- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6995- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-6996- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7021- public ForeignMessageProto2(ForeignMessageProto2 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7022- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7023- c_ = other.c_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7024: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7025- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7026- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7027- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7145- if (other.HasC) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7146- C = other.C; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7147- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7148: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7149- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7150- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7151- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7158- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7159- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7160- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7161: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7162- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7163- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7164- C = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7177- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7178- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7179- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7180: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7181- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7182- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7183- C = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7197- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7198- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7199- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new UnknownToTestAllTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7200: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7201- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7202- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7203- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7233- optionalGroup_ = other.HasOptionalGroup ? other.optionalGroup_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7234- optionalBool_ = other.optionalBool_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7235- repeatedInt32_ = other.repeatedInt32_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7236: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7237- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7238- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7239- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7535- OptionalBool = other.OptionalBool; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7536- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7537- repeatedInt32_.Add(other.repeatedInt32_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7538: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7539- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7540- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7541- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7548- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7549- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7550- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7551: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7552- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7553- case 8008: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7554- OptionalInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7594- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7595- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7596- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7597: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7598- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7599- case 8008: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7600- OptionalInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7644- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7645- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7646- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OptionalGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7647: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7648- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7649- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7650- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7675- public OptionalGroup(OptionalGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7676- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7677- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7678: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7679- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7680- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7681- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7799- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7800- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7801- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7802: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7803- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7804- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7805- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7814- case 8036: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7815- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7816- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7817: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7818- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7819- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7820- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7835- case 8036: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7836- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7837- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7838: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7839- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7840- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7841- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7860- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7861- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7862- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NullHypothesisProto2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7863: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7864- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7865- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7866- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7888- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7889- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7890- public NullHypothesisProto2(NullHypothesisProto2 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7891: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7892- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7893- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7894- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7969- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7970- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7971- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7972: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7973- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7974- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7975- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7982- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7983- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7984- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:7985: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7986- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7987- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7988- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7997- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7998- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-7999- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8000: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8001- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8002- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8003- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8013- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8014- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8015- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EnumOnlyProto2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8016: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8017- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8018- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8019- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8041- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8042- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8043- public EnumOnlyProto2(EnumOnlyProto2 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8044: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8045- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8046- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8047- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8122- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8123- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8124- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8125: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8126- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8127- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8128- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8135- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8136- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8137- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8138: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8139- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8140- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8141- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8150- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8151- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8152- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8153: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8154- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8155- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8156- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8179- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8180- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8181- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneStringProto2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8182: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8183- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8184- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8185- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8208- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8209- public OneStringProto2(OneStringProto2 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8210- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8211: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8212- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8213- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8214- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8331- if (other.HasData) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8332- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8333- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8334: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8335- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8336- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8337- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8344- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8345- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8346- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8347: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8348- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8349- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8350- Data = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8363- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8364- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8365- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8366: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8367- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8368- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8369- Data = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8383- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8384- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8385- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ProtoWithKeywords()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8386: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8387- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8388- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8389- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8416- inline_ = other.inline_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8417- concept_ = other.concept_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8418- requires_ = other.requires_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8419: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8420- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8421- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8422- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8599- Concept = other.Concept; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8600- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8601- requires_.Add(other.requires_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8602: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8603- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8604- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8605- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8612- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8613- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8614- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8615: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8616- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8617- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8618- Inline = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8639- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8640- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8641- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8642: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8643- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8644- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8645- Inline = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8667- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8668- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8669- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestAllRequiredTypesProto2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8670: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8671- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8672- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8673- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8738- defaultBool_ = other.defaultBool_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8739- defaultString_ = other.defaultString_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8740- defaultBytes_ = other.defaultBytes_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:8741: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8742- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8743- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-8744- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10467- DefaultBytes = other.DefaultBytes; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10468- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10469- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:10470: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10471- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10472- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10473- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10481- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10482- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10483- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:10484: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10485- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10486- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10487- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10669- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10670- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10671- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:10672: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10673- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10674- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10675- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10892- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10893- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10894- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:10895: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10896- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10897- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10898- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10925- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10926- corecursive_ = other.corecursive_ != null ? other.corecursive_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10927- optionalCorecursive_ = other.optionalCorecursive_ != null ? other.optionalCorecursive_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:10928: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10929- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10930- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-10931- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11111- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11112- OptionalCorecursive.MergeFrom(other.OptionalCorecursive); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11113- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11114: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11115- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11116- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11117- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11124- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11125- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11126- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11127: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11128- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11129- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11130- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11157- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11158- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11159- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11160: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11161- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11162- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11163- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11194- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11195- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11196- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Data()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11197: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11198- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11199- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11200- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11226- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11227- groupInt32_ = other.groupInt32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11228- groupUint32_ = other.groupUint32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11229: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11230- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11231- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11232- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11393- if (other.HasGroupUint32) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11394- GroupUint32 = other.GroupUint32; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11395- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11396: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11397- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11398- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11399- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11408- case 1612: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11409- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11410- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11411: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11412- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11413- case 1616: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11414- GroupInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11433- case 1612: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11434- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11435- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11436: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11437- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11438- case 1616: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11439- GroupInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11460- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11461- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11462- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageSetCorrect()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11463: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11464- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11465- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11466- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11490- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11491- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11492- public MessageSetCorrect(MessageSetCorrect other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11493: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11494- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11495- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11496- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11588- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11589- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11590- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11591: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11592- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11593- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11594- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11602- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11603- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11604- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11605: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11606- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11607- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11608- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11619- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11620- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11621- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11622: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11623- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11624- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11625- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11658- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11659- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11660- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageSetCorrectExtension1()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11661: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11662- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11663- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11664- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11687- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11688- public MessageSetCorrectExtension1(MessageSetCorrectExtension1 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11689- str_ = other.str_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11690: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11691- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11692- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11693- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11810- if (other.HasStr) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11811- Str = other.Str; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11812- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11813: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11814- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11815- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11816- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11823- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11824- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11825- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11826: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11827- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11828- case 202: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11829- Str = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11842- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11843- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11844- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11845: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11846- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11847- case 202: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11848- Str = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11872- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11873- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11874- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageSetCorrectExtension2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11875: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11876- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11877- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11878- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11903- public MessageSetCorrectExtension2(MessageSetCorrectExtension2 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11904- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11905- i_ = other.i_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:11906: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11907- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11908- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-11909- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12027- if (other.HasI) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12028- I = other.I; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12029- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:12030: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12031- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12032- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12033- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12040- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12041- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12042- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:12043: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12044- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12045- case 72: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12046- I = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12059- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12060- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12061- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs:12062: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12063- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12064- case 72: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.pb.cs-12065- I = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-272- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-273- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-274- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestAllTypesProto3()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:275: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-276- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-277- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-278- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-474- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-475- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-476- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:477: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-478- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-479- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-480- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4089- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4090- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4091- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:4092: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4093- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4094- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4095- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4102- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4103- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4104- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:4105: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4106- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4107- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4108- OptionalInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4825- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4826- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4827- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:4828: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4829- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4830- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-4831- OptionalInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5571- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5572- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5573- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5574: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5575- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5576- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5577- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5601- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5602- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5603- corecursive_ = other.corecursive_ != null ? other.corecursive_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5604: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5605- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5606- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5607- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5741- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5742- Corecursive.MergeFrom(other.Corecursive); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5743- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5744: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5745- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5746- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5747- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5754- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5755- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5756- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5757: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5758- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5759- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5760- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5780- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5781- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5782- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5783: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5784- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5785- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5786- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5812- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5813- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5814- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ForeignMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5815: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5816- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5817- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5818- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5841- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5842- public ForeignMessage(ForeignMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5843- c_ = other.c_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5844: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5845- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5846- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5847- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5950- if (other.C != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5951- C = other.C; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5952- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5953: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5954- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5955- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5956- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5963- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5964- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5965- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5966: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5967- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5968- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5969- C = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5982- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5983- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5984- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:5985: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5986- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5987- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-5988- C = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6002- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6003- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6004- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NullHypothesisProto3()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6005: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6006- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6007- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6008- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6030- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6031- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6032- public NullHypothesisProto3(NullHypothesisProto3 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6033: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6034- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6035- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6036- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6111- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6112- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6113- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6114: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6115- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6116- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6117- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6124- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6125- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6126- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6127: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6128- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6129- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6130- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6139- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6140- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6141- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6142: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6143- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6144- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6145- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6155- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6156- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6157- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EnumOnlyProto3()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6158: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6159- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6160- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6161- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6183- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6184- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6185- public EnumOnlyProto3(EnumOnlyProto3 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6186: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6187- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6188- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6189- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6264- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6265- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6266- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6267: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6268- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6269- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6270- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6277- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6278- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6279- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6280: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6281- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6282- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6283- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6292- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6293- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6294- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs:6295: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6296- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6297- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.pb.cs-6298- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1128- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1129- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1130- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestAllTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:1131: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1132- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1133- private int _hasBits1; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1134- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1246- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1247- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1248- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:1249: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1250- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1251- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-1252- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3861- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3862- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3863- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:3864: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3865- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3866- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3867- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3874- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3875- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3876- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:3877: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3878- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3879- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-3880- OptionalInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4228- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4229- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4230- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4231: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4232- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4233- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4234- OptionalInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4596- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4597- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4598- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4599: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4600- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4601- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4602- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4627- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4628- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4629- bb_ = other.bb_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4630: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4631- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4632- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4633- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4756- if (other.HasBb) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4757- Bb = other.Bb; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4758- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4759: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4760- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4761- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4762- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4769- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4770- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4771- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4772: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4773- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4774- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4775- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4788- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4789- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4790- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4791: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4792- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4793- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4794- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4808- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4809- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4810- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OptionalGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4811: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4812- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4813- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4814- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4839- public OptionalGroup(OptionalGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4840- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4841- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4842: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4843- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4844- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4845- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4963- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4964- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4965- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4966: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4967- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4968- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4969- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4978- case 132: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4979- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4980- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:4981: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4982- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4983- case 136: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4984- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-4999- case 132: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5000- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5001- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5002: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5003- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5004- case 136: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5005- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5019- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5020- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5021- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new RepeatedGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5022: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5023- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5024- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5025- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5050- public RepeatedGroup(RepeatedGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5051- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5052- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5053: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5054- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5055- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5056- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5174- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5175- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5176- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5177: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5178- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5179- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5180- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5189- case 372: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5190- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5191- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5192: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5193- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5194- case 376: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5195- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5210- case 372: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5211- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5212- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5213: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5214- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5215- case 376: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5216- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5238- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5239- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5240- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedTestAllTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5241: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5242- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5243- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5244- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5269- child_ = other.child_ != null ? other.child_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5270- payload_ = other.payload_ != null ? other.payload_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5271- repeatedChild_ = other.repeatedChild_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5272: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5273- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5274- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5275- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5429- Payload.MergeFrom(other.Payload); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5430- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5431- repeatedChild_.Add(other.repeatedChild_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5432: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5433- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5434- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5435- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5442- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5443- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5444- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5445: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5446- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5447- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5448- if (child_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5475- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5476- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5477- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5478: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5479- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5480- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5481- if (child_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5509- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5510- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5511- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestDeprecatedFields()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5512: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5513- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5514- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5515- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5546- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5547- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5548- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5549: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5550- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5551- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5552- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5743- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5744- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5745- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5746: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5747- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5748- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5749- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5756- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5757- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5758- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5759: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5760- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5761- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5762- DeprecatedInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5779- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5780- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5781- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5782: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5783- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5784- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5785- DeprecatedInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5804- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5805- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5806- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestDeprecatedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5807: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5808- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5809- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5810- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5832- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5833- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5834- public TestDeprecatedMessage(TestDeprecatedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5835: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5836- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5837- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5838- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5913- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5914- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5915- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5916: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5917- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5918- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5919- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5926- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5927- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5928- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5929: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5930- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5931- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5932- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5941- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5942- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5943- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5944: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5945- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5946- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5947- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5961- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5962- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5963- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ForeignMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5964: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5965- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5966- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5967- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5993- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5994- c_ = other.c_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5995- d_ = other.d_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:5996: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5997- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5998- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-5999- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6160- if (other.HasD) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6161- D = other.D; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6162- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6163: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6164- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6165- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6166- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6173- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6174- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6175- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6176: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6177- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6178- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6179- C = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6196- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6197- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6198- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6199: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6200- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6201- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6202- C = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6220- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6221- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6222- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestReservedFields()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6223: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6224- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6225- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6226- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6248- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6249- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6250- public TestReservedFields(TestReservedFields other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6251: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6252- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6253- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6254- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6329- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6330- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6331- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6332: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6333- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6334- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6335- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6342- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6343- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6344- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6345: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6346- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6347- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6348- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6357- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6358- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6359- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6360: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6361- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6362- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6363- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6373- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6374- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6375- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestAllExtensions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6376: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6377- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6378- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6379- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6403- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6404- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6405- public TestAllExtensions(TestAllExtensions other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6406: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6407- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6408- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6409- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6501- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6502- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6503- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6504: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6505- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6506- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6507- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6515- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6516- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6517- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6518: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6519- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6520- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6521- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6532- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6533- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6534- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6535: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6536- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6537- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6538- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6571- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6572- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6573- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OptionalGroup_extension()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6574: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6575- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6576- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6577- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6602- public OptionalGroup_extension(OptionalGroup_extension other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6603- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6604- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6605: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6606- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6607- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6608- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6726- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6727- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6728- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6729: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6730- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6731- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6732- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6741- case 132: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6742- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6743- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6744: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6745- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6746- case 136: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6747- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6762- case 132: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6763- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6764- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6765: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6766- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6767- case 136: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6768- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6782- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6783- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6784- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new RepeatedGroup_extension()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6785: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6786- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6787- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6788- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6813- public RepeatedGroup_extension(RepeatedGroup_extension other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6814- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6815- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6816: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6817- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6818- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6819- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6937- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6938- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6939- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6940: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6941- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6942- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6943- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6952- case 372: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6953- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6954- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6955: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6956- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6957- case 376: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6958- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6973- case 372: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6974- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6975- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6976: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6977- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6978- case 376: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6979- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6993- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6994- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6995- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:6996: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6997- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6998- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-6999- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7025- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7026- optionalGroup_ = other.HasOptionalGroup ? other.optionalGroup_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7027- optionalForeignEnum_ = other.optionalForeignEnum_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7028: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7029- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7030- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7031- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7194- if (other.HasOptionalForeignEnum) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7195- OptionalForeignEnum = other.OptionalForeignEnum; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7196- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7197: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7198- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7199- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7200- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7207- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7208- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7209- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7210: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7211- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7212- case 131: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7213- if (!HasOptionalGroup) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7233- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7234- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7235- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7236: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7237- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7238- case 131: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7239- if (!HasOptionalGroup) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7263- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7264- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7265- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OptionalGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7266: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7267- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7268- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7269- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7294- public OptionalGroup(OptionalGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7295- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7296- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7297: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7298- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7299- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7300- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7418- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7419- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7420- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7421: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7422- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7423- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7424- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7433- case 132: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7434- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7435- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7436: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7437- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7438- case 136: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7439- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7454- case 132: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7455- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7456- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7457: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7458- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7459- case 136: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7460- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7479- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7480- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7481- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestGroupExtension()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7482: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7483- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7484- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7485- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7509- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7510- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7511- public TestGroupExtension(TestGroupExtension other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7512: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7513- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7514- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7515- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7607- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7608- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7609- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7610: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7611- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7612- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7613- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7621- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7622- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7623- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7624: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7625- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7626- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7627- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7638- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7639- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7640- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7641: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7642- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7643- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7644- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7677- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7678- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7679- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestNestedExtension()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7680: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7681- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7682- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7683- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7705- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7706- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7707- public TestNestedExtension(TestNestedExtension other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7708: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7709- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7710- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7711- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7786- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7787- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7788- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7789: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7790- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7791- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7792- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7799- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7800- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7801- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7802: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7803- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7804- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7805- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7814- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7815- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7816- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7817: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7818- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7819- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7820- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7833- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7834- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7835- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OptionalGroup_extension()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7836: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7837- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7838- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7839- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7864- public OptionalGroup_extension(OptionalGroup_extension other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7865- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7866- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7867: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7868- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7869- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7870- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7988- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7989- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7990- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:7991: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7992- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7993- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-7994- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8003- case 132: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8004- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8005- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:8006: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8007- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8008- case 136: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8009- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8024- case 132: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8025- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8026- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:8027: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8028- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8029- case 136: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8030- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8080- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8081- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8082- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRequired()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:8083: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8084- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8085- private int _hasBits1; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8086- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8145- dummy31_ = other.dummy31_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8146- dummy32_ = other.dummy32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8147- c_ = other.c_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:8148: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8149- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8150- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-8151- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9649- if (other.HasC) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9650- C = other.C; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9651- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:9652: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9653- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9654- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9655- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9662- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9663- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9664- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:9665: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9666- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9667- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9668- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9809- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9810- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9811- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:9812: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9813- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9814- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9815- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9969- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9970- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9971- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRequiredForeign()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:9972: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9973- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9974- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-9975- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10002- optionalMessage_ = other.optionalMessage_ != null ? other.optionalMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10003- repeatedMessage_ = other.repeatedMessage_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10004- dummy_ = other.dummy_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10005: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10006- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10007- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10008- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10174- if (other.HasDummy) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10175- Dummy = other.Dummy; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10176- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10177: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10178- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10179- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10180- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10187- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10188- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10189- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10190: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10191- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10192- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10193- if (optionalMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10217- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10218- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10219- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10220: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10221- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10222- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10223- if (optionalMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10248- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10249- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10250- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRequiredMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10251: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10252- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10253- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10254- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10279- optionalMessage_ = other.optionalMessage_ != null ? other.optionalMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10280- repeatedMessage_ = other.repeatedMessage_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10281- requiredMessage_ = other.requiredMessage_ != null ? other.requiredMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10282: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10283- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10284- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10285- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10439- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10440- RequiredMessage.MergeFrom(other.RequiredMessage); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10441- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10442: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10443- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10444- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10445- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10452- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10453- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10454- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10455: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10456- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10457- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10458- if (optionalMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10485- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10486- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10487- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10488: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10489- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10490- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10491- if (optionalMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10522- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10523- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10524- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestForeignNested()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10525: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10526- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10527- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10528- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10551- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10552- public TestForeignNested(TestForeignNested other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10553- foreignNested_ = other.foreignNested_ != null ? other.foreignNested_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10554: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10555- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10556- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10557- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10663- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10664- ForeignNested.MergeFrom(other.ForeignNested); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10665- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10666: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10667- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10668- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10669- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10676- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10677- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10678- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10679: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10680- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10681- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10682- if (foreignNested_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10698- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10699- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10700- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10701: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10702- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10703- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10704- if (foreignNested_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10724- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10725- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10726- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestEmptyMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10727: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10728- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10729- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10730- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10752- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10753- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10754- public TestEmptyMessage(TestEmptyMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10755: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10756- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10757- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10758- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10833- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10834- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10835- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10836: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10837- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10838- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10839- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10846- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10847- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10848- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10849: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10850- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10851- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10852- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10861- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10862- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10863- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10864: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10865- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10866- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10867- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10881- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10882- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10883- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestEmptyMessageWithExtensions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10884: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10885- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10886- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10887- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10911- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10912- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10913- public TestEmptyMessageWithExtensions(TestEmptyMessageWithExtensions other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:10914: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10915- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10916- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-10917- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11009- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11010- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11011- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11012: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11013- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11014- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11015- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11023- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11024- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11025- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11026: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11027- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11028- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11029- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11040- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11041- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11042- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11043: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11044- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11045- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11046- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11079- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11080- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11081- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMultipleExtensionRanges()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11082: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11083- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11084- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11085- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11109- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11110- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11111- public TestMultipleExtensionRanges(TestMultipleExtensionRanges other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11112: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11113- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11114- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11115- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11207- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11208- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11209- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11210: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11211- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11212- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11213- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11221- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11222- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11223- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11224: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11225- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11226- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11227- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11238- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11239- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11240- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11241: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11242- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11243- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11244- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11280- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11281- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11282- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestReallyLargeTagNumber()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11283: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11284- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11285- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11286- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11312- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11313- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11314- bb_ = other.bb_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11315: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11316- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11317- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11318- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11483- if (other.HasBb) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11484- Bb = other.Bb; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11485- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11486: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11487- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11488- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11489- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11496- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11497- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11498- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11499: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11500- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11501- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11502- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11519- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11520- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11521- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11522: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11523- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11524- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11525- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11543- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11544- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11545- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRecursiveMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11546: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11547- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11548- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11549- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11575- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11576- a_ = other.a_ != null ? other.a_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11577- i_ = other.i_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11578: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11579- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11580- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11581- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11730- if (other.HasI) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11731- I = other.I; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11732- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11733: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11734- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11735- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11736- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11743- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11744- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11745- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11746: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11747- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11748- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11749- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11769- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11770- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11771- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11772: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11773- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11774- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11775- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11799- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11800- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11801- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMutualRecursionA()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11802: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11803- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11804- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11805- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11829- public TestMutualRecursionA(TestMutualRecursionA other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11830- bb_ = other.bb_ != null ? other.bb_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11831- subGroup_ = other.HasSubGroup ? other.subGroup_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11832: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11833- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11834- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11835- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11986- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11987- SubGroup.MergeFrom(other.SubGroup); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11988- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:11989: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11990- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11991- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11992- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-11999- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12000- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12001- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12002: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12003- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12004- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12005- if (bb_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12028- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12029- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12030- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12031: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12032- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12033- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12034- if (bb_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12061- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12062- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12063- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SubMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12064: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12065- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12066- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12067- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12090- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12091- public SubMessage(SubMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12092- b_ = other.b_ != null ? other.b_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12093: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12094- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12095- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12096- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12202- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12203- B.MergeFrom(other.B); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12204- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12205: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12206- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12207- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12208- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12215- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12216- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12217- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12218: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12219- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12220- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12221- if (b_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12237- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12238- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12239- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12240: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12241- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12242- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12243- if (b_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12260- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12261- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12262- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SubGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12263: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12264- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12265- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12266- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12290- public SubGroup(SubGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12291- subMessage_ = other.subMessage_ != null ? other.subMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12292- notInThisScc_ = other.notInThisScc_ != null ? other.notInThisScc_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12293: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12294- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12295- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12296- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12436- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12437- NotInThisScc.MergeFrom(other.NotInThisScc); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12438- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12439: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12440- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12441- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12442- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12451- case 20: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12452- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12453- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12454: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12455- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12456- case 26: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12457- if (subMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12482- case 20: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12483- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12484- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12485: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12486- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12487- case 26: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12488- if (subMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12517- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12518- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12519- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMutualRecursionB()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12520: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12521- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12522- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12523- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12549- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12550- a_ = other.a_ != null ? other.a_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12551- optionalInt32_ = other.optionalInt32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12552: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12553- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12554- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12555- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12704- if (other.HasOptionalInt32) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12705- OptionalInt32 = other.OptionalInt32; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12706- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12707: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12708- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12709- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12710- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12717- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12718- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12719- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12720: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12721- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12722- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12723- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12743- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12744- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12745- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12746: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12747- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12748- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12749- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12770- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12771- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12772- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestIsInitialized()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12773: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12774- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12775- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12776- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12799- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12800- public TestIsInitialized(TestIsInitialized other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12801- subMessage_ = other.subMessage_ != null ? other.subMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12802: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12803- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12804- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12805- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12911- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12912- SubMessage.MergeFrom(other.SubMessage); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12913- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12914: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12915- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12916- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12917- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12924- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12925- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12926- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12927: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12928- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12929- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12930- if (subMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12946- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12947- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12948- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12949: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12950- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12951- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12952- if (subMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12972- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12973- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12974- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SubMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:12975: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12976- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12977- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-12978- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13001- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13002- public SubMessage(SubMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13003- subGroup_ = other.HasSubGroup ? other.subGroup_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13004: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13005- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13006- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13007- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13127- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13128- SubGroup.MergeFrom(other.SubGroup); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13129- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13130: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13131- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13132- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13133- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13140- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13141- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13142- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13143: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13144- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13145- case 11: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13146- if (!HasSubGroup) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13162- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13163- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13164- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13165: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13166- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13167- case 11: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13168- if (!HasSubGroup) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13188- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13189- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13190- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SubGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13191: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13192- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13193- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13194- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13219- public SubGroup(SubGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13220- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13221- i_ = other.i_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13222: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13223- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13224- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13225- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13343- if (other.HasI) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13344- I = other.I; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13345- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13346: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13347- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13348- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13349- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13358- case 12: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13359- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13360- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13361: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13362- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13363- case 16: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13364- I = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13379- case 12: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13380- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13381- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13382: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13383- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13384- case 16: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13385- I = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13415- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13416- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13417- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestDupFieldNumber()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13418: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13419- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13420- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13421- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13448- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13449- foo_ = other.HasFoo ? other.foo_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13450- bar_ = other.HasBar ? other.bar_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13451: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13452- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13453- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13454- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13665- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13666- Bar.MergeFrom(other.Bar); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13667- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13668: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13669- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13670- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13671- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13678- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13679- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13680- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13681: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13682- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13683- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13684- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13711- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13712- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13713- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13714: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13715- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13716- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13717- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13748- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13749- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13750- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Foo()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13751: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13752- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13753- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13754- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13779- public Foo(Foo other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13780- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13781- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13782: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13783- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13784- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13785- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13903- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13904- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13905- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13906: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13907- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13908- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13909- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13918- case 20: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13919- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13920- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13921: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13922- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13923- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13924- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13939- case 20: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13940- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13941- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13942: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13943- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13944- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13945- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13959- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13960- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13961- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Bar()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13962: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13963- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13964- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13965- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13990- public Bar(Bar other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13991- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13992- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:13993: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13994- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13995- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-13996- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14114- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14115- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14116- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14117: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14118- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14119- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14120- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14129- case 28: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14130- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14131- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14132: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14133- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14134- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14135- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14150- case 28: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14151- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14152- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14153: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14154- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14155- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14156- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14178- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14179- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14180- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestEagerMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14181: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14182- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14183- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14184- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14207- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14208- public TestEagerMessage(TestEagerMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14209- subMessage_ = other.subMessage_ != null ? other.subMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14210: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14211- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14212- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14213- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14319- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14320- SubMessage.MergeFrom(other.SubMessage); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14321- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14322: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14323- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14324- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14325- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14332- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14333- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14334- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14335: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14336- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14337- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14338- if (subMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14354- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14355- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14356- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14357: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14358- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14359- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14360- if (subMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14377- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14378- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14379- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestLazyMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14380: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14381- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14382- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14383- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14406- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14407- public TestLazyMessage(TestLazyMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14408- subMessage_ = other.subMessage_ != null ? other.subMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14409: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14410- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14411- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14412- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14518- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14519- SubMessage.MergeFrom(other.SubMessage); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14520- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14521: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14522- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14523- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14524- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14531- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14532- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14533- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14534: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14535- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14536- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14537- if (subMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14553- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14554- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14555- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14556: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14557- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14558- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14559- if (subMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14579- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14580- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14581- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestNestedMessageHasBits()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14582: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14583- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14584- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14585- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14608- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14609- public TestNestedMessageHasBits(TestNestedMessageHasBits other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14610- optionalNestedMessage_ = other.optionalNestedMessage_ != null ? other.optionalNestedMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14611: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14612- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14613- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14614- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14720- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14721- OptionalNestedMessage.MergeFrom(other.OptionalNestedMessage); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14722- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14723: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14724- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14725- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14726- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14733- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14734- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14735- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14736: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14737- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14738- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14739- if (optionalNestedMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14755- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14756- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14757- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14758: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14759- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14760- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14761- if (optionalNestedMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14781- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14782- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14783- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14784: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14785- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14786- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14787- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14811- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14812- nestedmessageRepeatedInt32_ = other.nestedmessageRepeatedInt32_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14813- nestedmessageRepeatedForeignmessage_ = other.nestedmessageRepeatedForeignmessage_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14814: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14815- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14816- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14817- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14926- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14927- nestedmessageRepeatedInt32_.Add(other.nestedmessageRepeatedInt32_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14928- nestedmessageRepeatedForeignmessage_.Add(other.nestedmessageRepeatedForeignmessage_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14929: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14930- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14931- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14932- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14939- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14940- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14941- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14942: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14943- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14944- case 10: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14945- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14963- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14964- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14965- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:14966: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14967- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14968- case 10: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14969- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14997- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14998- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-14999- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestCamelCaseFieldNames()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15000: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15001- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15002- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15003- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15039- repeatedMessageField_ = other.repeatedMessageField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15040- repeatedStringPieceField_ = other.repeatedStringPieceField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15041- repeatedCordField_ = other.repeatedCordField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15042: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15043- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15044- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15045- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15465- repeatedMessageField_.Add(other.repeatedMessageField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15466- repeatedStringPieceField_.Add(other.repeatedStringPieceField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15467- repeatedCordField_.Add(other.repeatedCordField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15468: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15469- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15470- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15471- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15478- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15479- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15480- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15481: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15482- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15483- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15484- PrimitiveField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15546- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15547- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15548- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15549: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15550- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15551- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15552- PrimitiveField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15619- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15620- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15621- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestFieldOrderings()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15622: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15623- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15624- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15625- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15655- myInt_ = other.myInt_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15656- myFloat_ = other.myFloat_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15657- optionalNestedMessage_ = other.optionalNestedMessage_ != null ? other.optionalNestedMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15658: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15659- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15660- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15661- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15912- OptionalNestedMessage.MergeFrom(other.OptionalNestedMessage); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15913- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15914- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15915: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15916- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15917- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15918- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15926- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15927- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15928- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15929: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15930- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15931- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15932- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15962- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15963- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15964- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:15965: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15966- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15967- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-15968- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16023- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16024- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16025- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16026: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16027- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16028- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16029- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16055- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16056- oo_ = other.oo_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16057- bb_ = other.bb_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16058: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16059- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16060- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16061- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16227- if (other.HasBb) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16228- Bb = other.Bb; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16229- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16230: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16231- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16232- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16233- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16240- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16241- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16242- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16243: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16244- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16245- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16246- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16263- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16264- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16265- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16266: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16267- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16268- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16269- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16292- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16293- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16294- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestExtensionOrderings1()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16295: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16296- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16297- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16298- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16321- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16322- public TestExtensionOrderings1(TestExtensionOrderings1 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16323- myString_ = other.myString_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16324: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16325- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16326- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16327- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16444- if (other.HasMyString) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16445- MyString = other.MyString; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16446- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16447: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16448- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16449- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16450- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16457- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16458- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16459- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16460: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16461- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16462- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16463- MyString = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16476- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16477- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16478- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16479: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16480- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16481- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16482- MyString = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16506- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16507- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16508- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestExtensionOrderings2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16509: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16510- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16511- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16512- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16535- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16536- public TestExtensionOrderings2(TestExtensionOrderings2 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16537- myString_ = other.myString_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16538: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16539- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16540- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16541- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16658- if (other.HasMyString) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16659- MyString = other.MyString; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16660- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16661: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16662- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16663- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16664- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16671- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16672- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16673- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16674: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16675- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16676- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16677- MyString = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16690- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16691- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16692- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16693: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16694- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16695- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16696- MyString = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16713- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16714- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16715- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestExtensionOrderings3()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16716: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16717- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16718- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16719- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16742- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16743- public TestExtensionOrderings3(TestExtensionOrderings3 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16744- myString_ = other.myString_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16745: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16746- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16747- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16748- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16865- if (other.HasMyString) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16866- MyString = other.MyString; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16867- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16868: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16869- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16870- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16871- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16878- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16879- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16880- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16881: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16882- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16883- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16884- MyString = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16897- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16898- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16899- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16900: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16901- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16902- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16903- MyString = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16942- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16943- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16944- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestExtremeDefaultValues()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:16945: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16946- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16947- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16948- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-16999- stringPieceWithZero_ = other.stringPieceWithZero_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-17000- cordWithZero_ = other.cordWithZero_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-17001- replacementString_ = other.replacementString_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:17002: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-17003- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-17004- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-17005- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18257- if (other.HasReplacementString) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18258- ReplacementString = other.ReplacementString; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18259- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18260: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18261- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18262- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18263- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18270- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18271- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18272- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18273: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18274- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18275- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18276- EscapedBytes = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18393- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18394- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18395- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18396: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18397- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18398- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18399- EscapedBytes = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18517- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18518- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18519- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SparseEnumMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18520: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18521- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18522- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18523- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18548- public SparseEnumMessage(SparseEnumMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18549- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18550- sparseEnum_ = other.sparseEnum_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18551: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18552- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18553- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18554- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18672- if (other.HasSparseEnum) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18673- SparseEnum = other.SparseEnum; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18674- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18675: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18676- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18677- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18678- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18685- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18686- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18687- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18688: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18689- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18690- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18691- SparseEnum = (global::Google.Protobuf.TestProtos.Proto2.TestSparseEnum) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18704- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18705- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18706- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18707: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18708- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18709- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18710- SparseEnum = (global::Google.Protobuf.TestProtos.Proto2.TestSparseEnum) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18727- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18728- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18729- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneString()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18730: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18731- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18732- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18733- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18756- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18757- public OneString(OneString other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18758- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18759: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18760- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18761- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18762- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18879- if (other.HasData) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18880- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18881- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18882: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18883- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18884- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18885- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18892- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18893- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18894- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18895: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18896- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18897- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18898- Data = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18911- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18912- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18913- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18914: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18915- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18916- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18917- Data = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18931- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18932- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18933- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MoreString()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18934: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18935- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18936- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18937- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18960- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18961- public MoreString(MoreString other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18962- data_ = other.data_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:18963: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18964- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18965- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-18966- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19058- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19059- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19060- data_.Add(other.data_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19061: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19062- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19063- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19064- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19071- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19072- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19073- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19074: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19075- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19076- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19077- data_.AddEntriesFrom(input, _repeated_data_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19090- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19091- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19092- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19093: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19094- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19095- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19096- data_.AddEntriesFrom(ref input, _repeated_data_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19110- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19111- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19112- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneBytes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19113: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19114- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19115- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19116- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19139- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19140- public OneBytes(OneBytes other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19141- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19142: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19143- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19144- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19145- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19262- if (other.HasData) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19263- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19264- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19265: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19266- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19267- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19268- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19275- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19276- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19277- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19278: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19279- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19280- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19281- Data = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19294- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19295- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19296- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19297: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19298- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19299- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19300- Data = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19314- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19315- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19316- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MoreBytes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19317: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19318- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19319- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19320- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19343- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19344- public MoreBytes(MoreBytes other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19345- data_ = other.data_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19346: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19347- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19348- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19349- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19441- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19442- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19443- data_.Add(other.data_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19444: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19445- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19446- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19447- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19454- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19455- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19456- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19457: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19458- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19459- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19460- data_.AddEntriesFrom(input, _repeated_data_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19473- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19474- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19475- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19476: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19477- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19478- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19479- data_.AddEntriesFrom(ref input, _repeated_data_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19496- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19497- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19498- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Int32Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19499: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19500- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19501- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19502- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19527- public Int32Message(Int32Message other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19528- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19529- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19530: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19531- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19532- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19533- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19651- if (other.HasData) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19652- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19653- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19654: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19655- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19656- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19657- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19664- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19665- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19666- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19667: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19668- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19669- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19670- Data = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19683- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19684- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19685- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19686: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19687- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19688- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19689- Data = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19703- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19704- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19705- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Uint32Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19706: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19707- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19708- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19709- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19734- public Uint32Message(Uint32Message other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19735- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19736- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19737: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19738- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19739- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19740- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19858- if (other.HasData) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19859- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19860- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19861: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19862- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19863- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19864- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19871- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19872- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19873- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19874: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19875- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19876- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19877- Data = input.ReadUInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19890- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19891- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19892- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19893: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19894- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19895- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19896- Data = input.ReadUInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19910- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19911- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19912- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Int64Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19913: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19914- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19915- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19916- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19941- public Int64Message(Int64Message other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19942- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19943- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:19944: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19945- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19946- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-19947- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20065- if (other.HasData) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20066- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20067- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20068: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20069- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20070- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20071- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20078- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20079- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20080- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20081: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20082- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20083- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20084- Data = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20097- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20098- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20099- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20100: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20101- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20102- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20103- Data = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20117- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20118- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20119- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Uint64Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20120: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20121- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20122- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20123- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20148- public Uint64Message(Uint64Message other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20149- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20150- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20151: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20152- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20153- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20154- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20272- if (other.HasData) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20273- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20274- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20275: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20276- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20277- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20278- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20285- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20286- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20287- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20288: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20289- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20290- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20291- Data = input.ReadUInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20304- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20305- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20306- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20307: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20308- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20309- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20310- Data = input.ReadUInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20324- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20325- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20326- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BoolMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20327: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20328- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20329- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20330- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20355- public BoolMessage(BoolMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20356- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20357- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20358: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20359- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20360- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20361- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20479- if (other.HasData) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20480- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20481- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20482: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20483- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20484- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20485- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20492- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20493- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20494- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20495: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20496- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20497- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20498- Data = input.ReadBool(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20511- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20512- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20513- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20514: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20515- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20516- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20517- Data = input.ReadBool(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20534- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20535- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20536- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestOneof()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20537: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20538- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20539- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20540- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20577- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20578- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20579- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20580: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20581- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20582- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20583- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20848- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20849- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20850- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20851: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20852- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20853- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20854- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20861- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20862- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20863- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20864: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20865- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20866- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20867- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20902- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20903- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20904- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20905: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20906- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20907- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20908- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20947- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20948- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20949- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20950: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20951- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20952- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20953- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20979- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20980- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20981- b_ = other.b_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:20982: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20983- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20984- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-20985- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21145- if (other.HasB) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21146- B = other.B; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21147- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21148: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21149- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21150- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21151- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21160- case 36: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21161- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21162- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21163: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21164- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21165- case 40: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21166- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21185- case 36: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21186- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21187- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21188: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21189- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21190- case 40: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21191- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21214- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21215- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21216- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestOneofBackwardsCompatible()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21217: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21218- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21219- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21220- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21248- fooString_ = other.fooString_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21249- fooMessage_ = other.fooMessage_ != null ? other.fooMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21250- fooGroup_ = other.HasFooGroup ? other.fooGroup_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21251: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21252- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21253- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21254- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21490- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21491- FooGroup.MergeFrom(other.FooGroup); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21492- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21493: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21494- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21495- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21496- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21503- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21504- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21505- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21506: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21507- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21508- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21509- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21540- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21541- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21542- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21543: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21544- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21545- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21546- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21581- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21582- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21583- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21584: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21585- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21586- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21587- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21613- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21614- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21615- b_ = other.b_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21616: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21617- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21618- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21619- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21779- if (other.HasB) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21780- B = other.B; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21781- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21782: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21783- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21784- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21785- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21794- case 36: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21795- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21796- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21797: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21798- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21799- case 40: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21800- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21819- case 36: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21820- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21821- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21822: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21823- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21824- case 40: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21825- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21848- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21849- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21850- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestOneof2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21851: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21852- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21853- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21854- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21931- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21932- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21933- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:21934: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21935- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21936- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-21937- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22773- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22774- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22775- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:22776: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22777- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22778- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22779- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22786- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22787- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22788- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:22789: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22790- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22791- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22792- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22886- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22887- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22888- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:22889: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22890- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22891- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22892- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22996- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22997- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-22998- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:22999: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23000- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23001- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23002- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23028- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23029- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23030- b_ = other.b_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23031: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23032- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23033- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23034- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23194- if (other.HasB) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23195- B = other.B; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23196- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23197: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23198- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23199- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23200- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23209- case 68: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23210- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23211- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23212: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23213- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23214- case 72: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23215- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23234- case 68: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23235- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23236- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23237: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23238- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23239- case 72: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23240- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23258- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23259- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23260- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23261: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23262- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23263- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23264- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23290- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23291- quxInt_ = other.quxInt_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23292- corgeInt_ = other.corgeInt_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23293: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23294- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23295- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23296- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23431- QuxInt = other.QuxInt; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23432- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23433- corgeInt_.Add(other.corgeInt_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23434: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23435- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23436- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23437- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23444- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23445- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23446- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23447: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23448- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23449- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23450- QuxInt = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23468- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23469- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23470- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23471: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23472- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23473- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23474- QuxInt = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23498- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23499- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23500- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRequiredOneof()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23501: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23502- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23503- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23504- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23538- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23539- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23540- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23541: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23542- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23543- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23544- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23761- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23762- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23763- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23764: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23765- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23766- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23767- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23774- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23775- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23776- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23777: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23778- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23779- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23780- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23806- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23807- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23808- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23809: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23810- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23811- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23812- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23842- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23843- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23844- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23845: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23846- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23847- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23848- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23873- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23874- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23875- requiredDouble_ = other.requiredDouble_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:23876: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23877- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23878- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23879- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23997- if (other.HasRequiredDouble) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23998- RequiredDouble = other.RequiredDouble; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-23999- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24000: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24001- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24002- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24003- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24010- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24011- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24012- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24013: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24014- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24015- case 9: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24016- RequiredDouble = input.ReadDouble(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24029- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24030- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24031- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24032: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24033- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24034- case 9: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24035- RequiredDouble = input.ReadDouble(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24054- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24055- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24056- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRequiredMap()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24057: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24058- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24059- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24060- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24083- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24084- public TestRequiredMap(TestRequiredMap other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24085- foo_ = other.foo_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24086: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24087- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24088- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24089- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24181- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24182- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24183- foo_.MergeFrom(other.foo_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24184: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24185- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24186- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24187- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24194- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24195- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24196- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24197: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24198- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24199- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24200- foo_.AddEntriesFrom(input, _map_foo_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24213- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24214- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24215- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24216: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24217- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24218- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24219- foo_.AddEntriesFrom(ref input, _map_foo_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24236- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24237- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24238- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24239: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24240- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24241- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24242- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24267- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24268- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24269- requiredInt32_ = other.requiredInt32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24270: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24271- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24272- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24273- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24391- if (other.HasRequiredInt32) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24392- RequiredInt32 = other.RequiredInt32; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24393- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24394: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24395- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24396- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24397- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24404- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24405- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24406- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24407: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24408- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24409- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24410- RequiredInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24423- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24424- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24425- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24426: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24427- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24428- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24429- RequiredInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24448- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24449- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24450- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestPackedTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24451: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24452- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24453- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24454- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24490- packedDouble_ = other.packedDouble_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24491- packedBool_ = other.packedBool_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24492- packedEnum_ = other.packedEnum_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24493: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24494- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24495- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24496- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24809- packedDouble_.Add(other.packedDouble_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24810- packedBool_.Add(other.packedBool_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24811- packedEnum_.Add(other.packedEnum_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24812: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24813- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24814- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24815- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24822- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24823- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24824- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24825: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24826- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24827- case 722: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24828- case 720: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24907- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24908- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24909- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:24910: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24911- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24912- case 722: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24913- case 720: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24997- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24998- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-24999- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestUnpackedTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25000: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25001- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25002- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25003- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25039- unpackedDouble_ = other.unpackedDouble_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25040- unpackedBool_ = other.unpackedBool_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25041- unpackedEnum_ = other.unpackedEnum_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25042: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25043- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25044- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25045- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25358- unpackedDouble_.Add(other.unpackedDouble_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25359- unpackedBool_.Add(other.unpackedBool_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25360- unpackedEnum_.Add(other.unpackedEnum_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25361: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25362- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25363- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25364- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25371- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25372- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25373- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25374: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25375- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25376- case 722: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25377- case 720: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25456- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25457- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25458- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25459: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25460- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25461- case 722: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25462- case 720: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25542- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25543- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25544- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestPackedExtensions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25545: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25546- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25547- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25548- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25572- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25573- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25574- public TestPackedExtensions(TestPackedExtensions other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25575: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25576- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25577- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25578- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25670- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25671- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25672- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25673: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25674- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25675- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25676- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25684- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25685- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25686- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25687: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25688- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25689- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25690- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25701- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25702- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25703- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25704: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25705- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25706- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25707- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25740- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25741- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25742- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestUnpackedExtensions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25743: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25744- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25745- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25746- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25770- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25771- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25772- public TestUnpackedExtensions(TestUnpackedExtensions other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25773: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25774- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25775- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25776- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25868- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25869- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25870- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25871: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25872- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25873- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25874- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25882- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25883- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25884- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25885: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25886- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25887- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25888- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25899- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25900- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25901- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25902: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25903- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25904- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25905- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25943- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25944- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25945- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestDynamicExtensions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25946: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25947- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25948- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25949- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25980- dynamicMessageExtension_ = other.dynamicMessageExtension_ != null ? other.dynamicMessageExtension_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25981- repeatedExtension_ = other.repeatedExtension_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25982- packedExtension_ = other.packedExtension_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:25983: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25984- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25985- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-25986- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26286- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26287- repeatedExtension_.Add(other.repeatedExtension_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26288- packedExtension_.Add(other.packedExtension_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26289: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26290- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26291- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26292- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26299- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26300- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26301- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26302: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26303- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26304- case 16005: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26305- ScalarExtension = input.ReadFixed32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26349- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26350- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26351- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26352: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26353- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26354- case 16005: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26355- ScalarExtension = input.ReadFixed32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26409- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26410- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26411- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DynamicMessageType()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26412: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26413- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26414- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26415- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26440- public DynamicMessageType(DynamicMessageType other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26441- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26442- dynamicField_ = other.dynamicField_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26443: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26444- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26445- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26446- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26564- if (other.HasDynamicField) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26565- DynamicField = other.DynamicField; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26566- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26567: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26568- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26569- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26570- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26577- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26578- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26579- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26580: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26581- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26582- case 16800: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26583- DynamicField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26596- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26597- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26598- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26599: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26600- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26601- case 16800: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26602- DynamicField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26621- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26622- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26623- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRepeatedScalarDifferentTagSizes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26624: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26625- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26626- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26627- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26655- repeatedInt64_ = other.repeatedInt64_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26656- repeatedFloat_ = other.repeatedFloat_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26657- repeatedUint64_ = other.repeatedUint64_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26658: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26659- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26660- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26661- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26852- repeatedInt64_.Add(other.repeatedInt64_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26853- repeatedFloat_.Add(other.repeatedFloat_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26854- repeatedUint64_.Add(other.repeatedUint64_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26855: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26856- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26857- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26858- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26865- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26866- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26867- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26868: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26869- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26870- case 98: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26871- case 101: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26910- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26911- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26912- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26913: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26914- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26915- case 98: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26916- case 101: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26960- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26961- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26962- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestParsingMerge()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26963: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26964- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26965- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26966- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26995- repeatedAllTypes_ = other.repeatedAllTypes_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26996- optionalGroup_ = other.HasOptionalGroup ? other.optionalGroup_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26997- repeatedGroup_ = other.repeatedGroup_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:26998: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-26999- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27000- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27001- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27234- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27235- repeatedGroup_.Add(other.repeatedGroup_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27236- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27237: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27238- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27239- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27240- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27248- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27249- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27250- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27251: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27252- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27253- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27254- case 10: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27294- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27295- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27296- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27297: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27298- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27299- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27300- case 10: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27372- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27373- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27374- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new RepeatedFieldsGenerator()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27375: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27376- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27377- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27378- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27407- group2_ = other.group2_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27408- ext1_ = other.ext1_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27409- ext2_ = other.ext2_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27410: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27411- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27412- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27413- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27607- group2_.Add(other.group2_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27608- ext1_.Add(other.ext1_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27609- ext2_.Add(other.ext2_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27610: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27611- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27612- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27613- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27620- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27621- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27622- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27623: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27624- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27625- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27626- field1_.AddEntriesFrom(input, _repeated_field1_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27663- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27664- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27665- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27666: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27667- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27668- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27669- field1_.AddEntriesFrom(ref input, _repeated_field1_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27710- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27711- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27712- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Group1()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27713: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27714- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27715- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27716- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27739- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27740- public Group1(Group1 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27741- field1_ = other.field1_ != null ? other.field1_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27742: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27743- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27744- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27745- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27851- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27852- Field1.MergeFrom(other.Field1); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27853- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27854: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27855- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27856- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27857- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27866- case 84: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27867- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27868- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27869: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27870- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27871- case 90: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27872- if (field1_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27890- case 84: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27891- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27892- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27893: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27894- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27895- case 90: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27896- if (field1_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27913- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27914- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27915- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Group2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27916: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27917- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27918- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27919- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27942- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27943- public Group2(Group2 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27944- field1_ = other.field1_ != null ? other.field1_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:27945: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27946- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27947- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-27948- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28054- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28055- Field1.MergeFrom(other.Field1); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28056- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28057: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28058- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28059- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28060- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28069- case 164: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28070- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28071- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28072: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28073- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28074- case 170: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28075- if (field1_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28093- case 164: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28094- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28095- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28096: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28097- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28098- case 170: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28099- if (field1_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28121- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28122- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28123- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OptionalGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28124: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28125- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28126- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28127- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28150- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28151- public OptionalGroup(OptionalGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28152- optionalGroupAllTypes_ = other.optionalGroupAllTypes_ != null ? other.optionalGroupAllTypes_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28153: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28154- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28155- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28156- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28262- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28263- OptionalGroupAllTypes.MergeFrom(other.OptionalGroupAllTypes); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28264- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28265: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28266- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28267- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28268- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28277- case 84: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28278- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28279- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28280: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28281- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28282- case 90: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28283- if (optionalGroupAllTypes_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28301- case 84: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28302- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28303- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28304: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28305- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28306- case 90: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28307- if (optionalGroupAllTypes_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28324- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28325- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28326- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new RepeatedGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28327: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28328- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28329- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28330- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28353- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28354- public RepeatedGroup(RepeatedGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28355- repeatedGroupAllTypes_ = other.repeatedGroupAllTypes_ != null ? other.repeatedGroupAllTypes_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28356: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28357- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28358- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28359- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28465- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28466- RepeatedGroupAllTypes.MergeFrom(other.RepeatedGroupAllTypes); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28467- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28468: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28469- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28470- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28471- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28480- case 164: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28481- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28482- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28483: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28484- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28485- case 170: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28486- if (repeatedGroupAllTypes_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28504- case 164: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28505- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28506- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28507: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28508- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28509- case 170: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28510- if (repeatedGroupAllTypes_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28544- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28545- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28546- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestCommentInjectionMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28547: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28548- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28549- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28550- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28573- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28574- public TestCommentInjectionMessage(TestCommentInjectionMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28575- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28576: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28577- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28578- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28579- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28699- if (other.HasA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28700- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28701- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28702: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28703- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28704- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28705- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28712- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28713- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28714- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28715: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28716- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28717- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28718- A = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28731- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28732- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28733- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28734: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28735- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28736- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28737- A = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28754- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28755- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28756- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooRequest()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28757: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28758- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28759- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28760- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28782- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28783- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28784- public FooRequest(FooRequest other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28785: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28786- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28787- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28788- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28863- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28864- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28865- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28866: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28867- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28868- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28869- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28876- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28877- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28878- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28879: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28880- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28881- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28882- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28891- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28892- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28893- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28894: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28895- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28896- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28897- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28907- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28908- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28909- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooResponse()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28910: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28911- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28912- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28913- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28935- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28936- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28937- public FooResponse(FooResponse other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:28938: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28939- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28940- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-28941- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29016- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29017- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29018- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29019: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29020- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29021- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29022- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29029- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29030- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29031- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29032: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29033- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29034- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29035- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29044- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29045- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29046- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29047: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29048- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29049- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29050- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29060- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29061- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29062- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooClientMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29063: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29064- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29065- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29066- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29088- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29089- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29090- public FooClientMessage(FooClientMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29091: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29092- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29093- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29094- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29169- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29170- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29171- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29172: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29173- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29174- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29175- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29182- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29183- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29184- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29185: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29186- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29187- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29188- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29197- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29198- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29199- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29200: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29201- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29202- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29203- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29213- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29214- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29215- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooServerMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29216: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29217- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29218- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29219- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29241- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29242- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29243- public FooServerMessage(FooServerMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29244: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29245- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29246- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29247- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29322- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29323- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29324- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29325: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29326- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29327- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29328- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29335- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29336- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29337- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29338: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29339- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29340- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29341- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29350- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29351- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29352- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29353: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29354- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29355- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29356- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29366- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29367- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29368- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BarRequest()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29369: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29370- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29371- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29372- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29394- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29395- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29396- public BarRequest(BarRequest other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29397: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29398- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29399- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29400- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29475- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29476- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29477- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29478: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29479- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29480- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29481- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29488- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29489- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29490- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29491: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29492- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29493- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29494- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29503- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29504- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29505- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29506: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29507- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29508- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29509- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29519- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29520- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29521- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BarResponse()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29522: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29523- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29524- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29525- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29547- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29548- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29549- public BarResponse(BarResponse other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29550: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29551- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29552- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29553- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29628- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29629- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29630- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29631: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29632- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29633- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29634- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29641- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29642- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29643- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29644: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29645- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29646- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29647- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29656- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29657- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29658- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29659: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29660- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29661- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29662- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29672- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29673- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29674- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestJsonName()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29675: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29676- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29677- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29678- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29708- FieldName4_ = other.FieldName4_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29709- fIELDNAME5_ = other.fIELDNAME5_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29710- fieldName6_ = other.fieldName6_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:29711: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29712- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29713- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-29714- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30047- if (other.HasFieldName6) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30048- FieldName6 = other.FieldName6; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30049- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:30050: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30051- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30052- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30053- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30060- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30061- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30062- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:30063: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30064- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30065- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30066- FieldName1 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30099- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30100- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30101- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:30102: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30103- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30104- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30105- FieldName1 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30139- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30140- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30141- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestHugeFieldNumbers()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:30142: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30143- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30144- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30145- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30196- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30197- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30198- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:30199: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30200- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30201- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30202- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30819- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30820- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30821- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:30822: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30823- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30824- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30825- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30833- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30834- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30835- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:30836: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30837- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30838- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30839- case 4294960000: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30919- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30920- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30921- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:30922: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30923- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30924- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-30925- case 4294960000: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31030- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31031- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31032- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OptionalGroup()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31033: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31034- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31035- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31036- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31061- public OptionalGroup(OptionalGroup other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31062- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31063- groupA_ = other.groupA_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31064: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31065- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31066- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31067- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31185- if (other.HasGroupA) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31186- GroupA = other.GroupA; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31187- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31188: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31189- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31190- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31191- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31200- case 4294960068: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31201- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31202- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31203: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31204- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31205- case 4294960072: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31206- GroupA = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31221- case 4294960068: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31222- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31223- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31224: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31225- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31226- case 4294960072: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31227- GroupA = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31246- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31247- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31248- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestExtensionInsideTable()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31249: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31250- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31251- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31252- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31287- field8_ = other.field8_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31288- field9_ = other.field9_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31289- field10_ = other.field10_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31290: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31291- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31292- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31293- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31772- Field10 = other.Field10; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31773- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31774- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31775: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31776- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31777- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31778- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31786- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31787- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31788- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31789: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31790- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31791- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31792- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31839- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31840- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31841- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs:31842: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31843- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31844- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/Unittest.pb.cs-31845- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-263- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-264- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-265- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMessageWithCustomOptions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:266: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-267- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-268- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-269- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-298- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-299- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-300- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:301: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-302- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-303- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-304- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-474- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-475- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-476- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:477: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-478- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-479- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-480- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-487- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-488- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-489- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:490: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-491- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-492- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-493- Field1 = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-510- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-511- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-512- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:513: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-514- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-515- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-516- Field1 = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-552- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-553- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-554- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CustomOptionFooRequest()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:555: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-556- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-557- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-558- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-580- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-581- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-582- public CustomOptionFooRequest(CustomOptionFooRequest other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:583: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-584- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-585- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-586- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-661- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-662- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-663- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:664: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-665- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-666- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-667- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-674- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-675- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-676- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:677: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-678- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-679- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-680- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-689- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-690- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-691- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:692: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-693- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-694- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-695- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-705- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-706- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-707- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CustomOptionFooResponse()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:708: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-709- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-710- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-711- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-733- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-734- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-735- public CustomOptionFooResponse(CustomOptionFooResponse other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:736: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-737- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-738- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-739- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-814- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-815- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-816- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:817: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-818- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-819- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-820- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-827- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-828- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-829- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:830: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-831- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-832- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-833- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-842- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-843- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-844- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:845: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-846- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-847- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-848- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-858- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-859- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-860- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CustomOptionFooClientMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:861: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-862- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-863- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-864- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-886- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-887- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-888- public CustomOptionFooClientMessage(CustomOptionFooClientMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:889: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-890- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-891- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-892- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-967- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-968- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-969- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:970: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-971- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-972- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-973- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-980- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-981- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-982- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:983: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-984- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-985- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-986- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-995- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-996- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-997- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:998: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-999- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1000- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1001- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1011- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1012- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1013- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CustomOptionFooServerMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1014: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1015- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1016- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1017- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1039- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1040- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1041- public CustomOptionFooServerMessage(CustomOptionFooServerMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1042: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1043- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1044- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1045- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1120- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1121- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1122- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1123: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1124- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1125- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1126- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1133- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1134- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1135- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1136: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1137- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1138- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1139- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1148- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1149- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1150- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1151: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1152- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1153- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1154- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1164- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1165- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1166- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DummyMessageContainingEnum()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1167: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1168- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1169- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1170- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1192- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1193- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1194- public DummyMessageContainingEnum(DummyMessageContainingEnum other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1195: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1196- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1197- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1198- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1273- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1274- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1275- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1276: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1277- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1278- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1279- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1286- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1287- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1288- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1289: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1290- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1291- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1292- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1301- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1302- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1303- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1304: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1305- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1306- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1307- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1331- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1332- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1333- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DummyMessageInvalidAsOptionType()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1334: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1335- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1336- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1337- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1359- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1360- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1361- public DummyMessageInvalidAsOptionType(DummyMessageInvalidAsOptionType other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1362: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1363- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1364- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1365- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1440- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1441- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1442- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1443: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1444- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1445- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1446- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1453- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1454- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1455- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1456: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1457- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1458- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1459- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1468- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1469- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1470- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1471: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1472- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1473- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1474- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1484- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1485- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1486- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CustomOptionMinIntegerValues()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1487: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1488- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1489- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1490- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1512- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1513- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1514- public CustomOptionMinIntegerValues(CustomOptionMinIntegerValues other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1515: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1516- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1517- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1518- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1593- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1594- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1595- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1596: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1597- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1598- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1599- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1606- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1607- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1608- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1609: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1610- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1611- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1612- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1621- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1622- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1623- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1624: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1625- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1626- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1627- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1637- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1638- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1639- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CustomOptionMaxIntegerValues()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1640: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1641- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1642- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1643- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1665- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1666- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1667- public CustomOptionMaxIntegerValues(CustomOptionMaxIntegerValues other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1668: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1669- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1670- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1671- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1746- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1747- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1748- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1749: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1750- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1751- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1752- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1759- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1760- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1761- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1762: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1763- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1764- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1765- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1774- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1775- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1776- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1777: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1778- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1779- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1780- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1790- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1791- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1792- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CustomOptionOtherValues()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1793: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1794- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1795- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1796- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1818- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1819- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1820- public CustomOptionOtherValues(CustomOptionOtherValues other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1821: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1822- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1823- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1824- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1899- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1900- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1901- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1902: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1903- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1904- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1905- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1912- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1913- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1914- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1915: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1916- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1917- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1918- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1927- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1928- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1929- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1930: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1931- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1932- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1933- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1943- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1944- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1945- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SettingRealsFromPositiveInts()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1946: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1947- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1948- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1949- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1971- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1972- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1973- public SettingRealsFromPositiveInts(SettingRealsFromPositiveInts other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:1974: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1975- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1976- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-1977- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2052- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2053- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2054- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2055: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2056- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2057- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2058- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2065- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2066- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2067- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2068: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2069- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2070- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2071- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2080- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2081- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2082- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2083: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2084- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2085- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2086- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2096- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2097- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2098- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SettingRealsFromNegativeInts()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2099: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2100- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2101- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2102- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2124- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2125- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2126- public SettingRealsFromNegativeInts(SettingRealsFromNegativeInts other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2127: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2128- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2129- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2130- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2205- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2206- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2207- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2208: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2209- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2210- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2211- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2218- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2219- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2220- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2221: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2222- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2223- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2224- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2233- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2234- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2235- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2236: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2237- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2238- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2239- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2249- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2250- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2251- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ComplexOptionType1()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2252: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2253- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2254- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2255- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2281- foo2_ = other.foo2_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2282- foo3_ = other.foo3_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2283- foo4_ = other.foo4_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2284: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2285- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2286- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2287- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2463- Foo3 = other.Foo3; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2464- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2465- foo4_.Add(other.foo4_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2466: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2467- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2468- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2469- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2476- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2477- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2478- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2479: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2480- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2481- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2482- Foo = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2508- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2509- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2510- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2511: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2512- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2513- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2514- Foo = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2541- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2542- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2543- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ComplexOptionType2()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2544: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2545- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2546- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2547- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2573- baz_ = other.baz_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2574- fred_ = other.fred_ != null ? other.fred_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2575- barney_ = other.barney_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2576: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2577- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2578- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2579- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2761- Fred.MergeFrom(other.Fred); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2762- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2763- barney_.Add(other.barney_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2764: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2765- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2766- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2767- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2774- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2775- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2776- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2777: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2778- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2779- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2780- if (bar_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2811- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2812- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2813- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2814: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2815- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2816- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2817- if (bar_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2852- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2853- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2854- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ComplexOptionType4()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2855: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2856- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2857- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2858- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2881- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2882- public ComplexOptionType4(ComplexOptionType4 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2883- waldo_ = other.waldo_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2884: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2885- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2886- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2887- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2990- if (other.Waldo != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2991- Waldo = other.Waldo; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2992- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:2993: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2994- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2995- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-2996- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3003- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3004- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3005- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3006: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3007- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3008- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3009- Waldo = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3022- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3023- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3024- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3025: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3026- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3027- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3028- Waldo = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3057- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3058- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3059- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ComplexOptionType3()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3060: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3061- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3062- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3063- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3086- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3087- public ComplexOptionType3(ComplexOptionType3 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3088- qux_ = other.qux_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3089: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3090- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3091- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3092- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3195- if (other.Qux != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3196- Qux = other.Qux; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3197- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3198: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3199- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3200- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3201- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3208- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3209- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3210- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3211: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3212- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3213- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3214- Qux = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3227- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3228- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3229- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3230: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3231- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3232- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3233- Qux = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3250- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3251- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3252- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new VariousComplexOptions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3253: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3254- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3255- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3256- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3278- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3279- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3280- public VariousComplexOptions(VariousComplexOptions other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3281: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3282- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3283- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3284- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3359- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3360- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3361- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3362: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3363- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3364- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3365- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3372- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3373- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3374- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3375: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3376- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3377- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3378- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3387- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3388- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3389- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3390: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3391- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3392- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3393- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3406- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3407- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3408- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Aggregate()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3409: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3410- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3411- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3412- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3437- i_ = other.i_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3438- s_ = other.s_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3439- sub_ = other.sub_ != null ? other.sub_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3440: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3441- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3442- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3443- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3608- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3609- Sub.MergeFrom(other.Sub); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3610- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3611: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3612- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3613- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3614- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3621- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3622- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3623- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3624: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3625- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3626- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3627- I = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3651- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3652- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3653- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3654: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3655- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3656- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3657- I = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3682- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3683- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3684- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new AggregateMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3685: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3686- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3687- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3688- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3711- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3712- public AggregateMessage(AggregateMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3713- fieldname_ = other.fieldname_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3714: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3715- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3716- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3717- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3820- if (other.Fieldname != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3821- Fieldname = other.Fieldname; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3822- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3823: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3824- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3825- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3826- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3833- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3834- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3835- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3836: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3837- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3838- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3839- Fieldname = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3852- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3853- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3854- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3855: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3856- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3857- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3858- Fieldname = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3875- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3876- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3877- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedOptionType()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3878: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3879- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3880- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3881- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3903- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3904- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3905- public NestedOptionType(NestedOptionType other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3906: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3907- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3908- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3909- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3984- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3985- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3986- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:3987: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3988- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3989- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3990- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3997- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3998- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-3999- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:4000: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4001- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4002- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4003- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4012- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4013- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4014- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:4015: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4016- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4017- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4018- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4036- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4037- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4038- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:4039: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4040- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4041- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4042- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4065- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4066- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4067- nestedField_ = other.nestedField_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:4068: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4069- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4070- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4071- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4174- if (other.NestedField != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4175- NestedField = other.NestedField; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4176- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:4177: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4178- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4179- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4180- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4187- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4188- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4189- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:4190: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4191- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4192- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4193- NestedField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4206- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4207- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4208- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs:4209: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4210- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4211- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.pb.cs-4212- NestedField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-66- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-67- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-68- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ImportMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs:69: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-70- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-71- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-72- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-97- public ImportMessage(ImportMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-98- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-99- d_ = other.d_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs:100: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-101- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-102- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-103- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-221- if (other.HasD) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-222- D = other.D; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-223- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs:224: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-225- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-226- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-227- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-234- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-235- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-236- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs:237: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-238- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-239- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-240- D = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-253- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-254- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-255- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs:256: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-257- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-258- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs-259- D = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-58- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-59- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-60- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ImportMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs:61: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-62- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-63- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-64- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-87- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-88- public ImportMessage(ImportMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-89- d_ = other.d_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs:90: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-91- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-92- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-93- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-196- if (other.D != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-197- D = other.D; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-198- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs:199: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-200- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-201- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-202- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-209- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-210- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-211- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs:212: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-213- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-214- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-215- D = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-228- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-229- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-230- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs:231: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-232- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-233- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs-234- D = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-45- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-46- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-47- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new PublicImportMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs:48: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-49- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-50- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-51- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-76- public PublicImportMessage(PublicImportMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-77- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-78- e_ = other.e_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs:79: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-80- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-81- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-82- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-200- if (other.HasE) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-201- E = other.E; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-202- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs:203: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-204- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-205- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-206- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-213- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-214- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-215- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs:216: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-217- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-218- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-219- E = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-232- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-233- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-234- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs:235: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-236- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-237- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs-238- E = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-45- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-46- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-47- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new PublicImportMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs:48: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-49- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-50- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-51- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-74- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-75- public PublicImportMessage(PublicImportMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-76- e_ = other.e_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs:77: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-78- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-79- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-80- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-183- if (other.E != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-184- E = other.E; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-185- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs:186: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-187- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-188- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-189- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-196- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-197- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-198- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs:199: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-200- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-201- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-202- E = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-215- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-216- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-217- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs:218: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-219- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-220- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs-221- E = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-45- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-46- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-47- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Foo()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs:48: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-49- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-50- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-51- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-73- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-74- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-75- public Foo(Foo other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs:76: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-77- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-78- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-79- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-154- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-155- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-156- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs:157: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-158- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-159- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-160- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-167- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-168- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-169- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs:170: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-171- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-172- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-173- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-182- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-183- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-184- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs:185: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-186- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-187- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.pb.cs-188- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-47- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-48- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-49- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Bar()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs:50: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-51- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-52- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-53- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-76- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-77- public Bar(Bar other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-78- foo_ = other.foo_ != null ? other.foo_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs:79: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-80- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-81- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-82- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-188- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-189- Foo.MergeFrom(other.Foo); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-190- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs:191: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-192- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-193- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-194- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-201- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-202- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-203- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs:204: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-205- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-206- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-207- if (foo_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-223- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-224- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-225- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs:226: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-227- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-228- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.pb.cs-229- if (foo_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-121- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-122- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-123- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Issue307()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:124: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-125- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-126- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-127- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-149- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-150- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-151- public Issue307(Issue307 other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:152: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-153- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-154- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-155- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-230- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-231- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-232- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:233: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-234- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-235- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-236- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-243- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-244- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-245- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:246: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-247- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-248- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-249- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-258- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-259- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-260- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:261: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-262- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-263- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-264- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-277- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-278- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-279- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedOnce()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:280: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-281- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-282- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-283- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-305- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-306- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-307- public NestedOnce(NestedOnce other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:308: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-309- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-310- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-311- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-386- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-387- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-388- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:389: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-390- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-391- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-392- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-399- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-400- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-401- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:402: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-403- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-404- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-405- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-414- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-415- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-416- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:417: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-418- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-419- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-420- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-433- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-434- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-435- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedTwice()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:436: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-437- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-438- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-439- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-461- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-462- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-463- public NestedTwice(NestedTwice other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:464: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-465- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-466- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-467- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-542- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-543- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-544- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:545: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-546- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-547- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-548- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-555- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-556- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-557- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:558: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-559- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-560- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-561- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-570- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-571- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-572- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:573: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-574- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-575- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-576- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-596- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-597- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-598- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NegativeEnumMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:599: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-600- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-601- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-602- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-627- value_ = other.value_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-628- values_ = other.values_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-629- packedValues_ = other.packedValues_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:630: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-631- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-632- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-633- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-770- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-771- values_.Add(other.values_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-772- packedValues_.Add(other.packedValues_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:773: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-774- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-775- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-776- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-783- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-784- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-785- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:786: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-787- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-788- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-789- Value = (global::UnitTest.Issues.TestProtos.NegativeEnum) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-812- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-813- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-814- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:815: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-816- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-817- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-818- Value = (global::UnitTest.Issues.TestProtos.NegativeEnum) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-843- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-844- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-845- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DeprecatedChild()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:846: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-847- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-848- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-849- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-871- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-872- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-873- public DeprecatedChild(DeprecatedChild other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:874: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-875- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-876- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-877- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-952- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-953- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-954- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:955: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-956- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-957- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-958- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-965- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-966- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-967- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:968: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-969- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-970- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-971- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-980- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-981- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-982- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:983: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-984- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-985- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-986- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-996- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-997- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-998- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DeprecatedFieldsMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:999: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1000- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1001- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1002- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1030- messageArray_ = other.messageArray_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1031- enumValue_ = other.enumValue_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1032- enumArray_ = other.enumArray_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1033: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1034- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1035- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1036- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1255- EnumValue = other.EnumValue; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1256- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1257- enumArray_.Add(other.enumArray_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1258: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1259- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1260- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1261- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1268- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1269- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1270- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1271: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1272- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1273- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1274- PrimitiveValue = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1312- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1313- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1314- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1315: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1316- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1317- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1318- PrimitiveValue = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1360- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1361- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1362- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ItemField()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1363: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1364- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1365- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1366- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1389- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1390- public ItemField(ItemField other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1391- item_ = other.item_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1392: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1393- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1394- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1395- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1498- if (other.Item != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1499- Item = other.Item; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1500- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1501: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1502- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1503- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1504- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1511- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1512- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1513- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1514: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1515- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1516- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1517- Item = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1530- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1531- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1532- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1533: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1534- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1535- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1536- Item = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1550- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1551- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1552- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ReservedNames()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1553: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1554- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1555- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1556- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1580- public ReservedNames(ReservedNames other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1581- types_ = other.types_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1582- descriptor_ = other.descriptor_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1583: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1584- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1585- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1586- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1717- if (other.Descriptor_ != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1718- Descriptor_ = other.Descriptor_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1719- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1720: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1721- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1722- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1723- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1730- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1731- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1732- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1733: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1734- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1735- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1736- Types_ = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1753- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1754- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1755- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1756: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1757- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1758- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1759- Types_ = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1783- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1784- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1785- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SomeNestedType()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1786: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1787- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1788- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1789- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1811- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1812- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1813- public SomeNestedType(SomeNestedType other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1814: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1815- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1816- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1817- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1892- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1893- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1894- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1895: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1896- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1897- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1898- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1905- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1906- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1907- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1908: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1909- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1910- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1911- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1920- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1921- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1922- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1923: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1924- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1925- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1926- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1953- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1954- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1955- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestJsonFieldOrdering()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:1956: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1957- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1958- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-1959- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2001- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2002- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2003- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2004: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2005- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2006- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2007- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2358- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2359- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2360- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2361: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2362- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2363- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2364- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2371- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2372- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2373- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2374: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2375- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2376- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2377- PlainString = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2410- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2411- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2412- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2413: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2414- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2415- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2416- PlainString = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2450- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2451- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2452- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestJsonName()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2453: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2454- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2455- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2456- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2481- name_ = other.name_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2482- description_ = other.description_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2483- guid_ = other.guid_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2484: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2485- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2486- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2487- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2649- if (other.Guid.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2650- Guid = other.Guid; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2651- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2652: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2653- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2654- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2655- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2662- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2663- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2664- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2665: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2666- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2667- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2668- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2689- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2690- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2691- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2692: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2693- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2694- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2695- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2722- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2723- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2724- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneofMerging()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2725: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2726- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2727- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2728- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2759- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2760- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2761- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2762: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2763- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2764- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2765- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2939- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2940- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2941- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2942: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2943- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2944- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2945- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2952- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2953- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2954- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2955: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2956- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2957- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2958- Text = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2980- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2981- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2982- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:2983: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2984- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2985- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-2986- Text = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3012- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3013- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3014- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Nested()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3015: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3016- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3017- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3018- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3042- public Nested(Nested other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3043- x_ = other.x_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3044- y_ = other.y_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3045: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3046- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3047- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3048- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3179- if (other.Y != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3180- Y = other.Y; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3181- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3182: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3183- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3184- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3185- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3192- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3193- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3194- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3195: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3196- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3197- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3198- X = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3215- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3216- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3217- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3218: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3219- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3220- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3221- X = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3244- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3245- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3246- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NullValueOutsideStruct()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3247: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3248- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3249- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3250- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3281- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3282- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3283- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3284: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3285- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3286- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3287- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3472- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3473- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3474- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3475: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3476- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3477- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3478- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3485- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3486- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3487- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3488: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3489- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3490- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3491- StringValue = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3509- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3510- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3511- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3512: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3513- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3514- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3515- StringValue = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3534- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3535- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3536- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NullValueNotInOneof()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3537: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3538- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3539- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3540- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3563- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3564- public NullValueNotInOneof(NullValueNotInOneof other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3565- nullValue_ = other.nullValue_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3566: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3567- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3568- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3569- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3672- if (other.NullValue != global::Google.Protobuf.WellKnownTypes.NullValue.NullValue) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3673- NullValue = other.NullValue; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3674- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3675: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3676- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3677- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3678- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3685- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3686- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3687- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3688: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3689- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3690- case 16: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3691- NullValue = (global::Google.Protobuf.WellKnownTypes.NullValue) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3704- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3705- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3706- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3707: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3708- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3709- case 16: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3710- NullValue = (global::Google.Protobuf.WellKnownTypes.NullValue) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3724- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3725- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3726- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MixedRegularAndOptional()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3727: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3728- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3729- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3730- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3754- public MixedRegularAndOptional(MixedRegularAndOptional other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3755- regularField_ = other.regularField_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3756- optionalField_ = other.optionalField_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3757: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3758- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3759- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3760- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3905- if (other.HasOptionalField) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3906- OptionalField = other.OptionalField; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3907- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3908: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3909- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3910- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3911- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3918- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3919- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3920- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3921: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3922- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3923- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3924- RegularField = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3941- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3942- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3943- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3944: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3945- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3946- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3947- RegularField = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3965- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3966- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3967- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneofWithNoneField()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:3968: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3969- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3970- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-3971- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4002- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4003- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4004- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4005: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4006- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4007- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4008- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4193- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4194- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4195- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4196: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4197- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4198- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4199- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4206- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4207- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4208- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4209: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4210- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4211- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4212- X = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4229- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4230- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4231- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4232: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4233- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4234- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4235- X = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4253- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4254- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4255- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneofWithNoneName()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4256: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4257- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4258- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4259- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4290- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4291- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4292- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4293: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4294- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4295- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4296- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4481- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4482- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4483- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4484: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4485- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4486- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4487- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4494- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4495- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4496- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4497: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4498- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4499- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4500- X = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4517- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4518- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4519- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4520: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4521- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4522- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4523- X = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4544- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4545- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4546- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DisambiguateCommonMembers()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4547: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4548- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4549- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4550- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4584- mergeFrom_ = other.mergeFrom_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4585- onConstruction_ = other.onConstruction_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4586- parser_ = other.parser_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:4587: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4588- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4589- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-4590- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5001- if (other.Parser_ != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5002- Parser_ = other.Parser_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5003- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:5004: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5005- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5006- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5007- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5014- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5015- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5016- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:5017: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5018- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5019- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5020- DisambiguateCommonMembers_ = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5077- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5078- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5079- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:5080: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5081- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5082- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5083- DisambiguateCommonMembers_ = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5141- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5142- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5143- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Issue11987Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:5144: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5145- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5146- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5147- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5172- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5173- b_ = other.b_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5174- c_ = other.c_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:5175: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5176- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5177- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5178- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5337- if (other.C != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5338- C = other.C; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5339- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:5340: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5341- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5342- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5343- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5350- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5351- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5352- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:5353: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5354- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5355- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5356- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5377- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5378- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5379- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs:5380: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5381- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5382- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.pb.cs-5383- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-262- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-263- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-264- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestAllTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:265: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-266- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-267- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-268- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-349- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-350- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-351- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:352: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-353- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-354- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-355- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1629- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1630- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1631- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:1632: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1633- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1634- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1635- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1642- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1643- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1644- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:1645: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1646- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1647- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1648- SingleInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1882- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1883- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1884- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:1885: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1886- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1887- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-1888- SingleInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2137- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2138- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2139- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2140: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2141- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2142- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2143- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2166- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2167- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2168- bb_ = other.bb_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2169: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2170- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2171- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2172- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2280- if (other.Bb != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2281- Bb = other.Bb; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2282- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2283: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2284- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2285- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2286- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2293- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2294- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2295- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2296: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2297- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2298- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2299- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2312- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2313- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2314- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2315: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2316- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2317- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2318- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2340- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2341- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2342- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedTestAllTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2343: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2344- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2345- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2346- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2371- child_ = other.child_ != null ? other.child_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2372- payload_ = other.payload_ != null ? other.payload_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2373- repeatedChild_ = other.repeatedChild_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2374: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2375- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2376- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2377- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2531- Payload.MergeFrom(other.Payload); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2532- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2533- repeatedChild_.Add(other.repeatedChild_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2534: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2535- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2536- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2537- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2544- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2545- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2546- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2547: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2548- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2549- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2550- if (child_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2577- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2578- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2579- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2580: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2581- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2582- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2583- if (child_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2611- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2612- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2613- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestDeprecatedFields()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2614: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2615- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2616- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2617- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2640- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2641- public TestDeprecatedFields(TestDeprecatedFields other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2642- deprecatedInt32_ = other.deprecatedInt32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2643: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2644- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2645- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2646- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2750- if (other.DeprecatedInt32 != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2751- DeprecatedInt32 = other.DeprecatedInt32; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2752- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2753: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2754- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2755- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2756- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2763- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2764- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2765- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2766: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2767- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2768- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2769- DeprecatedInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2782- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2783- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2784- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2785: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2786- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2787- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2788- DeprecatedInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2806- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2807- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2808- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ForeignMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2809: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2810- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2811- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2812- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2835- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2836- public ForeignMessage(ForeignMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2837- c_ = other.c_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2838: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2839- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2840- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2841- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2944- if (other.C != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2945- C = other.C; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2946- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2947: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2948- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2949- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2950- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2957- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2958- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2959- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2960: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2961- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2962- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2963- C = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2976- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2977- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2978- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2979: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2980- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2981- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2982- C = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2996- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2997- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-2998- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestReservedFields()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:2999: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3000- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3001- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3002- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3024- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3025- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3026- public TestReservedFields(TestReservedFields other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3027: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3028- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3029- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3030- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3105- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3106- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3107- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3108: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3109- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3110- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3111- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3118- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3119- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3120- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3121: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3122- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3123- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3124- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3133- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3134- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3135- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3136: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3137- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3138- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3139- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3152- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3153- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3154- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestForeignNested()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3155: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3156- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3157- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3158- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3181- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3182- public TestForeignNested(TestForeignNested other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3183- foreignNested_ = other.foreignNested_ != null ? other.foreignNested_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3184: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3185- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3186- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3187- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3293- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3294- ForeignNested.MergeFrom(other.ForeignNested); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3295- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3296: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3297- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3298- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3299- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3306- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3307- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3308- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3309: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3310- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3311- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3312- if (foreignNested_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3328- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3329- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3330- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3331: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3332- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3333- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3334- if (foreignNested_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3354- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3355- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3356- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestReallyLargeTagNumber()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3357: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3358- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3359- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3360- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3384- public TestReallyLargeTagNumber(TestReallyLargeTagNumber other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3385- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3386- bb_ = other.bb_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3387: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3388- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3389- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3390- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3525- if (other.Bb != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3526- Bb = other.Bb; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3527- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3528: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3529- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3530- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3531- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3538- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3539- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3540- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3541: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3542- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3543- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3544- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3561- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3562- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3563- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3564: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3565- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3566- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3567- A = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3585- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3586- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3587- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRecursiveMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3588: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3589- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3590- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3591- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3615- public TestRecursiveMessage(TestRecursiveMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3616- a_ = other.a_ != null ? other.a_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3617- i_ = other.i_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3618: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3619- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3620- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3621- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3755- if (other.I != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3756- I = other.I; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3757- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3758: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3759- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3760- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3761- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3768- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3769- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3770- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3771: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3772- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3773- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3774- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3794- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3795- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3796- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3797: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3798- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3799- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3800- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3824- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3825- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3826- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMutualRecursionA()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3827: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3828- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3829- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3830- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3853- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3854- public TestMutualRecursionA(TestMutualRecursionA other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3855- bb_ = other.bb_ != null ? other.bb_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3856: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3857- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3858- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3859- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3965- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3966- Bb.MergeFrom(other.Bb); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3967- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3968: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3969- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3970- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3971- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3978- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3979- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3980- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:3981: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3982- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3983- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-3984- if (bb_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4000- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4001- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4002- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4003: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4004- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4005- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4006- if (bb_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4023- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4024- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4025- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestMutualRecursionB()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4026: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4027- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4028- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4029- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4053- public TestMutualRecursionB(TestMutualRecursionB other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4054- a_ = other.a_ != null ? other.a_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4055- optionalInt32_ = other.optionalInt32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4056: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4057- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4058- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4059- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4193- if (other.OptionalInt32 != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4194- OptionalInt32 = other.OptionalInt32; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4195- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4196: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4197- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4198- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4199- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4206- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4207- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4208- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4209: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4210- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4211- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4212- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4232- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4233- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4234- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4235: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4236- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4237- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4238- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4259- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4260- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4261- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestEnumAllowAlias()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4262: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4263- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4264- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4265- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4288- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4289- public TestEnumAllowAlias(TestEnumAllowAlias other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4290- value_ = other.value_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4291: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4292- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4293- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4294- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4397- if (other.Value != global::Google.Protobuf.TestProtos.TestEnumWithDupValue.Unspecified) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4398- Value = other.Value; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4399- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4400: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4401- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4402- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4403- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4410- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4411- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4412- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4413: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4414- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4415- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4416- Value = (global::Google.Protobuf.TestProtos.TestEnumWithDupValue) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4429- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4430- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4431- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4432: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4433- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4434- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4435- Value = (global::Google.Protobuf.TestProtos.TestEnumWithDupValue) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4453- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4454- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4455- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestCamelCaseFieldNames()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4456: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4457- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4458- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4459- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4489- repeatedStringField_ = other.repeatedStringField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4490- repeatedEnumField_ = other.repeatedEnumField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4491- repeatedMessageField_ = other.repeatedMessageField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4492: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4493- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4494- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4495- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4753- repeatedStringField_.Add(other.repeatedStringField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4754- repeatedEnumField_.Add(other.repeatedEnumField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4755- repeatedMessageField_.Add(other.repeatedMessageField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4756: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4757- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4758- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4759- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4766- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4767- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4768- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4769: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4770- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4771- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4772- PrimitiveField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4818- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4819- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4820- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4821: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4822- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4823- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4824- PrimitiveField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4875- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4876- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4877- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestFieldOrderings()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4878: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4879- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4880- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4881- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4907- myInt_ = other.myInt_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4908- myFloat_ = other.myFloat_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4909- singleNestedMessage_ = other.singleNestedMessage_ != null ? other.singleNestedMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:4910: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4911- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4912- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-4913- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5103- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5104- SingleNestedMessage.MergeFrom(other.SingleNestedMessage); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5105- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5106: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5107- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5108- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5109- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5116- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5117- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5118- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5119: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5120- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5121- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5122- MyInt = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5150- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5151- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5152- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5153: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5154- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5155- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5156- MyInt = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5188- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5189- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5190- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5191: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5192- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5193- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5194- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5218- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5219- oo_ = other.oo_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5220- bb_ = other.bb_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5221: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5222- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5223- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5224- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5360- if (other.Bb != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5361- Bb = other.Bb; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5362- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5363: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5364- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5365- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5366- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5373- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5374- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5375- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5376: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5377- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5378- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5379- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5396- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5397- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5398- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5399: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5400- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5401- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5402- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5425- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5426- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5427- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SparseEnumMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5428: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5429- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5430- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5431- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5454- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5455- public SparseEnumMessage(SparseEnumMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5456- sparseEnum_ = other.sparseEnum_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5457: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5458- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5459- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5460- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5563- if (other.SparseEnum != global::Google.Protobuf.TestProtos.TestSparseEnum.Unspecified) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5564- SparseEnum = other.SparseEnum; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5565- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5566: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5567- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5568- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5569- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5576- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5577- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5578- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5579: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5580- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5581- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5582- SparseEnum = (global::Google.Protobuf.TestProtos.TestSparseEnum) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5595- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5596- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5597- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5598: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5599- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5600- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5601- SparseEnum = (global::Google.Protobuf.TestProtos.TestSparseEnum) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5618- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5619- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5620- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneString()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5621: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5622- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5623- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5624- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5647- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5648- public OneString(OneString other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5649- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5650: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5651- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5652- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5653- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5756- if (other.Data.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5757- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5758- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5759: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5760- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5761- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5762- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5769- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5770- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5771- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5772: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5773- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5774- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5775- Data = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5788- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5789- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5790- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5791: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5792- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5793- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5794- Data = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5808- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5809- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5810- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MoreString()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5811: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5812- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5813- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5814- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5837- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5838- public MoreString(MoreString other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5839- data_ = other.data_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5840: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5841- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5842- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5843- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5935- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5936- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5937- data_.Add(other.data_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5938: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5939- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5940- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5941- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5948- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5949- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5950- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5951: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5952- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5953- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5954- data_.AddEntriesFrom(input, _repeated_data_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5967- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5968- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5969- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5970: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5971- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5972- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5973- data_.AddEntriesFrom(ref input, _repeated_data_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5987- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5988- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5989- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneBytes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:5990: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5991- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5992- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-5993- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6016- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6017- public OneBytes(OneBytes other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6018- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6019: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6020- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6021- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6022- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6125- if (other.Data.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6126- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6127- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6128: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6129- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6130- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6131- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6138- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6139- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6140- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6141: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6142- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6143- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6144- Data = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6157- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6158- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6159- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6160: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6161- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6162- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6163- Data = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6177- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6178- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6179- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MoreBytes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6180: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6181- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6182- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6183- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6206- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6207- public MoreBytes(MoreBytes other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6208- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6209: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6210- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6211- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6212- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6315- if (other.Data.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6316- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6317- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6318: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6319- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6320- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6321- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6328- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6329- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6330- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6331: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6332- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6333- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6334- Data = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6347- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6348- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6349- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6350: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6351- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6352- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6353- Data = input.ReadBytes(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6370- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6371- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6372- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Int32Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6373: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6374- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6375- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6376- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6399- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6400- public Int32Message(Int32Message other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6401- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6402: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6403- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6404- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6405- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6508- if (other.Data != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6509- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6510- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6511: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6512- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6513- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6514- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6521- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6522- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6523- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6524: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6525- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6526- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6527- Data = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6540- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6541- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6542- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6543: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6544- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6545- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6546- Data = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6560- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6561- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6562- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Uint32Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6563: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6564- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6565- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6566- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6589- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6590- public Uint32Message(Uint32Message other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6591- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6592: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6593- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6594- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6595- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6698- if (other.Data != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6699- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6700- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6701: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6702- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6703- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6704- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6711- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6712- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6713- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6714: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6715- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6716- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6717- Data = input.ReadUInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6730- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6731- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6732- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6733: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6734- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6735- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6736- Data = input.ReadUInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6750- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6751- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6752- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Int64Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6753: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6754- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6755- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6756- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6779- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6780- public Int64Message(Int64Message other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6781- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6782: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6783- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6784- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6785- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6888- if (other.Data != 0L) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6889- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6890- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6891: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6892- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6893- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6894- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6901- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6902- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6903- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6904: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6905- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6906- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6907- Data = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6920- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6921- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6922- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6923: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6924- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6925- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6926- Data = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6940- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6941- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6942- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Uint64Message()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6943: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6944- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6945- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6946- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6969- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6970- public Uint64Message(Uint64Message other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6971- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:6972: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6973- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6974- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-6975- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7078- if (other.Data != 0UL) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7079- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7080- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7081: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7082- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7083- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7084- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7091- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7092- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7093- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7094: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7095- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7096- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7097- Data = input.ReadUInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7110- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7111- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7112- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7113: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7114- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7115- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7116- Data = input.ReadUInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7130- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7131- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7132- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BoolMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7133: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7134- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7135- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7136- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7159- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7160- public BoolMessage(BoolMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7161- data_ = other.data_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7162: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7163- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7164- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7165- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7268- if (other.Data != false) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7269- Data = other.Data; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7270- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7271: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7272- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7273- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7274- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7281- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7282- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7283- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7284: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7285- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7286- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7287- Data = input.ReadBool(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7300- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7301- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7302- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7303: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7304- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7305- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7306- Data = input.ReadBool(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7323- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7324- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7325- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestOneof()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7326: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7327- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7328- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7329- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7363- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7364- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7365- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7366: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7367- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7368- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7369- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7586- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7587- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7588- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7589: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7590- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7591- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7592- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7599- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7600- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7601- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7602: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7603- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7604- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7605- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7631- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7632- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7633- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7634: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7635- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7636- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7637- FooInt = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7664- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7665- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7666- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestPackedTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7667: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7668- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7669- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7670- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7706- packedDouble_ = other.packedDouble_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7707- packedBool_ = other.packedBool_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7708- packedEnum_ = other.packedEnum_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:7709: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7710- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7711- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-7712- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8025- packedDouble_.Add(other.packedDouble_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8026- packedBool_.Add(other.packedBool_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8027- packedEnum_.Add(other.packedEnum_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8028: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8029- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8030- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8031- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8038- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8039- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8040- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8041: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8042- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8043- case 722: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8044- case 720: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8123- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8124- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8125- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8126: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8127- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8128- case 722: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8129- case 720: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8213- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8214- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8215- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestUnpackedTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8216: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8217- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8218- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8219- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8255- unpackedDouble_ = other.unpackedDouble_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8256- unpackedBool_ = other.unpackedBool_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8257- unpackedEnum_ = other.unpackedEnum_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8258: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8259- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8260- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8261- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8574- unpackedDouble_.Add(other.unpackedDouble_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8575- unpackedBool_.Add(other.unpackedBool_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8576- unpackedEnum_.Add(other.unpackedEnum_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8577: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8578- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8579- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8580- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8587- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8588- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8589- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8590: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8591- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8592- case 722: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8593- case 720: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8672- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8673- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8674- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8675: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8676- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8677- case 722: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8678- case 720: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8758- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8759- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8760- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestRepeatedScalarDifferentTagSizes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8761: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8762- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8763- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8764- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8792- repeatedInt64_ = other.repeatedInt64_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8793- repeatedFloat_ = other.repeatedFloat_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8794- repeatedUint64_ = other.repeatedUint64_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8795: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8796- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8797- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8798- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8989- repeatedInt64_.Add(other.repeatedInt64_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8990- repeatedFloat_.Add(other.repeatedFloat_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8991- repeatedUint64_.Add(other.repeatedUint64_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:8992: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8993- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8994- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-8995- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9002- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9003- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9004- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9005: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9006- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9007- case 98: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9008- case 101: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9047- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9048- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9049- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9050: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9051- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9052- case 98: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9053- case 101: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9093- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9094- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9095- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestCommentInjectionMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9096: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9097- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9098- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9099- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9122- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9123- public TestCommentInjectionMessage(TestCommentInjectionMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9124- a_ = other.a_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9125: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9126- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9127- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9128- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9234- if (other.A.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9235- A = other.A; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9236- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9237: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9238- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9239- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9240- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9247- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9248- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9249- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9250: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9251- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9252- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9253- A = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9266- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9267- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9268- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9269: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9270- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9271- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9272- A = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9289- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9290- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9291- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooRequest()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9292: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9293- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9294- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9295- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9317- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9318- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9319- public FooRequest(FooRequest other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9320: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9321- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9322- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9323- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9398- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9399- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9400- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9401: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9402- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9403- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9404- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9411- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9412- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9413- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9414: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9415- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9416- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9417- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9426- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9427- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9428- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9429: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9430- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9431- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9432- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9442- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9443- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9444- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooResponse()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9445: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9446- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9447- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9448- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9470- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9471- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9472- public FooResponse(FooResponse other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9473: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9474- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9475- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9476- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9551- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9552- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9553- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9554: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9555- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9556- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9557- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9564- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9565- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9566- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9567: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9568- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9569- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9570- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9579- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9580- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9581- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9582: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9583- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9584- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9585- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9595- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9596- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9597- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooClientMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9598: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9599- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9600- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9601- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9623- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9624- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9625- public FooClientMessage(FooClientMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9626: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9627- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9628- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9629- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9704- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9705- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9706- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9707: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9708- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9709- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9710- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9717- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9718- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9719- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9720: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9721- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9722- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9723- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9732- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9733- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9734- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9735: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9736- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9737- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9738- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9748- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9749- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9750- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooServerMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9751: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9752- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9753- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9754- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9776- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9777- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9778- public FooServerMessage(FooServerMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9779: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9780- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9781- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9782- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9857- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9858- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9859- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9860: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9861- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9862- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9863- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9870- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9871- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9872- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9873: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9874- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9875- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9876- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9885- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9886- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9887- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9888: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9889- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9890- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9891- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9901- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9902- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9903- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BarRequest()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9904: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9905- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9906- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9907- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9929- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9930- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9931- public BarRequest(BarRequest other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:9932: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9933- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9934- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-9935- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10010- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10011- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10012- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10013: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10014- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10015- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10016- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10023- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10024- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10025- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10026: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10027- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10028- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10029- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10038- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10039- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10040- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10041: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10042- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10043- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10044- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10054- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10055- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10056- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new BarResponse()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10057: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10058- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10059- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10060- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10082- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10083- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10084- public BarResponse(BarResponse other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10085: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10086- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10087- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10088- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10163- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10164- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10165- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10166: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10167- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10168- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10169- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10176- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10177- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10178- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10179: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10180- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10181- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10182- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10191- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10192- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10193- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10194: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10195- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10196- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10197- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10207- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10208- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10209- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestEmptyMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10210: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10211- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10212- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10213- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10235- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10236- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10237- public TestEmptyMessage(TestEmptyMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10238: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10239- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10240- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10241- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10316- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10317- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10318- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10319: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10320- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10321- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10322- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10329- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10330- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10331- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10332: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10333- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10334- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10335- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10344- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10345- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10346- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10347: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10348- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10349- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10350- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10363- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10364- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10365- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CommentMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10366: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10367- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10368- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10369- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10392- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10393- public CommentMessage(CommentMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10394- text_ = other.text_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10395: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10396- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10397- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10398- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10504- if (other.Text.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10505- Text = other.Text; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10506- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10507: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10508- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10509- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10510- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10517- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10518- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10519- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10520: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10521- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10522- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10523- Text = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10536- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10537- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10538- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10539: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10540- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10541- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10542- Text = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10572- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10573- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10574- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedCommentMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10575: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10576- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10577- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10578- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10601- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10602- public NestedCommentMessage(NestedCommentMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10603- nestedText_ = other.nestedText_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10604: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10605- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10606- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10607- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10713- if (other.NestedText.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10714- NestedText = other.NestedText; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10715- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10716: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10717- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10718- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10719- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10726- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10727- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10728- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10729: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10730- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10731- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10732- NestedText = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10745- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10746- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10747- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs:10748: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10749- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10750- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.pb.cs-10751- NestedText = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-87- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-88- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-89- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestProto3Optional()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:90: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-91- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-92- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-93- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-138- optionalNestedEnum_ = other.optionalNestedEnum_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-139- singularInt32_ = other.singularInt32_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-140- singularInt64_ = other.singularInt64_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:141: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-142- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-143- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-144- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1071- if (other.SingularInt64 != 0L) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1072- SingularInt64 = other.SingularInt64; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1073- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1074: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1075- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1076- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1077- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1084- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1085- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1086- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1087: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1088- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1089- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1090- OptionalInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1189- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1190- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1191- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1192: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1193- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1194- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1195- OptionalInt32 = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1309- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1310- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1311- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1312: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1313- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1314- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1315- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1340- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1341- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1342- bb_ = other.bb_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1343: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1344- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1345- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1346- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1469- if (other.HasBb) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1470- Bb = other.Bb; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1471- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1472: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1473- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1474- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1475- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1482- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1483- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1484- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1485: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1486- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1487- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1488- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1501- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1502- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1503- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1504: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1505- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1506- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1507- Bb = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1526- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1527- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1528- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestProto3OptionalMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1529: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1530- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1531- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1532- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1556- public TestProto3OptionalMessage(TestProto3OptionalMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1557- nestedMessage_ = other.nestedMessage_ != null ? other.nestedMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1558- optionalNestedMessage_ = other.optionalNestedMessage_ != null ? other.optionalNestedMessage_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1559: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1560- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1561- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1562- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1699- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1700- OptionalNestedMessage.MergeFrom(other.OptionalNestedMessage); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1701- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1702: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1703- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1704- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1705- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1712- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1713- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1714- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1715: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1716- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1717- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1718- if (nestedMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1741- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1742- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1743- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1744: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1745- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1746- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1747- if (nestedMessage_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1774- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1775- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1776- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1777: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1778- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1779- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1780- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1803- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1804- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1805- s_ = other.s_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1806: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1807- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1808- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1809- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1912- if (other.S.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1913- S = other.S; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1914- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1915: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1916- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1917- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1918- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1925- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1926- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1927- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1928: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1929- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1930- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1931- S = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1944- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1945- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1946- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1947: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1948- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1949- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1950- S = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1969- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1970- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1971- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Proto3OptionalExtensions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:1972: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1973- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1974- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1975- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1997- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1998- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-1999- public Proto3OptionalExtensions(Proto3OptionalExtensions other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:2000: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2001- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2002- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2003- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2078- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2079- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2080- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:2081: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2082- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2083- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2084- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2091- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2092- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2093- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:2094: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2095- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2096- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2097- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2106- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2107- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2108- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs:2109: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2110- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2111- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.pb.cs-2112- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-128- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-129- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-130- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OptionsMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:131: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-132- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-133- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-134- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-161- plainField_ = other.plainField_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-162- runtimeRetentionField_ = other.runtimeRetentionField_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-163- sourceRetentionField_ = other.sourceRetentionField_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:164: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-165- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-166- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-167- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-371- if (other.HasSourceRetentionField) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-372- SourceRetentionField = other.SourceRetentionField; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-373- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:374: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-375- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-376- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-377- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-384- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-385- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-386- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:387: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-388- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-389- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-390- PlainField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-411- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-412- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-413- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:414: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-415- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-416- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-417- PlainField = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-439- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-440- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-441- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Extendee()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:442: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-443- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-444- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-445- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-469- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-470- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-471- public Extendee(Extendee other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:472: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-473- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-474- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-475- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-567- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-568- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-569- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:570: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-571- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-572- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-573- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-581- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-582- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-583- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:584: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-585- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-586- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-587- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-598- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-599- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-600- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:601: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-602- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-603- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-604- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-637- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-638- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-639- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TopLevelMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:640: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-641- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-642- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-643- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-676- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-677- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-678- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:679: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-680- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-681- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-682- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-884- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-885- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-886- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:887: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-888- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-889- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-890- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-898- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-899- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-900- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:901: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-902- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-903- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-904- case 13: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-923- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-924- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-925- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:926: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-927- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-928- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-929- case 13: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-977- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-978- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-979- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NestedMessage()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:980: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-981- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-982- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-983- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1005- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1006- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1007- public NestedMessage(NestedMessage other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:1008: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1009- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1010- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1011- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1086- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1087- return; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1088- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:1089: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1090- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1091- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1092- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1099- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1100- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1101- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:1102: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1103- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1104- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1105- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1114- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1115- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1116- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs:1117: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1118- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1119- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestRetention.pb.cs-1120- } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-71- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-72- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-73- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FooOptions()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs:74: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-75- private pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-76- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-77- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-105- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-106- intOpt_ = other.intOpt_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-107- foo_ = other.foo_; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs:108: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-109- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-110- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-111- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-295- Foo = other.Foo; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-296- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-297- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs:298: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-299- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-300- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-301- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-309- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-310- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-311- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs:312: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-313- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-314- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-315- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-334- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-335- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-336- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs:337: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-338- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-339- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.pb.cs-340- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-186- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-187- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-188- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new TestWellKnownTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:189: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-190- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-191- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-192- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-233- StringField = other.StringField; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-234- BytesField = other.BytesField; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-235- valueField_ = other.valueField_ != null ? other.valueField_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:236: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-237- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-238- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-239- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-897- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-898- ValueField.MergeFrom(other.ValueField); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-899- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:900: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-901- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-902- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-903- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-910- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-911- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-912- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:913: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-914- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-915- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-916- if (anyField_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1058- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1059- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1060- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:1061: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1062- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1063- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1064- if (anyField_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1210- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1211- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1212- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new RepeatedWellKnownTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:1213: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1214- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1215- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1216- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1256- boolField_ = other.boolField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1257- stringField_ = other.stringField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1258- bytesField_ = other.bytesField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:1259: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1260- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1261- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1262- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1646- boolField_.Add(other.boolField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1647- stringField_.Add(other.stringField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1648- bytesField_.Add(other.bytesField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:1649: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1650- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1651- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1652- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1659- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1660- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1661- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:1662: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1663- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1664- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1665- anyField_.AddEntriesFrom(input, _repeated_anyField_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1746- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1747- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1748- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:1749: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1750- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1751- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1752- anyField_.AddEntriesFrom(ref input, _repeated_anyField_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1834- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1835- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1836- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneofWellKnownTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:1837: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1838- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1839- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1840- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1919- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1920- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1921- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:1922: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1923- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1924- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-1925- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2564- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2565- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2566- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:2567: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2568- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2569- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2570- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2577- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2578- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2579- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:2580: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2581- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2582- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2583- global::Google.Protobuf.WellKnownTypes.Any subBuilder = new global::Google.Protobuf.WellKnownTypes.Any(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2709- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2710- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2711- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:2712: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2713- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2714- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2715- global::Google.Protobuf.WellKnownTypes.Any subBuilder = new global::Google.Protobuf.WellKnownTypes.Any(); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2847- #endif +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2848- { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2849- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MapWellKnownTypes()); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:2850: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2851- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2852- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2853- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2893- boolField_ = other.boolField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2894- stringField_ = other.stringField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2895- bytesField_ = other.bytesField_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:2896: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2897- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2898- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-2899- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3280- boolField_.MergeFrom(other.boolField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3281- stringField_.MergeFrom(other.stringField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3282- bytesField_.MergeFrom(other.bytesField_); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:3283: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3284- } +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3285- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3286- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3293- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3294- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3295- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:3296: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3297- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3298- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3299- anyField_.AddEntriesFrom(input, _map_anyField_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3380- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3381- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3382- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs:3383: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3384- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3385- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.pb.cs-3386- anyField_.AddEntriesFrom(ref input, _map_anyField_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-125- // hand-modified version of a generated message that only provides the legacy +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-126- // MergeFrom(CodedInputStream) method and doesn't implement IBufferMessage. +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-127- private sealed partial class LegacyGeneratedCodeMessageA : pb::IMessage { +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs:128: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-129- +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-130- pbr::MessageDescriptor pb::IMessage.Descriptor => throw new System.NotImplementedException(); +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-131- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-165- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-166- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-167- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs:168: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-169- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-170- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-171- if (bb_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-182- // hand-modified version of a generated message that does provide +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-183- // the new InternalMergeFrom(ref ParseContext) method. +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-184- private sealed partial class ParseContextEnabledMessageB : pb::IBufferMessage { +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs:185: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-186- +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-187- pbr::MessageDescriptor pb::IMessage.Descriptor => throw new System.NotImplementedException(); +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-188- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-250- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-251- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-252- default: +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs:253: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-254- break; +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-255- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs-256- if (a_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-13- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-14-namespace Google.Protobuf +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-15-{ +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:16: public class UnknownFieldSetTest +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-17- { +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-18- public class Data +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-19- { +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-28- } +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-29- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-30- [Test] +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:31: public void EmptyUnknownFieldSet() +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-32- { +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:33: UnknownFieldSet unknownFields = new UnknownFieldSet(); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-34- Assert.AreEqual(0, unknownFields.CalculateSize()); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-35- } +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-36- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-37- [Test] +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:38: public void MergeUnknownFieldSet() +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-39- { +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:40: UnknownFieldSet unknownFields = new UnknownFieldSet(); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-41- UnknownField field = new UnknownField(); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-42- field.AddFixed32(123); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-43- unknownFields.AddOrReplaceField(1, field); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:44: UnknownFieldSet otherUnknownFields = new UnknownFieldSet(); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-45- Assert.IsFalse(otherUnknownFields.HasField(1)); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:46: UnknownFieldSet.MergeFrom(otherUnknownFields, unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-47- Assert.IsTrue(otherUnknownFields.HasField(1)); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-48- } +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-49- +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-124- var unknownLengthDelimitedField2 = new UnknownField(); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-125- unknownLengthDelimitedField2.AddLengthDelimited(ByteString.CopyFromUtf8("some more data")); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-126- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:127: var destUnknownFieldSet = new UnknownFieldSet(); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:128: destUnknownFieldSet.AddOrReplaceField(997, unknownVarintField); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:129: destUnknownFieldSet.AddOrReplaceField(999, unknownLengthDelimitedField1); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:130: destUnknownFieldSet.AddOrReplaceField(999, unknownLengthDelimitedField2); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-131- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:132: var clone = UnknownFieldSet.Clone(destUnknownFieldSet); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-133- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-134- Assert.IsTrue(clone.HasField(997)); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-135- Assert.IsTrue(clone.HasField(999)); +-- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-197- CodedInputStream input = new CodedInputStream(ms); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-198- Assert.AreEqual(tag, input.ReadTag()); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-199- +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs:200: Assert.Throws(() => UnknownFieldSet.MergeFieldFrom(null, input)); +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-201- } +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-202- } +third_party/protobuf/csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs-203-} +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-67- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-68- { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-69- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Version()); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:70: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-71- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-72- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-73- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-101- minor_ = other.minor_; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-102- patch_ = other.patch_; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-103- suffix_ = other.suffix_; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:104: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-105- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-106- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-107- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-357- if (other.HasSuffix) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-358- Suffix = other.Suffix; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-359- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:360: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-361- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-362- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-363- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-370- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-371- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-372- default: +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:373: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-374- break; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-375- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-376- Major = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-401- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-402- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-403- default: +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:404: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-405- break; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-406- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-407- Major = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-436- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-437- { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-438- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CodeGeneratorRequest()); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:439: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-440- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-441- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-442- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-469- protoFile_ = other.protoFile_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-470- sourceFileDescriptors_ = other.sourceFileDescriptors_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-471- compilerVersion_ = other.compilerVersion_ != null ? other.compilerVersion_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:472: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-473- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-474- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-475- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-711- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-712- CompilerVersion.MergeFrom(other.CompilerVersion); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-713- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:714: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-715- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-716- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-717- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-724- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-725- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-726- default: +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:727: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-728- break; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-729- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-730- fileToGenerate_.AddEntriesFrom(input, _repeated_fileToGenerate_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-762- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-763- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-764- default: +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:765: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-766- break; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-767- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-768- fileToGenerate_.AddEntriesFrom(ref input, _repeated_fileToGenerate_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-804- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-805- { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-806- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new CodeGeneratorResponse()); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:807: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-808- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-809- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-810- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-837- error_ = other.error_; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-838- supportedFeatures_ = other.supportedFeatures_; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-839- file_ = other.file_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:840: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-841- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-842- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-843- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1034- SupportedFeatures = other.SupportedFeatures; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1035- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1036- file_.Add(other.file_); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:1037: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1038- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1039- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1040- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1047- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1048- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1049- default: +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:1050: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1051- break; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1052- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1053- Error = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1074- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1075- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1076- default: +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:1077: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1078- break; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1079- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1080- Error = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1117- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1118- { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1119- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new File()); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:1120: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1121- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1122- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1123- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1149- insertionPoint_ = other.insertionPoint_; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1150- content_ = other.content_; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1151- generatedCodeInfo_ = other.generatedCodeInfo_ != null ? other.generatedCodeInfo_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:1152: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1153- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1154- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1155- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1447- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1448- GeneratedCodeInfo.MergeFrom(other.GeneratedCodeInfo); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1449- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:1450: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1451- } +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1452- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1453- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1460- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1461- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1462- default: +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:1463: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1464- break; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1465- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1466- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1494- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1495- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1496- default: +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs:1497: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1498- break; +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1499- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Compiler/Plugin.pb.cs-1500- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs-188- --ctx.state.recursionDepth; +third_party/protobuf/csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs-189- } +third_party/protobuf/csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs-190- +third_party/protobuf/csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs:191: public static void ReadGroup(ref ParseContext ctx, int fieldNumber, UnknownFieldSet set) +third_party/protobuf/csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs-192- { +third_party/protobuf/csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs-193- if (ctx.state.recursionDepth >= ctx.state.recursionLimit) +third_party/protobuf/csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs-194- { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-317- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-318- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-319- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FileDescriptorSet()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:320: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-321- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-322- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-323- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-346- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-347- public FileDescriptorSet(FileDescriptorSet other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-348- file_ = other.file_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:349: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-350- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-351- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-352- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-444- return; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-445- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-446- file_.Add(other.file_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:447: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-448- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-449- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-450- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-457- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-458- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-459- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:460: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-461- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-462- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-463- file_.AddEntriesFrom(input, _repeated_file_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-476- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-477- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-478- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:479: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-480- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-481- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-482- file_.AddEntriesFrom(ref input, _repeated_file_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-499- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-500- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-501- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FileDescriptorProto()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:502: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-503- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-504- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-505- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-542- sourceCodeInfo_ = other.sourceCodeInfo_ != null ? other.sourceCodeInfo_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-543- syntax_ = other.syntax_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-544- edition_ = other.edition_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:545: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-546- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-547- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-548- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1007- if (other.HasEdition) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1008- Edition = other.Edition; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1009- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1010: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1011- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1012- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1013- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1020- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1021- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1022- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1023: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1024- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1025- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1026- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1095- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1096- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1097- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1098: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1099- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1100- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1101- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1174- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1175- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1176- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DescriptorProto()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1177: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1178- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1179- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1180- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1212- options_ = other.options_ != null ? other.options_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1213- reservedRange_ = other.reservedRange_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1214- reservedName_ = other.reservedName_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1215: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1216- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1217- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1218- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1506- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1507- reservedRange_.Add(other.reservedRange_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1508- reservedName_.Add(other.reservedName_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1509: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1510- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1511- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1512- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1519- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1520- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1521- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1522: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1523- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1524- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1525- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1577- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1578- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1579- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1580: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1581- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1582- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1583- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1639- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1640- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1641- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ExtensionRange()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1642: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1643- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1644- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1645- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1672- start_ = other.start_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1673- end_ = other.end_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1674- options_ = other.options_ != null ? other.options_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1675: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1676- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1677- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1678- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1876- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1877- Options.MergeFrom(other.Options); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1878- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1879: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1880- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1881- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1882- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1889- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1890- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1891- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1892: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1893- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1894- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1895- Start = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1919- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1920- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1921- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1922: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1923- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1924- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1925- Start = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1955- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1956- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1957- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ReservedRange()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1958: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1959- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1960- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1961- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1987- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1988- start_ = other.start_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1989- end_ = other.end_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:1990: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1991- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1992- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-1993- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2160- if (other.HasEnd) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2161- End = other.End; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2162- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2163: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2164- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2165- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2166- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2173- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2174- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2175- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2176: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2177- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2178- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2179- Start = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2196- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2197- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2198- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2199: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2200- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2201- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2202- Start = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2225- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2226- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2227- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ExtensionRangeOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2228: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2229- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2230- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2231- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2261- declaration_ = other.declaration_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2262- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2263- verification_ = other.verification_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2264: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2265- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2266- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2267- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2483- Verification = other.Verification; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2484- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2485- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2486: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2487- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2488- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2489- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2497- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2498- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2499- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2500: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2501- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2502- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2503- case 18: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2533- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2534- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2535- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2536: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2537- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2538- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2539- case 18: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2605- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2606- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2607- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Declaration()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2608: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2609- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2610- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2611- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2640- type_ = other.type_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2641- reserved_ = other.reserved_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2642- repeated_ = other.repeated_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2643: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2644- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2645- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2646- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2955- if (other.HasRepeated) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2956- Repeated = other.Repeated; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2957- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2958: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2959- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2960- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2961- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2968- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2969- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2970- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:2971: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2972- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2973- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-2974- Number = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3003- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3004- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3005- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:3006: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3007- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3008- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3009- Number = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3047- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3048- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3049- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FieldDescriptorProto()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:3050: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3051- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3052- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3053- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3088- jsonName_ = other.jsonName_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3089- options_ = other.options_ != null ? other.options_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3090- proto3Optional_ = other.proto3Optional_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:3091: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3092- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3093- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3094- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3679- if (other.HasProto3Optional) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3680- Proto3Optional = other.Proto3Optional; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3681- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:3682: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3683- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3684- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3685- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3692- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3693- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3694- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:3695: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3696- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3697- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3698- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3754- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3755- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3756- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:3757: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3758- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3759- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3760- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3894- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3895- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3896- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneofDescriptorProto()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:3897: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3898- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3899- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3900- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3924- public OneofDescriptorProto(OneofDescriptorProto other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3925- name_ = other.name_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3926- options_ = other.options_ != null ? other.options_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:3927: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3928- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3929- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-3930- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4078- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4079- Options.MergeFrom(other.Options); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4080- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4081: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4082- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4083- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4084- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4091- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4092- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4093- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4094: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4095- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4096- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4097- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4117- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4118- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4119- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4120: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4121- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4122- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4123- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4147- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4148- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4149- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EnumDescriptorProto()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4150: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4151- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4152- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4153- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4180- options_ = other.options_ != null ? other.options_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4181- reservedRange_ = other.reservedRange_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4182- reservedName_ = other.reservedName_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4183: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4184- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4185- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4186- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4394- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4395- reservedRange_.Add(other.reservedRange_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4396- reservedName_.Add(other.reservedName_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4397: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4398- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4399- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4400- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4407- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4408- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4409- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4410: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4411- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4412- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4413- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4445- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4446- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4447- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4448: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4449- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4450- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4451- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4495- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4496- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4497- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EnumReservedRange()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4498: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4499- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4500- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4501- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4527- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4528- start_ = other.start_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4529- end_ = other.end_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4530: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4531- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4532- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4533- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4700- if (other.HasEnd) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4701- End = other.End; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4702- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4703: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4704- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4705- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4706- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4713- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4714- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4715- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4716: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4717- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4718- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4719- Start = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4736- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4737- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4738- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4739: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4740- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4741- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4742- Start = input.ReadInt32(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4768- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4769- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4770- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EnumValueDescriptorProto()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4771: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4772- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4773- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4774- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4801- name_ = other.name_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4802- number_ = other.number_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4803- options_ = other.options_ != null ? other.options_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:4804: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4805- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4806- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4807- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4998- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-4999- Options.MergeFrom(other.Options); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5000- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5001: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5002- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5003- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5004- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5011- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5012- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5013- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5014: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5015- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5016- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5017- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5041- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5042- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5043- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5044: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5045- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5046- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5047- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5075- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5076- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5077- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ServiceDescriptorProto()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5078: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5079- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5080- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5081- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5106- name_ = other.name_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5107- method_ = other.method_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5108- options_ = other.options_ != null ? other.options_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5109: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5110- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5111- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5112- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5277- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5278- Options.MergeFrom(other.Options); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5279- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5280: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5281- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5282- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5283- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5290- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5291- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5292- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5293: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5294- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5295- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5296- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5320- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5321- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5322- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5323: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5324- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5325- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5326- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5354- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5355- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5356- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MethodDescriptorProto()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5357: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5358- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5359- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5360- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5390- options_ = other.options_ != null ? other.options_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5391- clientStreaming_ = other.clientStreaming_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5392- serverStreaming_ = other.serverStreaming_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5393: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5394- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5395- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5396- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5724- if (other.HasServerStreaming) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5725- ServerStreaming = other.ServerStreaming; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5726- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5727: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5728- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5729- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5730- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5737- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5738- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5739- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5740: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5741- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5742- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5743- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5779- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5780- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5781- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5782: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5783- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5784- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5785- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5822- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5823- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5824- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FileOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5825: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5826- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5827- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5828- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5876- rubyPackage_ = other.rubyPackage_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5877- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5878- uninterpretedOption_ = other.uninterpretedOption_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:5879: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5880- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5881- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-5882- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6975- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6976- uninterpretedOption_.Add(other.uninterpretedOption_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6977- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:6978: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6979- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6980- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6981- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6989- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6990- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6991- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:6992: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6993- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6994- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-6995- case 10: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7097- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7098- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7099- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:7100: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7101- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7102- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7103- case 10: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7253- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7254- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7255- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:7256: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7257- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7258- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7259- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7292- deprecatedLegacyJsonFieldConflicts_ = other.deprecatedLegacyJsonFieldConflicts_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7293- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7294- uninterpretedOption_ = other.uninterpretedOption_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:7295: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7296- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7297- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7298- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7728- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7729- uninterpretedOption_.Add(other.uninterpretedOption_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7730- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:7731: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7732- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7733- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7734- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7742- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7743- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7744- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:7745: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7746- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7747- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7748- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7790- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7791- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7792- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:7793: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7794- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7795- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7796- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7860- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7861- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7862- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FieldOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:7863: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7864- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7865- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7866- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7905- editionDefaults_ = other.editionDefaults_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7906- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7907- uninterpretedOption_ = other.uninterpretedOption_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:7908: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7909- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7910- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-7911- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8558- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8559- uninterpretedOption_.Add(other.uninterpretedOption_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8560- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:8561: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8562- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8563- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8564- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8572- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8573- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8574- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:8575: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8576- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8577- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8578- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8645- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8646- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8647- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:8648: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8649- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8650- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8651- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8805- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8806- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8807- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EditionDefault()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:8808: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8809- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8810- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8811- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8837- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8838- edition_ = other.edition_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8839- value_ = other.value_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:8840: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8841- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8842- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-8843- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9006- if (other.HasValue) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9007- Value = other.Value; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9008- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9009: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9010- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9011- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9012- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9019- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9020- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9021- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9022: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9023- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9024- case 18: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9025- Value = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9042- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9043- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9044- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9045: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9046- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9047- case 18: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9048- Value = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9071- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9072- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9073- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new OneofOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9074: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9075- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9076- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9077- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9103- public OneofOptions(OneofOptions other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9104- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9105- uninterpretedOption_ = other.uninterpretedOption_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9106: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9107- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9108- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9109- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9255- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9256- uninterpretedOption_.Add(other.uninterpretedOption_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9257- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9258: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9259- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9260- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9261- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9269- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9270- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9271- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9272: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9273- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9274- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9275- case 10: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9297- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9298- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9299- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9300: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9301- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9302- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9303- case 10: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9347- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9348- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9349- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EnumOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9350: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9351- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9352- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9353- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9384- deprecatedLegacyJsonFieldConflicts_ = other.deprecatedLegacyJsonFieldConflicts_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9385- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9386- uninterpretedOption_ = other.uninterpretedOption_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9387: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9388- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9389- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9390- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9686- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9687- uninterpretedOption_.Add(other.uninterpretedOption_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9688- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9689: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9690- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9691- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9692- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9700- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9701- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9702- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9703: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9704- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9705- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9706- case 16: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9740- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9741- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9742- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9743: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9744- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9745- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9746- case 16: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9802- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9803- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9804- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EnumValueOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9805: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9806- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9807- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9808- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9838- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9839- debugRedact_ = other.debugRedact_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9840- uninterpretedOption_ = other.uninterpretedOption_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:9841: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9842- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9843- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-9844- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10087- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10088- uninterpretedOption_.Add(other.uninterpretedOption_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10089- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10090: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10091- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10092- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10093- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10101- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10102- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10103- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10104: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10105- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10106- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10107- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10137- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10138- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10139- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10140: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10141- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10142- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10143- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10195- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10196- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10197- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ServiceOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10198: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10199- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10200- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10201- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10230- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10231- deprecated_ = other.deprecated_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10232- uninterpretedOption_ = other.uninterpretedOption_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10233: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10234- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10235- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10236- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10431- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10432- uninterpretedOption_.Add(other.uninterpretedOption_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10433- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10434: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10435- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10436- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10437- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10445- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10446- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10447- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10448: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10449- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10450- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10451- case 264: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10477- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10478- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10479- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10480: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10481- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10482- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10483- case 264: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10531- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10532- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10533- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MethodOptions()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10534: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10535- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10536- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10537- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10567- idempotencyLevel_ = other.idempotencyLevel_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10568- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10569- uninterpretedOption_ = other.uninterpretedOption_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10570: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10571- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10572- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10573- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10811- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10812- uninterpretedOption_.Add(other.uninterpretedOption_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10813- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10814: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10815- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10816- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10817- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10825- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10826- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10827- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10828: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10829- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10830- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10831- case 264: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10861- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10862- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10863- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10864: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10865- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10866- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10867- case 264: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10952- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10953- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10954- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new UninterpretedOption()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10955: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10956- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10957- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10958- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10989- doubleValue_ = other.doubleValue_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10990- stringValue_ = other.stringValue_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10991- aggregateValue_ = other.aggregateValue_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:10992: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10993- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10994- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-10995- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11346- if (other.HasAggregateValue) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11347- AggregateValue = other.AggregateValue; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11348- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11349: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11350- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11351- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11352- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11359- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11360- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11361- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11362: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11363- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11364- case 18: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11365- name_.AddEntriesFrom(input, _repeated_name_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11402- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11403- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11404- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11405: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11406- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11407- case 18: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11408- name_.AddEntriesFrom(ref input, _repeated_name_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11456- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11457- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11458- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new NamePart()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11459: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11460- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11461- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11462- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11488- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11489- namePart_ = other.namePart_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11490- isExtension_ = other.isExtension_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11491: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11492- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11493- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11494- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11654- if (other.HasIsExtension) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11655- IsExtension = other.IsExtension; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11656- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11657: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11658- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11659- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11660- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11667- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11668- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11669- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11670: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11671- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11672- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11673- NamePart_ = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11690- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11691- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11692- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11693: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11694- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11695- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11696- NamePart_ = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11727- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11728- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11729- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FeatureSet()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11730: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11731- internal pb::ExtensionSet _extensions; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11732- private pb::ExtensionSet _Extensions { get { return _extensions; } } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11733- private int _hasBits0; +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11765- utf8Validation_ = other.utf8Validation_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11766- messageEncoding_ = other.messageEncoding_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11767- jsonFormat_ = other.jsonFormat_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:11768: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11769- _extensions = pb::ExtensionSet.Clone(other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11770- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-11771- +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12121- JsonFormat = other.JsonFormat; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12122- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12123- pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12124: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12125- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12126- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12127- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12135- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12136- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12137- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12138: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12139- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12140- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12141- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12176- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12177- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12178- if (!pb::ExtensionSet.TryMergeFieldFrom(ref _extensions, ref input)) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12179: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12180- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12181- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12182- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12290- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12291- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12292- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FeatureSetDefaults()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12293: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12294- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12295- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12296- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12323- defaults_ = other.defaults_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12324- minimumEdition_ = other.minimumEdition_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12325- maximumEdition_ = other.maximumEdition_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12326: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12327- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12328- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12329- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12515- if (other.HasMaximumEdition) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12516- MaximumEdition = other.MaximumEdition; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12517- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12518: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12519- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12520- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12521- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12528- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12529- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12530- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12531: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12532- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12533- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12534- defaults_.AddEntriesFrom(input, _repeated_defaults_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12555- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12556- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12557- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12558: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12559- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12560- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12561- defaults_.AddEntriesFrom(ref input, _repeated_defaults_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12592- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12593- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12594- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FeatureSetEditionDefault()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12595: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12596- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12597- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12598- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12624- _hasBits0 = other._hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12625- edition_ = other.edition_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12626- features_ = other.features_ != null ? other.features_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12627: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12628- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12629- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12630- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12779- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12780- Features.MergeFrom(other.Features); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12781- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12782: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12783- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12784- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12785- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12792- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12793- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12794- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12795: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12796- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12797- case 18: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12798- if (features_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12818- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12819- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12820- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12821: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12822- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12823- case 18: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12824- if (features_ == null) { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12854- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12855- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12856- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SourceCodeInfo()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12857: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12858- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12859- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12860- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12883- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12884- public SourceCodeInfo(SourceCodeInfo other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12885- location_ = other.location_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:12886: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12887- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12888- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-12889- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13026- return; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13027- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13028- location_.Add(other.location_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13029: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13030- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13031- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13032- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13039- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13040- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13041- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13042: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13043- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13044- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13045- location_.AddEntriesFrom(input, _repeated_location_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13058- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13059- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13060- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13061: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13062- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13063- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13064- location_.AddEntriesFrom(ref input, _repeated_location_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13081- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13082- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13083- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Location()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13084: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13085- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13086- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13087- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13114- leadingComments_ = other.leadingComments_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13115- trailingComments_ = other.trailingComments_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13116- leadingDetachedComments_ = other.leadingDetachedComments_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13117: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13118- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13119- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13120- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13411- TrailingComments = other.TrailingComments; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13412- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13413- leadingDetachedComments_.Add(other.leadingDetachedComments_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13414: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13415- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13416- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13417- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13424- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13425- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13426- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13427: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13428- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13429- case 10: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13430- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13461- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13462- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13463- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13464: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13465- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13466- case 10: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13467- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13509- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13510- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13511- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new GeneratedCodeInfo()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13512: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13513- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13514- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13515- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13538- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13539- public GeneratedCodeInfo(GeneratedCodeInfo other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13540- annotation_ = other.annotation_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13541: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13542- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13543- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13544- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13640- return; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13641- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13642- annotation_.Add(other.annotation_); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13643: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13644- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13645- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13646- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13653- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13654- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13655- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13656: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13657- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13658- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13659- annotation_.AddEntriesFrom(input, _repeated_annotation_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13672- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13673- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13674- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13675: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13676- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13677- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13678- annotation_.AddEntriesFrom(ref input, _repeated_annotation_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13695- #endif +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13696- { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13697- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Annotation()); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13698: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13699- private int _hasBits0; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13700- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13701- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13730- begin_ = other.begin_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13731- end_ = other.end_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13732- semantic_ = other.semantic_; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:13733: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13734- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13735- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-13736- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14015- if (other.HasSemantic) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14016- Semantic = other.Semantic; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14017- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:14018: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14019- } +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14020- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14021- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14028- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14029- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14030- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:14031: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14032- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14033- case 10: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14034- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14064- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14065- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14066- default: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs:14067: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14068- break; +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14069- case 10: +third_party/protobuf/csharp/src/Google.Protobuf/Reflection/Descriptor.pb.cs-14070- case 8: { +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-13-namespace Google.Protobuf +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-14-{ +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-15- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs:16: /// Represents a single field in an UnknownFieldSet. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-17- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-18- /// An UnknownField consists of four lists of values. The lists correspond +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-19- /// to the four "wire types" used in the protocol buffer binary format. +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-30- private List fixed32List; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-31- private List fixed64List; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-32- private List lengthDelimitedList; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs:33: private List groupList; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-34- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-35- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-36- /// Creates a new UnknownField. +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-112- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-113- if (groupList != null) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-114- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs:115: foreach (UnknownFieldSet value in groupList) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-116- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-117- output.WriteTag(fieldNumber, WireFormat.WireType.StartGroup); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-118- value.WriteTo(ref output); +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-157- if (groupList != null) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-158- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-159- result += CodedOutputStream.ComputeTagSize(fieldNumber) * 2 * groupList.Count; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs:160: foreach (UnknownFieldSet value in groupList) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-161- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-162- result += value.CalculateSize(); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-163- } +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-240- return this; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-241- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-242- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs:243: internal UnknownField AddGroup(UnknownFieldSet value) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-244- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-245- groupList = Add(groupList, value); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownField.cs-246- return this; +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-25- /// Most users will never need to use this class directly. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-26- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-27- [DebuggerDisplay("Count = {fields.Count}")] +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:28: [DebuggerTypeProxy(typeof(UnknownFieldSetDebugView))] +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:29: public sealed partial class UnknownFieldSet +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-30- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-31- private readonly IDictionary fields = new Dictionary(); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-32- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-33- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:34: /// Creates a new UnknownFieldSet. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-35- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:36: internal UnknownFieldSet() +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-37- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-38- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-39- +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-95- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-96- return true; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-97- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:98: UnknownFieldSet otherSet = other as UnknownFieldSet; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-99- IDictionary otherFields = otherSet.fields; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-100- if (fields.Count != otherFields.Count) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-101- { +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-161- /// Adds a field to the set. If a field with the same number already exists, it +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-162- /// is replaced. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-163- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:164: internal UnknownFieldSet AddOrReplaceField(int number, UnknownField field) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-165- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-166- if (number == 0) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-167- { +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-209- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-210- case WireFormat.WireType.StartGroup: +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-211- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:212: UnknownFieldSet set = new UnknownFieldSet(); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-213- ParsingPrimitivesMessages.ReadGroup(ref ctx, number, set); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-214- GetOrAddField(number).AddGroup(set); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-215- return true; +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-240- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-241- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-242- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:243: /// Create a new UnknownFieldSet if unknownFields is null. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-244- /// Parse a single field from and merge it +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-245- /// into unknownFields. If is configured to discard unknown fields, +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-246- /// will be returned as-is and the field will be skipped. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-247- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:248: /// The UnknownFieldSet which need to be merged +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-249- /// The coded input stream containing the field +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:250: /// The merged UnknownFieldSet +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:251: public static UnknownFieldSet MergeFieldFrom(UnknownFieldSet unknownFields, +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-252- CodedInputStream input) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-253- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-254- ParseContext.Initialize(input, out ParseContext ctx); +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-263- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-264- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-265- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:266: /// Create a new UnknownFieldSet if unknownFields is null. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-267- /// Parse a single field from and merge it +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-268- /// into unknownFields. If is configured to discard unknown fields, +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-269- /// will be returned as-is and the field will be skipped. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-270- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:271: /// The UnknownFieldSet which need to be merged +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-272- /// The parse context from which to read the field +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:273: /// The merged UnknownFieldSet +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-274- [SecuritySafeCritical] +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:275: public static UnknownFieldSet MergeFieldFrom(UnknownFieldSet unknownFields, +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-276- ref ParseContext ctx) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-277- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-278- if (ctx.DiscardUnknownFields) +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-282- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-283- if (unknownFields == null) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-284- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:285: unknownFields = new UnknownFieldSet(); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-286- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-287- if (!unknownFields.MergeFieldFrom(ref ctx)) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-288- { +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-296- /// If a field number exists in both sets, the values in +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-297- /// will be appended to the values in this set. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-298- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:299: private UnknownFieldSet MergeFrom(UnknownFieldSet other) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-300- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-301- if (other != null) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-302- { +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-309- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-310- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-311- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:312: /// Created a new UnknownFieldSet to if +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-313- /// needed and merges the fields from into the first set. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-314- /// If a field number exists in both sets, the values in +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-315- /// will be appended to the values in this set. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-316- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:317: public static UnknownFieldSet MergeFrom(UnknownFieldSet unknownFields, +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:318: UnknownFieldSet other) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-319- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-320- if (other == null) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-321- { +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-323- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-324- if (unknownFields == null) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-325- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:326: unknownFields = new UnknownFieldSet(); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-327- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-328- unknownFields.MergeFrom(other); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-329- return unknownFields; +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-334- /// Adds a field to the unknown field set. If a field with the same +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-335- /// number already exists, the two are merged. +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-336- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:337: private UnknownFieldSet MergeField(int number, UnknownField field) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-338- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-339- if (number == 0) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-340- { +-- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-354- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-355- /// Clone an unknown field set from . +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-356- /// +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:357: public static UnknownFieldSet Clone(UnknownFieldSet other) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-358- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-359- if (other == null) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-360- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-361- return null; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-362- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:363: UnknownFieldSet unknownFields = new UnknownFieldSet(); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-364- unknownFields.MergeFrom(other); +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-365- return unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-366- } +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-367- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:368: private sealed class UnknownFieldSetDebugView +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-369- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:370: private readonly UnknownFieldSet set; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-371- +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs:372: public UnknownFieldSetDebugView(UnknownFieldSet set) +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-373- { +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-374- this.set = set; +third_party/protobuf/csharp/src/Google.Protobuf/UnknownFieldSet.cs-375- } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-133- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-134- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-135- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Any()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs:136: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-137- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-138- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-139- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-163- public Any(Any other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-164- typeUrl_ = other.typeUrl_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-165- value_ = other.value_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs:166: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-167- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-168- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-169- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-333- if (other.Value.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-334- Value = other.Value; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-335- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs:336: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-337- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-338- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-339- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-346- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-347- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-348- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs:349: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-350- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-351- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-352- TypeUrl = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-369- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-370- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-371- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs:372: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-373- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-374- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.pb.cs-375- TypeUrl = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-71- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-72- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-73- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Api()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:74: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-75- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-76- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-77- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-106- sourceContext_ = other.sourceContext_ != null ? other.sourceContext_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-107- mixins_ = other.mixins_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-108- syntax_ = other.syntax_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:109: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-110- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-111- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-112- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-394- if (other.Syntax != global::Google.Protobuf.WellKnownTypes.Syntax.Proto2) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-395- Syntax = other.Syntax; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-396- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:397: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-398- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-399- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-400- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-407- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-408- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-409- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:410: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-411- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-412- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-413- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-453- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-454- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-455- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:456: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-457- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-458- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-459- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-503- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-504- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-505- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Method()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:506: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-507- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-508- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-509- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-538- responseStreaming_ = other.responseStreaming_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-539- options_ = other.options_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-540- syntax_ = other.syntax_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:541: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-542- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-543- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-544- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-825- if (other.Syntax != global::Google.Protobuf.WellKnownTypes.Syntax.Proto2) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-826- Syntax = other.Syntax; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-827- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:828: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-829- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-830- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-831- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-838- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-839- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-840- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:841: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-842- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-843- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-844- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-881- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-882- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-883- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:884: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-885- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-886- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-887- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1005- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1006- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1007- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Mixin()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:1008: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1009- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1010- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1011- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1035- public Mixin(Mixin other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1036- name_ = other.name_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1037- root_ = other.root_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:1038: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1039- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1040- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1041- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1179- if (other.Root.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1180- Root = other.Root; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1181- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:1182: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1183- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1184- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1185- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1192- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1193- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1194- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:1195: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1196- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1197- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1198- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1215- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1216- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1217- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs:1218: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1219- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1220- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.pb.cs-1221- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-107- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-108- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-109- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Duration()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs:110: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-111- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-112- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-113- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-137- public Duration(Duration other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-138- seconds_ = other.seconds_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-139- nanos_ = other.nanos_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs:140: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-141- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-142- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-143- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-287- if (other.Nanos != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-288- Nanos = other.Nanos; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-289- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs:290: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-291- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-292- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-293- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-300- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-301- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-302- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs:303: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-304- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-305- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-306- Seconds = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-323- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-324- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-325- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs:326: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-327- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-328- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.pb.cs-329- Seconds = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-55- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-56- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-57- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Empty()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs:58: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-59- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-60- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-61- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-83- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-84- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-85- public Empty(Empty other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs:86: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-87- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-88- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-89- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-164- if (other == null) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-165- return; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-166- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs:167: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-168- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-169- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-170- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-177- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-178- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-179- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs:180: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-181- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-182- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-183- } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-192- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-193- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-194- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs:195: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-196- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-197- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.pb.cs-198- } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-246- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-247- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-248- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new FieldMask()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs:249: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-250- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-251- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-252- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-275- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-276- public FieldMask(FieldMask other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-277- paths_ = other.paths_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs:278: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-279- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-280- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-281- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-376- return; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-377- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-378- paths_.Add(other.paths_); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs:379: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-380- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-381- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-382- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-389- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-390- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-391- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs:392: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-393- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-394- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-395- paths_.AddEntriesFrom(input, _repeated_paths_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-408- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-409- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-410- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs:411: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-412- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-413- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.pb.cs-414- paths_.AddEntriesFrom(ref input, _repeated_paths_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-51- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-52- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-53- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new SourceContext()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs:54: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-55- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-56- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-57- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-80- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-81- public SourceContext(SourceContext other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-82- fileName_ = other.fileName_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs:83: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-84- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-85- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-86- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-193- if (other.FileName.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-194- FileName = other.FileName; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-195- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs:196: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-197- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-198- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-199- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-206- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-207- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-208- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs:209: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-210- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-211- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-212- FileName = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-225- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-226- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-227- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs:228: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-229- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-230- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.pb.cs-231- FileName = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-84- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-85- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-86- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Struct()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:87: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-88- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-89- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-90- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-113- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-114- public Struct(Struct other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-115- fields_ = other.fields_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:116: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-117- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-118- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-119- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-214- return; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-215- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-216- fields_.MergeFrom(other.fields_); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:217: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-218- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-219- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-220- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-227- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-228- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-229- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:230: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-231- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-232- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-233- fields_.AddEntriesFrom(input, _map_fields_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-246- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-247- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-248- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:249: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-250- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-251- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-252- fields_.AddEntriesFrom(ref input, _map_fields_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-274- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-275- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-276- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Value()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:277: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-278- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-279- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-280- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-323- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-324- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-325- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:326: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-327- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-328- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-329- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-682- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-683- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-684- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:685: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-686- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-687- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-688- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-695- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-696- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-697- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:698: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-699- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-700- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-701- kind_ = input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-745- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-746- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-747- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:748: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-749- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-750- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-751- kind_ = input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-801- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-802- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-803- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ListValue()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:804: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-805- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-806- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-807- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-830- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-831- public ListValue(ListValue other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-832- values_ = other.values_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:833: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-834- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-835- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-836- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-931- return; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-932- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-933- values_.Add(other.values_); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:934: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-935- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-936- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-937- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-944- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-945- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-946- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:947: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-948- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-949- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-950- values_.AddEntriesFrom(input, _repeated_values_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-963- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-964- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-965- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs:966: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-967- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-968- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.pb.cs-969- values_.AddEntriesFrom(ref input, _repeated_values_codec); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-138- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-139- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-140- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Timestamp()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs:141: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-142- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-143- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-144- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-168- public Timestamp(Timestamp other) : this() { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-169- seconds_ = other.seconds_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-170- nanos_ = other.nanos_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs:171: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-172- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-173- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-174- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-316- if (other.Nanos != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-317- Nanos = other.Nanos; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-318- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs:319: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-320- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-321- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-322- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-329- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-330- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-331- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs:332: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-333- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-334- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-335- Seconds = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-352- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-353- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-354- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs:355: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-356- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-357- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.pb.cs-358- Seconds = input.ReadInt64(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-106- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-107- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-108- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Type()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:109: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-110- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-111- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-112- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-141- sourceContext_ = other.sourceContext_ != null ? other.sourceContext_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-142- syntax_ = other.syntax_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-143- edition_ = other.edition_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:144: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-145- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-146- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-147- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-409- if (other.Edition.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-410- Edition = other.Edition; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-411- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:412: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-413- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-414- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-415- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-422- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-423- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-424- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:425: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-426- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-427- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-428- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-468- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-469- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-470- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:471: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-472- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-473- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-474- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-518- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-519- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-520- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Field()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:521: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-522- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-523- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-524- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-556- options_ = other.options_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-557- jsonName_ = other.jsonName_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-558- defaultValue_ = other.defaultValue_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:559: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-560- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-561- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-562- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-938- if (other.DefaultValue.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-939- DefaultValue = other.DefaultValue; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-940- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:941: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-942- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-943- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-944- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-951- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-952- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-953- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:954: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-955- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-956- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-957- Kind = (global::Google.Protobuf.WellKnownTypes.Field.Types.Kind) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1006- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1007- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1008- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1009: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1010- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1011- case 8: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1012- Kind = (global::Google.Protobuf.WellKnownTypes.Field.Types.Kind) input.ReadEnum(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1177- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1178- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1179- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Enum()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1180: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1181- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1182- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1183- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1211- sourceContext_ = other.sourceContext_ != null ? other.sourceContext_.Clone() : null; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1212- syntax_ = other.syntax_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1213- edition_ = other.edition_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1214: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1215- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1216- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1217- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1459- if (other.Edition.Length != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1460- Edition = other.Edition; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1461- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1462: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1463- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1464- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1465- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1472- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1473- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1474- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1475: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1476- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1477- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1478- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1514- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1515- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1516- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1517: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1518- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1519- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1520- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1560- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1561- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1562- private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new EnumValue()); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1563: private pb::UnknownFieldSet _unknownFields; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1564- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1565- [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1566- public static pb::MessageParser Parser { get { return _parser; } } +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1591- name_ = other.name_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1592- number_ = other.number_; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1593- options_ = other.options_.Clone(); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1594: _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1595- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1596- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1597- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1754- Number = other.Number; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1755- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1756- options_.Add(other.options_); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1757: _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1758- } +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1759- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1760- [global::System.Diagnostics.DebuggerNonUserCodeAttribute] +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1767- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1768- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1769- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1770: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1771- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1772- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1773- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1794- while ((tag = input.ReadTag()) != 0) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1795- switch(tag) { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1796- default: +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs:1797: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1798- break; +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1799- case 10: { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1800- Name = input.ReadString(); +-- +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1826- #endif +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1827- { +third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.pb.cs-1828- private static readonly pb::MessageParser