// This file is generated by rust-protobuf 2.25.2. Do not edit // @generated // https://github.com/rust-lang/rust-clippy/issues/702 #![allow(unknown_lints)] #![allow(clippy::all)] #![allow(unused_attributes)] #![cfg_attr(rustfmt, rustfmt::skip)] #![allow(box_pointers)] #![allow(dead_code)] #![allow(missing_docs)] #![allow(non_camel_case_types)] #![allow(non_snake_case)] #![allow(non_upper_case_globals)] #![allow(trivial_casts)] #![allow(unused_imports)] #![allow(unused_results)] //! Generated file from `ffi_request.proto` /// Generated files are compatible only with the same version /// of protobuf runtime. // const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_25_2; #[derive(PartialEq,Clone,Default)] pub struct FFIRequest { // message fields pub event: ::std::string::String, pub payload: ::std::vec::Vec, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a FFIRequest { fn default() -> &'a FFIRequest { ::default_instance() } } impl FFIRequest { pub fn new() -> FFIRequest { ::std::default::Default::default() } // string event = 1; pub fn get_event(&self) -> &str { &self.event } pub fn clear_event(&mut self) { self.event.clear(); } // Param is passed by value, moved pub fn set_event(&mut self, v: ::std::string::String) { self.event = v; } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_event(&mut self) -> &mut ::std::string::String { &mut self.event } // Take field pub fn take_event(&mut self) -> ::std::string::String { ::std::mem::replace(&mut self.event, ::std::string::String::new()) } // bytes payload = 2; pub fn get_payload(&self) -> &[u8] { &self.payload } pub fn clear_payload(&mut self) { self.payload.clear(); } // Param is passed by value, moved pub fn set_payload(&mut self, v: ::std::vec::Vec) { self.payload = v; } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_payload(&mut self) -> &mut ::std::vec::Vec { &mut self.payload } // Take field pub fn take_payload(&mut self) -> ::std::vec::Vec { ::std::mem::replace(&mut self.payload, ::std::vec::Vec::new()) } } impl ::protobuf::Message for FFIRequest { fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 1 => { ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.event)?; }, 2 => { ::protobuf::rt::read_singular_proto3_bytes_into(wire_type, is, &mut self.payload)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if !self.event.is_empty() { my_size += ::protobuf::rt::string_size(1, &self.event); } if !self.payload.is_empty() { my_size += ::protobuf::rt::bytes_size(2, &self.payload); } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if !self.event.is_empty() { os.write_string(1, &self.event)?; } if !self.payload.is_empty() { os.write_bytes(2, &self.payload)?; } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: ::std::boxed::Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> FFIRequest { FFIRequest::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::LazyV2::INIT; descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "event", |m: &FFIRequest| { &m.event }, |m: &mut FFIRequest| { &mut m.event }, )); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>( "payload", |m: &FFIRequest| { &m.payload }, |m: &mut FFIRequest| { &mut m.payload }, )); ::protobuf::reflect::MessageDescriptor::new_pb_name::( "FFIRequest", fields, file_descriptor_proto() ) }) } fn default_instance() -> &'static FFIRequest { static instance: ::protobuf::rt::LazyV2 = ::protobuf::rt::LazyV2::INIT; instance.get(FFIRequest::new) } } impl ::protobuf::Clear for FFIRequest { fn clear(&mut self) { self.event.clear(); self.payload.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for FFIRequest { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for FFIRequest { fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef { ::protobuf::reflect::ReflectValueRef::Message(self) } } static file_descriptor_proto_data: &'static [u8] = b"\ \n\x11ffi_request.proto\"<\n\nFFIRequest\x12\x14\n\x05event\x18\x01\x20\ \x01(\tR\x05event\x12\x18\n\x07payload\x18\x02\x20\x01(\x0cR\x07payloadb\ \x06proto3\ "; static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT; fn parse_descriptor_proto() -> ::protobuf::descriptor::FileDescriptorProto { ::protobuf::Message::parse_from_bytes(file_descriptor_proto_data).unwrap() } pub fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto { file_descriptor_proto_lazy.get(|| { parse_descriptor_proto() }) }