#![allow(unknown_lints)]
#![allow(clippy::all)]
#![allow(unused_attributes)]
#![cfg_attr(rustfmt, rustfmt::skip)]
#![allow(box_pointers)]
#![allow(dead_code)]
#![allow(missing_docs)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(trivial_casts)]
#![allow(unused_results)]
#![allow(unused_mut)]
const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_3_2_0;
#[derive(PartialEq,Clone,Default,Debug)]
pub struct StandardResponse {
pub id: ::std::string::String,
pub code: ::protobuf::EnumOrUnknown<ResponseCode>,
pub message: ::std::string::String,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a StandardResponse {
fn default() -> &'a StandardResponse {
<StandardResponse as ::protobuf::Message>::default_instance()
}
}
impl StandardResponse {
pub fn new() -> StandardResponse {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(3);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"id",
|m: &StandardResponse| { &m.id },
|m: &mut StandardResponse| { &mut m.id },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"code",
|m: &StandardResponse| { &m.code },
|m: &mut StandardResponse| { &mut m.code },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"message",
|m: &StandardResponse| { &m.message },
|m: &mut StandardResponse| { &mut m.message },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<StandardResponse>(
"StandardResponse",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for StandardResponse {
const NAME: &'static str = "StandardResponse";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.id = is.read_string()?;
},
16 => {
self.code = is.read_enum_or_unknown()?;
},
26 => {
self.message = is.read_string()?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if !self.id.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.id);
}
if self.code != ::protobuf::EnumOrUnknown::new(ResponseCode::RESPONSE_CODE_UNSET) {
my_size += ::protobuf::rt::int32_size(2, self.code.value());
}
if !self.message.is_empty() {
my_size += ::protobuf::rt::string_size(3, &self.message);
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if !self.id.is_empty() {
os.write_string(1, &self.id)?;
}
if self.code != ::protobuf::EnumOrUnknown::new(ResponseCode::RESPONSE_CODE_UNSET) {
os.write_enum(2, ::protobuf::EnumOrUnknown::value(&self.code))?;
}
if !self.message.is_empty() {
os.write_string(3, &self.message)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> StandardResponse {
StandardResponse::new()
}
fn clear(&mut self) {
self.id.clear();
self.code = ::protobuf::EnumOrUnknown::new(ResponseCode::RESPONSE_CODE_UNSET);
self.message.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static StandardResponse {
static instance: StandardResponse = StandardResponse {
id: ::std::string::String::new(),
code: ::protobuf::EnumOrUnknown::from_i32(0),
message: ::std::string::String::new(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for StandardResponse {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("StandardResponse").unwrap()).clone()
}
}
impl ::std::fmt::Display for StandardResponse {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for StandardResponse {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct Audience {
pub service_name: ::std::string::String,
pub component_name: ::std::string::String,
pub operation_type: ::protobuf::EnumOrUnknown<OperationType>,
pub operation_name: ::std::string::String,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a Audience {
fn default() -> &'a Audience {
<Audience as ::protobuf::Message>::default_instance()
}
}
impl Audience {
pub fn new() -> Audience {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(4);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"service_name",
|m: &Audience| { &m.service_name },
|m: &mut Audience| { &mut m.service_name },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"component_name",
|m: &Audience| { &m.component_name },
|m: &mut Audience| { &mut m.component_name },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"operation_type",
|m: &Audience| { &m.operation_type },
|m: &mut Audience| { &mut m.operation_type },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"operation_name",
|m: &Audience| { &m.operation_name },
|m: &mut Audience| { &mut m.operation_name },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<Audience>(
"Audience",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for Audience {
const NAME: &'static str = "Audience";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.service_name = is.read_string()?;
},
18 => {
self.component_name = is.read_string()?;
},
24 => {
self.operation_type = is.read_enum_or_unknown()?;
},
34 => {
self.operation_name = is.read_string()?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if !self.service_name.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.service_name);
}
if !self.component_name.is_empty() {
my_size += ::protobuf::rt::string_size(2, &self.component_name);
}
if self.operation_type != ::protobuf::EnumOrUnknown::new(OperationType::OPERATION_TYPE_UNSET) {
my_size += ::protobuf::rt::int32_size(3, self.operation_type.value());
}
if !self.operation_name.is_empty() {
my_size += ::protobuf::rt::string_size(4, &self.operation_name);
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if !self.service_name.is_empty() {
os.write_string(1, &self.service_name)?;
}
if !self.component_name.is_empty() {
os.write_string(2, &self.component_name)?;
}
if self.operation_type != ::protobuf::EnumOrUnknown::new(OperationType::OPERATION_TYPE_UNSET) {
os.write_enum(3, ::protobuf::EnumOrUnknown::value(&self.operation_type))?;
}
if !self.operation_name.is_empty() {
os.write_string(4, &self.operation_name)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> Audience {
Audience::new()
}
fn clear(&mut self) {
self.service_name.clear();
self.component_name.clear();
self.operation_type = ::protobuf::EnumOrUnknown::new(OperationType::OPERATION_TYPE_UNSET);
self.operation_name.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static Audience {
static instance: Audience = Audience {
service_name: ::std::string::String::new(),
component_name: ::std::string::String::new(),
operation_type: ::protobuf::EnumOrUnknown::from_i32(0),
operation_name: ::std::string::String::new(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for Audience {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("Audience").unwrap()).clone()
}
}
impl ::std::fmt::Display for Audience {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for Audience {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(Clone,Copy,PartialEq,Eq,Debug,Hash)]
pub enum ResponseCode {
RESPONSE_CODE_UNSET = 0,
RESPONSE_CODE_OK = 1,
RESPONSE_CODE_BAD_REQUEST = 2,
RESPONSE_CODE_NOT_FOUND = 3,
RESPONSE_CODE_INTERNAL_SERVER_ERROR = 4,
RESPONSE_CODE_GENERIC_ERROR = 5,
}
impl ::protobuf::Enum for ResponseCode {
const NAME: &'static str = "ResponseCode";
fn value(&self) -> i32 {
*self as i32
}
fn from_i32(value: i32) -> ::std::option::Option<ResponseCode> {
match value {
0 => ::std::option::Option::Some(ResponseCode::RESPONSE_CODE_UNSET),
1 => ::std::option::Option::Some(ResponseCode::RESPONSE_CODE_OK),
2 => ::std::option::Option::Some(ResponseCode::RESPONSE_CODE_BAD_REQUEST),
3 => ::std::option::Option::Some(ResponseCode::RESPONSE_CODE_NOT_FOUND),
4 => ::std::option::Option::Some(ResponseCode::RESPONSE_CODE_INTERNAL_SERVER_ERROR),
5 => ::std::option::Option::Some(ResponseCode::RESPONSE_CODE_GENERIC_ERROR),
_ => ::std::option::Option::None
}
}
const VALUES: &'static [ResponseCode] = &[
ResponseCode::RESPONSE_CODE_UNSET,
ResponseCode::RESPONSE_CODE_OK,
ResponseCode::RESPONSE_CODE_BAD_REQUEST,
ResponseCode::RESPONSE_CODE_NOT_FOUND,
ResponseCode::RESPONSE_CODE_INTERNAL_SERVER_ERROR,
ResponseCode::RESPONSE_CODE_GENERIC_ERROR,
];
}
impl ::protobuf::EnumFull for ResponseCode {
fn enum_descriptor() -> ::protobuf::reflect::EnumDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().enum_by_package_relative_name("ResponseCode").unwrap()).clone()
}
fn descriptor(&self) -> ::protobuf::reflect::EnumValueDescriptor {
let index = *self as usize;
Self::enum_descriptor().value_by_index(index)
}
}
impl ::std::default::Default for ResponseCode {
fn default() -> Self {
ResponseCode::RESPONSE_CODE_UNSET
}
}
impl ResponseCode {
fn generated_enum_descriptor_data() -> ::protobuf::reflect::GeneratedEnumDescriptorData {
::protobuf::reflect::GeneratedEnumDescriptorData::new::<ResponseCode>("ResponseCode")
}
}
#[derive(Clone,Copy,PartialEq,Eq,Debug,Hash)]
pub enum OperationType {
OPERATION_TYPE_UNSET = 0,
OPERATION_TYPE_CONSUMER = 1,
OPERATION_TYPE_PRODUCER = 2,
}
impl ::protobuf::Enum for OperationType {
const NAME: &'static str = "OperationType";
fn value(&self) -> i32 {
*self as i32
}
fn from_i32(value: i32) -> ::std::option::Option<OperationType> {
match value {
0 => ::std::option::Option::Some(OperationType::OPERATION_TYPE_UNSET),
1 => ::std::option::Option::Some(OperationType::OPERATION_TYPE_CONSUMER),
2 => ::std::option::Option::Some(OperationType::OPERATION_TYPE_PRODUCER),
_ => ::std::option::Option::None
}
}
const VALUES: &'static [OperationType] = &[
OperationType::OPERATION_TYPE_UNSET,
OperationType::OPERATION_TYPE_CONSUMER,
OperationType::OPERATION_TYPE_PRODUCER,
];
}
impl ::protobuf::EnumFull for OperationType {
fn enum_descriptor() -> ::protobuf::reflect::EnumDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().enum_by_package_relative_name("OperationType").unwrap()).clone()
}
fn descriptor(&self) -> ::protobuf::reflect::EnumValueDescriptor {
let index = *self as usize;
Self::enum_descriptor().value_by_index(index)
}
}
impl ::std::default::Default for OperationType {
fn default() -> Self {
OperationType::OPERATION_TYPE_UNSET
}
}
impl OperationType {
fn generated_enum_descriptor_data() -> ::protobuf::reflect::GeneratedEnumDescriptorData {
::protobuf::reflect::GeneratedEnumDescriptorData::new::<OperationType>("OperationType")
}
}
static file_descriptor_proto_data: &'static [u8] = b"\
\n\x0ccommon.proto\x12\x06protos\"f\n\x10StandardResponse\x12\x0e\n\x02i\
d\x18\x01\x20\x01(\tR\x02id\x12(\n\x04code\x18\x02\x20\x01(\x0e2\x14.pro\
tos.ResponseCodeR\x04code\x12\x18\n\x07message\x18\x03\x20\x01(\tR\x07me\
ssage\"\xb9\x01\n\x08Audience\x12!\n\x0cservice_name\x18\x01\x20\x01(\tR\
\x0bserviceName\x12%\n\x0ecomponent_name\x18\x02\x20\x01(\tR\rcomponentN\
ame\x12<\n\x0eoperation_type\x18\x03\x20\x01(\x0e2\x15.protos.OperationT\
ypeR\roperationType\x12%\n\x0eoperation_name\x18\x04\x20\x01(\tR\roperat\
ionName*\xc3\x01\n\x0cResponseCode\x12\x17\n\x13RESPONSE_CODE_UNSET\x10\
\0\x12\x14\n\x10RESPONSE_CODE_OK\x10\x01\x12\x1d\n\x19RESPONSE_CODE_BAD_\
REQUEST\x10\x02\x12\x1b\n\x17RESPONSE_CODE_NOT_FOUND\x10\x03\x12'\n#RESP\
ONSE_CODE_INTERNAL_SERVER_ERROR\x10\x04\x12\x1f\n\x1bRESPONSE_CODE_GENER\
IC_ERROR\x10\x05*c\n\rOperationType\x12\x18\n\x14OPERATION_TYPE_UNSET\
\x10\0\x12\x1b\n\x17OPERATION_TYPE_CONSUMER\x10\x01\x12\x1b\n\x17OPERATI\
ON_TYPE_PRODUCER\x10\x02B4Z2github.com/streamdal/snitch-protos/build/go/\
protosJ\xf4\n\n\x06\x12\x04\0\0-\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\
\x08\n\x01\x02\x12\x03\x02\0\x0f\n\x08\n\x01\x08\x12\x03\x04\0I\n\t\n\
\x02\x08\x0b\x12\x03\x04\0I\n;\n\x02\x04\0\x12\x04\x07\0\x0c\x01\x1a/\
\x20Common\x20response\x20message\x20for\x20many\x20gRPC\x20methods\n\n\
\n\n\x03\x04\0\x01\x12\x03\x07\x08\x18\n8\n\x04\x04\0\x02\0\x12\x03\t\
\x02\x10\x1a+\x20Co-relation\x20ID\x20for\x20the\x20request\x20/\x20resp\
onse\n\n\x0c\n\x05\x04\0\x02\0\x05\x12\x03\t\x02\x08\n\x0c\n\x05\x04\0\
\x02\0\x01\x12\x03\t\t\x0b\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\t\x0e\x0f\
\n\x0b\n\x04\x04\0\x02\x01\x12\x03\n\x02\x18\n\x0c\n\x05\x04\0\x02\x01\
\x06\x12\x03\n\x02\x0e\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\n\x0f\x13\n\
\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\n\x16\x17\n\x0b\n\x04\x04\0\x02\x02\
\x12\x03\x0b\x02\x15\n\x0c\n\x05\x04\0\x02\x02\x05\x12\x03\x0b\x02\x08\n\
\x0c\n\x05\x04\0\x02\x02\x01\x12\x03\x0b\t\x10\n\x0c\n\x05\x04\0\x02\x02\
\x03\x12\x03\x0b\x13\x14\n?\n\x02\x05\0\x12\x04\x0f\0\x16\x01\x1a3\x20Co\
mmon\x20status\x20codes\x20used\x20in\x20gRPC\x20method\x20responses\n\n\
\n\n\x03\x05\0\x01\x12\x03\x0f\x05\x11\n\x0b\n\x04\x05\0\x02\0\x12\x03\
\x10\x02\x19\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\x10\x02\x15\n\x0c\n\x05\
\x05\0\x02\0\x02\x12\x03\x10\x17\x18\n\x0b\n\x04\x05\0\x02\x01\x12\x03\
\x11\x02\x17\n\x0c\n\x05\x05\0\x02\x01\x01\x12\x03\x11\x02\x12\n\x0c\n\
\x05\x05\0\x02\x01\x02\x12\x03\x11\x15\x16\n\x0b\n\x04\x05\0\x02\x02\x12\
\x03\x12\x02\x20\n\x0c\n\x05\x05\0\x02\x02\x01\x12\x03\x12\x02\x1b\n\x0c\
\n\x05\x05\0\x02\x02\x02\x12\x03\x12\x1e\x1f\n\x0b\n\x04\x05\0\x02\x03\
\x12\x03\x13\x02\x1e\n\x0c\n\x05\x05\0\x02\x03\x01\x12\x03\x13\x02\x19\n\
\x0c\n\x05\x05\0\x02\x03\x02\x12\x03\x13\x1c\x1d\n\x0b\n\x04\x05\0\x02\
\x04\x12\x03\x14\x02*\n\x0c\n\x05\x05\0\x02\x04\x01\x12\x03\x14\x02%\n\
\x0c\n\x05\x05\0\x02\x04\x02\x12\x03\x14()\n\x0b\n\x04\x05\0\x02\x05\x12\
\x03\x15\x02\"\n\x0c\n\x05\x05\0\x02\x05\x01\x12\x03\x15\x02\x1d\n\x0c\n\
\x05\x05\0\x02\x05\x02\x12\x03\x15\x20!\nJ\n\x02\x05\x01\x12\x04\x19\0\
\x1d\x01\x1a>\x20Each\x20SDK\x20client\x20is\x20a\x20$service\x20+\x20$c\
omponent\x20+\x20$operation_type\n\n\n\n\x03\x05\x01\x01\x12\x03\x19\x05\
\x12\n\x0b\n\x04\x05\x01\x02\0\x12\x03\x1a\x02\x1b\n\x0c\n\x05\x05\x01\
\x02\0\x01\x12\x03\x1a\x02\x16\n\x0c\n\x05\x05\x01\x02\0\x02\x12\x03\x1a\
\x19\x1a\n\x0b\n\x04\x05\x01\x02\x01\x12\x03\x1b\x02\x1e\n\x0c\n\x05\x05\
\x01\x02\x01\x01\x12\x03\x1b\x02\x19\n\x0c\n\x05\x05\x01\x02\x01\x02\x12\
\x03\x1b\x1c\x1d\n\x0b\n\x04\x05\x01\x02\x02\x12\x03\x1c\x02\x1e\n\x0c\n\
\x05\x05\x01\x02\x02\x01\x12\x03\x1c\x02\x19\n\x0c\n\x05\x05\x01\x02\x02\
\x02\x12\x03\x1c\x1c\x1d\n<\n\x02\x04\x01\x12\x04\x20\0-\x01\x1a0\x20Use\
d\x20to\x20indicate\x20who\x20a\x20command\x20is\x20intended\x20for\n\n\
\n\n\x03\x04\x01\x01\x12\x03\x20\x08\x10\nm\n\x04\x04\x01\x02\0\x12\x03#\
\x02\x1a\x1a`\x20Name\x20of\x20the\x20service\x20--\x20let's\x20include\
\x20the\x20service\x20name\x20on\x20all\x20calls,\x20we\x20can\n\x20opti\
mize\x20later\x20~DS\n\n\x0c\n\x05\x04\x01\x02\0\x05\x12\x03#\x02\x08\n\
\x0c\n\x05\x04\x01\x02\0\x01\x12\x03#\t\x15\n\x0c\n\x05\x04\x01\x02\0\
\x03\x12\x03#\x18\x19\nX\n\x04\x04\x01\x02\x01\x12\x03&\x02\x1c\x1aK\x20\
Name\x20of\x20the\x20component\x20the\x20SDK\x20is\x20interacting\x20wit\
h\x20(ie.\x20kafka-$topic-name)\n\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\
\x03&\x02\x08\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03&\t\x17\n\x0c\n\x05\
\x04\x01\x02\x01\x03\x12\x03&\x1a\x1b\n#\n\x04\x04\x01\x02\x02\x12\x03)\
\x02#\x1a\x16\x20Consumer\x20or\x20Producer\n\n\x0c\n\x05\x04\x01\x02\
\x02\x06\x12\x03)\x02\x0f\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03)\x10\
\x1e\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03)!\"\n0\n\x04\x04\x01\x02\
\x03\x12\x03,\x02\x1c\x1a#\x20Name\x20for\x20the\x20consumer\x20or\x20pr\
oducer\n\n\x0c\n\x05\x04\x01\x02\x03\x05\x12\x03,\x02\x08\n\x0c\n\x05\
\x04\x01\x02\x03\x01\x12\x03,\t\x17\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\
\x03,\x1a\x1bb\x06proto3\
";
fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto {
static file_descriptor_proto_lazy: ::protobuf::rt::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::Lazy::new();
file_descriptor_proto_lazy.get(|| {
::protobuf::Message::parse_from_bytes(file_descriptor_proto_data).unwrap()
})
}
pub fn file_descriptor() -> &'static ::protobuf::reflect::FileDescriptor {
static generated_file_descriptor_lazy: ::protobuf::rt::Lazy<::protobuf::reflect::GeneratedFileDescriptor> = ::protobuf::rt::Lazy::new();
static file_descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::FileDescriptor> = ::protobuf::rt::Lazy::new();
file_descriptor.get(|| {
let generated_file_descriptor = generated_file_descriptor_lazy.get(|| {
let mut deps = ::std::vec::Vec::with_capacity(0);
let mut messages = ::std::vec::Vec::with_capacity(2);
messages.push(StandardResponse::generated_message_descriptor_data());
messages.push(Audience::generated_message_descriptor_data());
let mut enums = ::std::vec::Vec::with_capacity(2);
enums.push(ResponseCode::generated_enum_descriptor_data());
enums.push(OperationType::generated_enum_descriptor_data());
::protobuf::reflect::GeneratedFileDescriptor::new_generated(
file_descriptor_proto(),
deps,
messages,
enums,
)
});
::protobuf::reflect::FileDescriptor::new_generated_2(generated_file_descriptor)
})
}