123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- // 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 `event_map.proto`
- /// Generated files are compatible only with the same version
- /// of protobuf runtime.
- // const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_25_2;
- #[derive(Clone,PartialEq,Eq,Debug,Hash)]
- pub enum GridEvent {
- GetGridData = 0,
- GetGridBlocks = 1,
- GetFields = 10,
- UpdateField = 11,
- CreateField = 12,
- DeleteField = 13,
- DuplicateField = 15,
- CreateEditFieldContext = 16,
- CreateSelectOption = 30,
- CreateRow = 50,
- GetRow = 51,
- UpdateCell = 70,
- }
- impl ::protobuf::ProtobufEnum for GridEvent {
- fn value(&self) -> i32 {
- *self as i32
- }
- fn from_i32(value: i32) -> ::std::option::Option<GridEvent> {
- match value {
- 0 => ::std::option::Option::Some(GridEvent::GetGridData),
- 1 => ::std::option::Option::Some(GridEvent::GetGridBlocks),
- 10 => ::std::option::Option::Some(GridEvent::GetFields),
- 11 => ::std::option::Option::Some(GridEvent::UpdateField),
- 12 => ::std::option::Option::Some(GridEvent::CreateField),
- 13 => ::std::option::Option::Some(GridEvent::DeleteField),
- 15 => ::std::option::Option::Some(GridEvent::DuplicateField),
- 16 => ::std::option::Option::Some(GridEvent::CreateEditFieldContext),
- 30 => ::std::option::Option::Some(GridEvent::CreateSelectOption),
- 50 => ::std::option::Option::Some(GridEvent::CreateRow),
- 51 => ::std::option::Option::Some(GridEvent::GetRow),
- 70 => ::std::option::Option::Some(GridEvent::UpdateCell),
- _ => ::std::option::Option::None
- }
- }
- fn values() -> &'static [Self] {
- static values: &'static [GridEvent] = &[
- GridEvent::GetGridData,
- GridEvent::GetGridBlocks,
- GridEvent::GetFields,
- GridEvent::UpdateField,
- GridEvent::CreateField,
- GridEvent::DeleteField,
- GridEvent::DuplicateField,
- GridEvent::CreateEditFieldContext,
- GridEvent::CreateSelectOption,
- GridEvent::CreateRow,
- GridEvent::GetRow,
- GridEvent::UpdateCell,
- ];
- values
- }
- fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor {
- static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::EnumDescriptor> = ::protobuf::rt::LazyV2::INIT;
- descriptor.get(|| {
- ::protobuf::reflect::EnumDescriptor::new_pb_name::<GridEvent>("GridEvent", file_descriptor_proto())
- })
- }
- }
- impl ::std::marker::Copy for GridEvent {
- }
- impl ::std::default::Default for GridEvent {
- fn default() -> Self {
- GridEvent::GetGridData
- }
- }
- impl ::protobuf::reflect::ProtobufValue for GridEvent {
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
- ::protobuf::reflect::ReflectValueRef::Enum(::protobuf::ProtobufEnum::descriptor(self))
- }
- }
- static file_descriptor_proto_data: &'static [u8] = b"\
- \n\x0fevent_map.proto*\xe4\x01\n\tGridEvent\x12\x0f\n\x0bGetGridData\x10\
- \0\x12\x11\n\rGetGridBlocks\x10\x01\x12\r\n\tGetFields\x10\n\x12\x0f\n\
- \x0bUpdateField\x10\x0b\x12\x0f\n\x0bCreateField\x10\x0c\x12\x0f\n\x0bDe\
- leteField\x10\r\x12\x12\n\x0eDuplicateField\x10\x0f\x12\x1a\n\x16CreateE\
- ditFieldContext\x10\x10\x12\x16\n\x12CreateSelectOption\x10\x1e\x12\r\n\
- \tCreateRow\x102\x12\n\n\x06GetRow\x103\x12\x0e\n\nUpdateCell\x10Fb\x06p\
- roto3\
- ";
- 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()
- })
- }
|