|
@@ -1,4296 +0,0 @@
|
|
|
-// 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 `grid.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 Grid {
|
|
|
- // message fields
|
|
|
- pub id: ::std::string::String,
|
|
|
- pub field_orders: ::protobuf::RepeatedField<super::field::FieldOrder>,
|
|
|
- pub block_orders: ::protobuf::RepeatedField<GridBlockOrder>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a Grid {
|
|
|
- fn default() -> &'a Grid {
|
|
|
- <Grid as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl Grid {
|
|
|
- pub fn new() -> Grid {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_id(&self) -> &str {
|
|
|
- &self.id
|
|
|
- }
|
|
|
- pub fn clear_id(&mut self) {
|
|
|
- self.id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_id(&mut self, v: ::std::string::String) {
|
|
|
- self.id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .FieldOrder field_orders = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_field_orders(&self) -> &[super::field::FieldOrder] {
|
|
|
- &self.field_orders
|
|
|
- }
|
|
|
- pub fn clear_field_orders(&mut self) {
|
|
|
- self.field_orders.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_field_orders(&mut self, v: ::protobuf::RepeatedField<super::field::FieldOrder>) {
|
|
|
- self.field_orders = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_field_orders(&mut self) -> &mut ::protobuf::RepeatedField<super::field::FieldOrder> {
|
|
|
- &mut self.field_orders
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_field_orders(&mut self) -> ::protobuf::RepeatedField<super::field::FieldOrder> {
|
|
|
- ::std::mem::replace(&mut self.field_orders, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .GridBlockOrder block_orders = 3;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_block_orders(&self) -> &[GridBlockOrder] {
|
|
|
- &self.block_orders
|
|
|
- }
|
|
|
- pub fn clear_block_orders(&mut self) {
|
|
|
- self.block_orders.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_block_orders(&mut self, v: ::protobuf::RepeatedField<GridBlockOrder>) {
|
|
|
- self.block_orders = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_block_orders(&mut self) -> &mut ::protobuf::RepeatedField<GridBlockOrder> {
|
|
|
- &mut self.block_orders
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_block_orders(&mut self) -> ::protobuf::RepeatedField<GridBlockOrder> {
|
|
|
- ::std::mem::replace(&mut self.block_orders, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for Grid {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.field_orders {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- for v in &self.block_orders {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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.id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.field_orders)?;
|
|
|
- },
|
|
|
- 3 => {
|
|
|
- ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.block_orders)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.id);
|
|
|
- }
|
|
|
- for value in &self.field_orders {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- for value in &self.block_orders {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- 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.id.is_empty() {
|
|
|
- os.write_string(1, &self.id)?;
|
|
|
- }
|
|
|
- for v in &self.field_orders {
|
|
|
- os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- for v in &self.block_orders {
|
|
|
- os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> Grid {
|
|
|
- Grid::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>(
|
|
|
- "id",
|
|
|
- |m: &Grid| { &m.id },
|
|
|
- |m: &mut Grid| { &mut m.id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::field::FieldOrder>>(
|
|
|
- "field_orders",
|
|
|
- |m: &Grid| { &m.field_orders },
|
|
|
- |m: &mut Grid| { &mut m.field_orders },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<GridBlockOrder>>(
|
|
|
- "block_orders",
|
|
|
- |m: &Grid| { &m.block_orders },
|
|
|
- |m: &mut Grid| { &mut m.block_orders },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<Grid>(
|
|
|
- "Grid",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static Grid {
|
|
|
- static instance: ::protobuf::rt::LazyV2<Grid> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(Grid::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for Grid {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.id.clear();
|
|
|
- self.field_orders.clear();
|
|
|
- self.block_orders.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for Grid {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for Grid {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct RowOrder {
|
|
|
- // message fields
|
|
|
- pub row_id: ::std::string::String,
|
|
|
- pub block_id: ::std::string::String,
|
|
|
- pub height: i32,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a RowOrder {
|
|
|
- fn default() -> &'a RowOrder {
|
|
|
- <RowOrder as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl RowOrder {
|
|
|
- pub fn new() -> RowOrder {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string row_id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_row_id(&self) -> &str {
|
|
|
- &self.row_id
|
|
|
- }
|
|
|
- pub fn clear_row_id(&mut self) {
|
|
|
- self.row_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_row_id(&mut self, v: ::std::string::String) {
|
|
|
- self.row_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_row_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.row_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_row_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.row_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // string block_id = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_block_id(&self) -> &str {
|
|
|
- &self.block_id
|
|
|
- }
|
|
|
- pub fn clear_block_id(&mut self) {
|
|
|
- self.block_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_block_id(&mut self, v: ::std::string::String) {
|
|
|
- self.block_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_block_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.block_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_block_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.block_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // int32 height = 3;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_height(&self) -> i32 {
|
|
|
- self.height
|
|
|
- }
|
|
|
- pub fn clear_height(&mut self) {
|
|
|
- self.height = 0;
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_height(&mut self, v: i32) {
|
|
|
- self.height = v;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for RowOrder {
|
|
|
- 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.row_id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.block_id)?;
|
|
|
- },
|
|
|
- 3 => {
|
|
|
- if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
- return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
- }
|
|
|
- let tmp = is.read_int32()?;
|
|
|
- self.height = tmp;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.row_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.row_id);
|
|
|
- }
|
|
|
- if !self.block_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(2, &self.block_id);
|
|
|
- }
|
|
|
- if self.height != 0 {
|
|
|
- my_size += ::protobuf::rt::value_size(3, self.height, ::protobuf::wire_format::WireTypeVarint);
|
|
|
- }
|
|
|
- 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.row_id.is_empty() {
|
|
|
- os.write_string(1, &self.row_id)?;
|
|
|
- }
|
|
|
- if !self.block_id.is_empty() {
|
|
|
- os.write_string(2, &self.block_id)?;
|
|
|
- }
|
|
|
- if self.height != 0 {
|
|
|
- os.write_int32(3, self.height)?;
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> RowOrder {
|
|
|
- RowOrder::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>(
|
|
|
- "row_id",
|
|
|
- |m: &RowOrder| { &m.row_id },
|
|
|
- |m: &mut RowOrder| { &mut m.row_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "block_id",
|
|
|
- |m: &RowOrder| { &m.block_id },
|
|
|
- |m: &mut RowOrder| { &mut m.block_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt32>(
|
|
|
- "height",
|
|
|
- |m: &RowOrder| { &m.height },
|
|
|
- |m: &mut RowOrder| { &mut m.height },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<RowOrder>(
|
|
|
- "RowOrder",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static RowOrder {
|
|
|
- static instance: ::protobuf::rt::LazyV2<RowOrder> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(RowOrder::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for RowOrder {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.row_id.clear();
|
|
|
- self.block_id.clear();
|
|
|
- self.height = 0;
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for RowOrder {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for RowOrder {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct Row {
|
|
|
- // message fields
|
|
|
- pub id: ::std::string::String,
|
|
|
- pub cell_by_field_id: ::std::collections::HashMap<::std::string::String, Cell>,
|
|
|
- pub height: i32,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a Row {
|
|
|
- fn default() -> &'a Row {
|
|
|
- <Row as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl Row {
|
|
|
- pub fn new() -> Row {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_id(&self) -> &str {
|
|
|
- &self.id
|
|
|
- }
|
|
|
- pub fn clear_id(&mut self) {
|
|
|
- self.id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_id(&mut self, v: ::std::string::String) {
|
|
|
- self.id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .Row.CellByFieldIdEntry cell_by_field_id = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_cell_by_field_id(&self) -> &::std::collections::HashMap<::std::string::String, Cell> {
|
|
|
- &self.cell_by_field_id
|
|
|
- }
|
|
|
- pub fn clear_cell_by_field_id(&mut self) {
|
|
|
- self.cell_by_field_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_cell_by_field_id(&mut self, v: ::std::collections::HashMap<::std::string::String, Cell>) {
|
|
|
- self.cell_by_field_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_cell_by_field_id(&mut self) -> &mut ::std::collections::HashMap<::std::string::String, Cell> {
|
|
|
- &mut self.cell_by_field_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_cell_by_field_id(&mut self) -> ::std::collections::HashMap<::std::string::String, Cell> {
|
|
|
- ::std::mem::replace(&mut self.cell_by_field_id, ::std::collections::HashMap::new())
|
|
|
- }
|
|
|
-
|
|
|
- // int32 height = 3;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_height(&self) -> i32 {
|
|
|
- self.height
|
|
|
- }
|
|
|
- pub fn clear_height(&mut self) {
|
|
|
- self.height = 0;
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_height(&mut self, v: i32) {
|
|
|
- self.height = v;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for Row {
|
|
|
- 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.id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_map_into::<::protobuf::types::ProtobufTypeString, ::protobuf::types::ProtobufTypeMessage<Cell>>(wire_type, is, &mut self.cell_by_field_id)?;
|
|
|
- },
|
|
|
- 3 => {
|
|
|
- if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
- return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
- }
|
|
|
- let tmp = is.read_int32()?;
|
|
|
- self.height = tmp;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.id);
|
|
|
- }
|
|
|
- my_size += ::protobuf::rt::compute_map_size::<::protobuf::types::ProtobufTypeString, ::protobuf::types::ProtobufTypeMessage<Cell>>(2, &self.cell_by_field_id);
|
|
|
- if self.height != 0 {
|
|
|
- my_size += ::protobuf::rt::value_size(3, self.height, ::protobuf::wire_format::WireTypeVarint);
|
|
|
- }
|
|
|
- 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.id.is_empty() {
|
|
|
- os.write_string(1, &self.id)?;
|
|
|
- }
|
|
|
- ::protobuf::rt::write_map_with_cached_sizes::<::protobuf::types::ProtobufTypeString, ::protobuf::types::ProtobufTypeMessage<Cell>>(2, &self.cell_by_field_id, os)?;
|
|
|
- if self.height != 0 {
|
|
|
- os.write_int32(3, self.height)?;
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> Row {
|
|
|
- Row::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>(
|
|
|
- "id",
|
|
|
- |m: &Row| { &m.id },
|
|
|
- |m: &mut Row| { &mut m.id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_map_accessor::<_, ::protobuf::types::ProtobufTypeString, ::protobuf::types::ProtobufTypeMessage<Cell>>(
|
|
|
- "cell_by_field_id",
|
|
|
- |m: &Row| { &m.cell_by_field_id },
|
|
|
- |m: &mut Row| { &mut m.cell_by_field_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt32>(
|
|
|
- "height",
|
|
|
- |m: &Row| { &m.height },
|
|
|
- |m: &mut Row| { &mut m.height },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<Row>(
|
|
|
- "Row",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static Row {
|
|
|
- static instance: ::protobuf::rt::LazyV2<Row> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(Row::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for Row {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.id.clear();
|
|
|
- self.cell_by_field_id.clear();
|
|
|
- self.height = 0;
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for Row {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for Row {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct RepeatedRow {
|
|
|
- // message fields
|
|
|
- pub items: ::protobuf::RepeatedField<Row>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a RepeatedRow {
|
|
|
- fn default() -> &'a RepeatedRow {
|
|
|
- <RepeatedRow as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl RepeatedRow {
|
|
|
- pub fn new() -> RepeatedRow {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .Row items = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_items(&self) -> &[Row] {
|
|
|
- &self.items
|
|
|
- }
|
|
|
- pub fn clear_items(&mut self) {
|
|
|
- self.items.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_items(&mut self, v: ::protobuf::RepeatedField<Row>) {
|
|
|
- self.items = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_items(&mut self) -> &mut ::protobuf::RepeatedField<Row> {
|
|
|
- &mut self.items
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_items(&mut self) -> ::protobuf::RepeatedField<Row> {
|
|
|
- ::std::mem::replace(&mut self.items, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for RepeatedRow {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.items {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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_repeated_message_into(wire_type, is, &mut self.items)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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;
|
|
|
- for value in &self.items {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- 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<()> {
|
|
|
- for v in &self.items {
|
|
|
- os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> RepeatedRow {
|
|
|
- RepeatedRow::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_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<Row>>(
|
|
|
- "items",
|
|
|
- |m: &RepeatedRow| { &m.items },
|
|
|
- |m: &mut RepeatedRow| { &mut m.items },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<RepeatedRow>(
|
|
|
- "RepeatedRow",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static RepeatedRow {
|
|
|
- static instance: ::protobuf::rt::LazyV2<RepeatedRow> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(RepeatedRow::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for RepeatedRow {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.items.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for RepeatedRow {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for RepeatedRow {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct RepeatedGridBlock {
|
|
|
- // message fields
|
|
|
- pub items: ::protobuf::RepeatedField<GridBlock>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a RepeatedGridBlock {
|
|
|
- fn default() -> &'a RepeatedGridBlock {
|
|
|
- <RepeatedGridBlock as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl RepeatedGridBlock {
|
|
|
- pub fn new() -> RepeatedGridBlock {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .GridBlock items = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_items(&self) -> &[GridBlock] {
|
|
|
- &self.items
|
|
|
- }
|
|
|
- pub fn clear_items(&mut self) {
|
|
|
- self.items.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_items(&mut self, v: ::protobuf::RepeatedField<GridBlock>) {
|
|
|
- self.items = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_items(&mut self) -> &mut ::protobuf::RepeatedField<GridBlock> {
|
|
|
- &mut self.items
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_items(&mut self) -> ::protobuf::RepeatedField<GridBlock> {
|
|
|
- ::std::mem::replace(&mut self.items, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for RepeatedGridBlock {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.items {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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_repeated_message_into(wire_type, is, &mut self.items)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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;
|
|
|
- for value in &self.items {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- 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<()> {
|
|
|
- for v in &self.items {
|
|
|
- os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> RepeatedGridBlock {
|
|
|
- RepeatedGridBlock::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_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<GridBlock>>(
|
|
|
- "items",
|
|
|
- |m: &RepeatedGridBlock| { &m.items },
|
|
|
- |m: &mut RepeatedGridBlock| { &mut m.items },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<RepeatedGridBlock>(
|
|
|
- "RepeatedGridBlock",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static RepeatedGridBlock {
|
|
|
- static instance: ::protobuf::rt::LazyV2<RepeatedGridBlock> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(RepeatedGridBlock::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for RepeatedGridBlock {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.items.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for RepeatedGridBlock {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for RepeatedGridBlock {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct GridBlockOrder {
|
|
|
- // message fields
|
|
|
- pub block_id: ::std::string::String,
|
|
|
- pub row_orders: ::protobuf::RepeatedField<RowOrder>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a GridBlockOrder {
|
|
|
- fn default() -> &'a GridBlockOrder {
|
|
|
- <GridBlockOrder as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl GridBlockOrder {
|
|
|
- pub fn new() -> GridBlockOrder {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string block_id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_block_id(&self) -> &str {
|
|
|
- &self.block_id
|
|
|
- }
|
|
|
- pub fn clear_block_id(&mut self) {
|
|
|
- self.block_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_block_id(&mut self, v: ::std::string::String) {
|
|
|
- self.block_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_block_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.block_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_block_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.block_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .RowOrder row_orders = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_row_orders(&self) -> &[RowOrder] {
|
|
|
- &self.row_orders
|
|
|
- }
|
|
|
- pub fn clear_row_orders(&mut self) {
|
|
|
- self.row_orders.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_row_orders(&mut self, v: ::protobuf::RepeatedField<RowOrder>) {
|
|
|
- self.row_orders = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_row_orders(&mut self) -> &mut ::protobuf::RepeatedField<RowOrder> {
|
|
|
- &mut self.row_orders
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_row_orders(&mut self) -> ::protobuf::RepeatedField<RowOrder> {
|
|
|
- ::std::mem::replace(&mut self.row_orders, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for GridBlockOrder {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.row_orders {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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.block_id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.row_orders)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.block_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.block_id);
|
|
|
- }
|
|
|
- for value in &self.row_orders {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- 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.block_id.is_empty() {
|
|
|
- os.write_string(1, &self.block_id)?;
|
|
|
- }
|
|
|
- for v in &self.row_orders {
|
|
|
- os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> GridBlockOrder {
|
|
|
- GridBlockOrder::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>(
|
|
|
- "block_id",
|
|
|
- |m: &GridBlockOrder| { &m.block_id },
|
|
|
- |m: &mut GridBlockOrder| { &mut m.block_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<RowOrder>>(
|
|
|
- "row_orders",
|
|
|
- |m: &GridBlockOrder| { &m.row_orders },
|
|
|
- |m: &mut GridBlockOrder| { &mut m.row_orders },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<GridBlockOrder>(
|
|
|
- "GridBlockOrder",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static GridBlockOrder {
|
|
|
- static instance: ::protobuf::rt::LazyV2<GridBlockOrder> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(GridBlockOrder::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for GridBlockOrder {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.block_id.clear();
|
|
|
- self.row_orders.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for GridBlockOrder {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for GridBlockOrder {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct IndexRowOrder {
|
|
|
- // message fields
|
|
|
- pub row_order: ::protobuf::SingularPtrField<RowOrder>,
|
|
|
- // message oneof groups
|
|
|
- pub one_of_index: ::std::option::Option<IndexRowOrder_oneof_one_of_index>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a IndexRowOrder {
|
|
|
- fn default() -> &'a IndexRowOrder {
|
|
|
- <IndexRowOrder as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(Clone,PartialEq,Debug)]
|
|
|
-pub enum IndexRowOrder_oneof_one_of_index {
|
|
|
- index(i32),
|
|
|
-}
|
|
|
-
|
|
|
-impl IndexRowOrder {
|
|
|
- pub fn new() -> IndexRowOrder {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // .RowOrder row_order = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_row_order(&self) -> &RowOrder {
|
|
|
- self.row_order.as_ref().unwrap_or_else(|| <RowOrder as ::protobuf::Message>::default_instance())
|
|
|
- }
|
|
|
- pub fn clear_row_order(&mut self) {
|
|
|
- self.row_order.clear();
|
|
|
- }
|
|
|
-
|
|
|
- pub fn has_row_order(&self) -> bool {
|
|
|
- self.row_order.is_some()
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_row_order(&mut self, v: RowOrder) {
|
|
|
- self.row_order = ::protobuf::SingularPtrField::some(v);
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_row_order(&mut self) -> &mut RowOrder {
|
|
|
- if self.row_order.is_none() {
|
|
|
- self.row_order.set_default();
|
|
|
- }
|
|
|
- self.row_order.as_mut().unwrap()
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_row_order(&mut self) -> RowOrder {
|
|
|
- self.row_order.take().unwrap_or_else(|| RowOrder::new())
|
|
|
- }
|
|
|
-
|
|
|
- // int32 index = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_index(&self) -> i32 {
|
|
|
- match self.one_of_index {
|
|
|
- ::std::option::Option::Some(IndexRowOrder_oneof_one_of_index::index(v)) => v,
|
|
|
- _ => 0,
|
|
|
- }
|
|
|
- }
|
|
|
- pub fn clear_index(&mut self) {
|
|
|
- self.one_of_index = ::std::option::Option::None;
|
|
|
- }
|
|
|
-
|
|
|
- pub fn has_index(&self) -> bool {
|
|
|
- match self.one_of_index {
|
|
|
- ::std::option::Option::Some(IndexRowOrder_oneof_one_of_index::index(..)) => true,
|
|
|
- _ => false,
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_index(&mut self, v: i32) {
|
|
|
- self.one_of_index = ::std::option::Option::Some(IndexRowOrder_oneof_one_of_index::index(v))
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for IndexRowOrder {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.row_order {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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_message_into(wire_type, is, &mut self.row_order)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
- return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
- }
|
|
|
- self.one_of_index = ::std::option::Option::Some(IndexRowOrder_oneof_one_of_index::index(is.read_int32()?));
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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 let Some(ref v) = self.row_order.as_ref() {
|
|
|
- let len = v.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- }
|
|
|
- if let ::std::option::Option::Some(ref v) = self.one_of_index {
|
|
|
- match v {
|
|
|
- &IndexRowOrder_oneof_one_of_index::index(v) => {
|
|
|
- my_size += ::protobuf::rt::value_size(2, v, ::protobuf::wire_format::WireTypeVarint);
|
|
|
- },
|
|
|
- };
|
|
|
- }
|
|
|
- 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 let Some(ref v) = self.row_order.as_ref() {
|
|
|
- os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- }
|
|
|
- if let ::std::option::Option::Some(ref v) = self.one_of_index {
|
|
|
- match v {
|
|
|
- &IndexRowOrder_oneof_one_of_index::index(v) => {
|
|
|
- os.write_int32(2, v)?;
|
|
|
- },
|
|
|
- };
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> IndexRowOrder {
|
|
|
- IndexRowOrder::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_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<RowOrder>>(
|
|
|
- "row_order",
|
|
|
- |m: &IndexRowOrder| { &m.row_order },
|
|
|
- |m: &mut IndexRowOrder| { &mut m.row_order },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_singular_i32_accessor::<_>(
|
|
|
- "index",
|
|
|
- IndexRowOrder::has_index,
|
|
|
- IndexRowOrder::get_index,
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<IndexRowOrder>(
|
|
|
- "IndexRowOrder",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static IndexRowOrder {
|
|
|
- static instance: ::protobuf::rt::LazyV2<IndexRowOrder> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(IndexRowOrder::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for IndexRowOrder {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.row_order.clear();
|
|
|
- self.one_of_index = ::std::option::Option::None;
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for IndexRowOrder {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for IndexRowOrder {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct UpdatedRowOrder {
|
|
|
- // message fields
|
|
|
- pub row_order: ::protobuf::SingularPtrField<RowOrder>,
|
|
|
- pub row: ::protobuf::SingularPtrField<Row>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a UpdatedRowOrder {
|
|
|
- fn default() -> &'a UpdatedRowOrder {
|
|
|
- <UpdatedRowOrder as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl UpdatedRowOrder {
|
|
|
- pub fn new() -> UpdatedRowOrder {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // .RowOrder row_order = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_row_order(&self) -> &RowOrder {
|
|
|
- self.row_order.as_ref().unwrap_or_else(|| <RowOrder as ::protobuf::Message>::default_instance())
|
|
|
- }
|
|
|
- pub fn clear_row_order(&mut self) {
|
|
|
- self.row_order.clear();
|
|
|
- }
|
|
|
-
|
|
|
- pub fn has_row_order(&self) -> bool {
|
|
|
- self.row_order.is_some()
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_row_order(&mut self, v: RowOrder) {
|
|
|
- self.row_order = ::protobuf::SingularPtrField::some(v);
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_row_order(&mut self) -> &mut RowOrder {
|
|
|
- if self.row_order.is_none() {
|
|
|
- self.row_order.set_default();
|
|
|
- }
|
|
|
- self.row_order.as_mut().unwrap()
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_row_order(&mut self) -> RowOrder {
|
|
|
- self.row_order.take().unwrap_or_else(|| RowOrder::new())
|
|
|
- }
|
|
|
-
|
|
|
- // .Row row = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_row(&self) -> &Row {
|
|
|
- self.row.as_ref().unwrap_or_else(|| <Row as ::protobuf::Message>::default_instance())
|
|
|
- }
|
|
|
- pub fn clear_row(&mut self) {
|
|
|
- self.row.clear();
|
|
|
- }
|
|
|
-
|
|
|
- pub fn has_row(&self) -> bool {
|
|
|
- self.row.is_some()
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_row(&mut self, v: Row) {
|
|
|
- self.row = ::protobuf::SingularPtrField::some(v);
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_row(&mut self) -> &mut Row {
|
|
|
- if self.row.is_none() {
|
|
|
- self.row.set_default();
|
|
|
- }
|
|
|
- self.row.as_mut().unwrap()
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_row(&mut self) -> Row {
|
|
|
- self.row.take().unwrap_or_else(|| Row::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for UpdatedRowOrder {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.row_order {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- for v in &self.row {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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_message_into(wire_type, is, &mut self.row_order)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.row)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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 let Some(ref v) = self.row_order.as_ref() {
|
|
|
- let len = v.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- }
|
|
|
- if let Some(ref v) = self.row.as_ref() {
|
|
|
- let len = v.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- }
|
|
|
- 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 let Some(ref v) = self.row_order.as_ref() {
|
|
|
- os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- }
|
|
|
- if let Some(ref v) = self.row.as_ref() {
|
|
|
- os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> UpdatedRowOrder {
|
|
|
- UpdatedRowOrder::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_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<RowOrder>>(
|
|
|
- "row_order",
|
|
|
- |m: &UpdatedRowOrder| { &m.row_order },
|
|
|
- |m: &mut UpdatedRowOrder| { &mut m.row_order },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<Row>>(
|
|
|
- "row",
|
|
|
- |m: &UpdatedRowOrder| { &m.row },
|
|
|
- |m: &mut UpdatedRowOrder| { &mut m.row },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<UpdatedRowOrder>(
|
|
|
- "UpdatedRowOrder",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static UpdatedRowOrder {
|
|
|
- static instance: ::protobuf::rt::LazyV2<UpdatedRowOrder> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(UpdatedRowOrder::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for UpdatedRowOrder {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.row_order.clear();
|
|
|
- self.row.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for UpdatedRowOrder {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for UpdatedRowOrder {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct GridRowsChangeset {
|
|
|
- // message fields
|
|
|
- pub block_id: ::std::string::String,
|
|
|
- pub inserted_rows: ::protobuf::RepeatedField<IndexRowOrder>,
|
|
|
- pub deleted_rows: ::protobuf::RepeatedField<RowOrder>,
|
|
|
- pub updated_rows: ::protobuf::RepeatedField<UpdatedRowOrder>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a GridRowsChangeset {
|
|
|
- fn default() -> &'a GridRowsChangeset {
|
|
|
- <GridRowsChangeset as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl GridRowsChangeset {
|
|
|
- pub fn new() -> GridRowsChangeset {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string block_id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_block_id(&self) -> &str {
|
|
|
- &self.block_id
|
|
|
- }
|
|
|
- pub fn clear_block_id(&mut self) {
|
|
|
- self.block_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_block_id(&mut self, v: ::std::string::String) {
|
|
|
- self.block_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_block_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.block_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_block_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.block_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .IndexRowOrder inserted_rows = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_inserted_rows(&self) -> &[IndexRowOrder] {
|
|
|
- &self.inserted_rows
|
|
|
- }
|
|
|
- pub fn clear_inserted_rows(&mut self) {
|
|
|
- self.inserted_rows.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_inserted_rows(&mut self, v: ::protobuf::RepeatedField<IndexRowOrder>) {
|
|
|
- self.inserted_rows = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_inserted_rows(&mut self) -> &mut ::protobuf::RepeatedField<IndexRowOrder> {
|
|
|
- &mut self.inserted_rows
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_inserted_rows(&mut self) -> ::protobuf::RepeatedField<IndexRowOrder> {
|
|
|
- ::std::mem::replace(&mut self.inserted_rows, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .RowOrder deleted_rows = 3;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_deleted_rows(&self) -> &[RowOrder] {
|
|
|
- &self.deleted_rows
|
|
|
- }
|
|
|
- pub fn clear_deleted_rows(&mut self) {
|
|
|
- self.deleted_rows.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_deleted_rows(&mut self, v: ::protobuf::RepeatedField<RowOrder>) {
|
|
|
- self.deleted_rows = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_deleted_rows(&mut self) -> &mut ::protobuf::RepeatedField<RowOrder> {
|
|
|
- &mut self.deleted_rows
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_deleted_rows(&mut self) -> ::protobuf::RepeatedField<RowOrder> {
|
|
|
- ::std::mem::replace(&mut self.deleted_rows, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .UpdatedRowOrder updated_rows = 4;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_updated_rows(&self) -> &[UpdatedRowOrder] {
|
|
|
- &self.updated_rows
|
|
|
- }
|
|
|
- pub fn clear_updated_rows(&mut self) {
|
|
|
- self.updated_rows.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_updated_rows(&mut self, v: ::protobuf::RepeatedField<UpdatedRowOrder>) {
|
|
|
- self.updated_rows = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_updated_rows(&mut self) -> &mut ::protobuf::RepeatedField<UpdatedRowOrder> {
|
|
|
- &mut self.updated_rows
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_updated_rows(&mut self) -> ::protobuf::RepeatedField<UpdatedRowOrder> {
|
|
|
- ::std::mem::replace(&mut self.updated_rows, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for GridRowsChangeset {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.inserted_rows {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- for v in &self.deleted_rows {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- for v in &self.updated_rows {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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.block_id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.inserted_rows)?;
|
|
|
- },
|
|
|
- 3 => {
|
|
|
- ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.deleted_rows)?;
|
|
|
- },
|
|
|
- 4 => {
|
|
|
- ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.updated_rows)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.block_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.block_id);
|
|
|
- }
|
|
|
- for value in &self.inserted_rows {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- for value in &self.deleted_rows {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- for value in &self.updated_rows {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- 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.block_id.is_empty() {
|
|
|
- os.write_string(1, &self.block_id)?;
|
|
|
- }
|
|
|
- for v in &self.inserted_rows {
|
|
|
- os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- for v in &self.deleted_rows {
|
|
|
- os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- for v in &self.updated_rows {
|
|
|
- os.write_tag(4, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> GridRowsChangeset {
|
|
|
- GridRowsChangeset::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>(
|
|
|
- "block_id",
|
|
|
- |m: &GridRowsChangeset| { &m.block_id },
|
|
|
- |m: &mut GridRowsChangeset| { &mut m.block_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<IndexRowOrder>>(
|
|
|
- "inserted_rows",
|
|
|
- |m: &GridRowsChangeset| { &m.inserted_rows },
|
|
|
- |m: &mut GridRowsChangeset| { &mut m.inserted_rows },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<RowOrder>>(
|
|
|
- "deleted_rows",
|
|
|
- |m: &GridRowsChangeset| { &m.deleted_rows },
|
|
|
- |m: &mut GridRowsChangeset| { &mut m.deleted_rows },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<UpdatedRowOrder>>(
|
|
|
- "updated_rows",
|
|
|
- |m: &GridRowsChangeset| { &m.updated_rows },
|
|
|
- |m: &mut GridRowsChangeset| { &mut m.updated_rows },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<GridRowsChangeset>(
|
|
|
- "GridRowsChangeset",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static GridRowsChangeset {
|
|
|
- static instance: ::protobuf::rt::LazyV2<GridRowsChangeset> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(GridRowsChangeset::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for GridRowsChangeset {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.block_id.clear();
|
|
|
- self.inserted_rows.clear();
|
|
|
- self.deleted_rows.clear();
|
|
|
- self.updated_rows.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for GridRowsChangeset {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for GridRowsChangeset {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct GridBlock {
|
|
|
- // message fields
|
|
|
- pub id: ::std::string::String,
|
|
|
- pub row_orders: ::protobuf::RepeatedField<RowOrder>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a GridBlock {
|
|
|
- fn default() -> &'a GridBlock {
|
|
|
- <GridBlock as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl GridBlock {
|
|
|
- pub fn new() -> GridBlock {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_id(&self) -> &str {
|
|
|
- &self.id
|
|
|
- }
|
|
|
- pub fn clear_id(&mut self) {
|
|
|
- self.id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_id(&mut self, v: ::std::string::String) {
|
|
|
- self.id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .RowOrder row_orders = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_row_orders(&self) -> &[RowOrder] {
|
|
|
- &self.row_orders
|
|
|
- }
|
|
|
- pub fn clear_row_orders(&mut self) {
|
|
|
- self.row_orders.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_row_orders(&mut self, v: ::protobuf::RepeatedField<RowOrder>) {
|
|
|
- self.row_orders = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_row_orders(&mut self) -> &mut ::protobuf::RepeatedField<RowOrder> {
|
|
|
- &mut self.row_orders
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_row_orders(&mut self) -> ::protobuf::RepeatedField<RowOrder> {
|
|
|
- ::std::mem::replace(&mut self.row_orders, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for GridBlock {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.row_orders {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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.id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.row_orders)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.id);
|
|
|
- }
|
|
|
- for value in &self.row_orders {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- 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.id.is_empty() {
|
|
|
- os.write_string(1, &self.id)?;
|
|
|
- }
|
|
|
- for v in &self.row_orders {
|
|
|
- os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> GridBlock {
|
|
|
- GridBlock::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>(
|
|
|
- "id",
|
|
|
- |m: &GridBlock| { &m.id },
|
|
|
- |m: &mut GridBlock| { &mut m.id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<RowOrder>>(
|
|
|
- "row_orders",
|
|
|
- |m: &GridBlock| { &m.row_orders },
|
|
|
- |m: &mut GridBlock| { &mut m.row_orders },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<GridBlock>(
|
|
|
- "GridBlock",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static GridBlock {
|
|
|
- static instance: ::protobuf::rt::LazyV2<GridBlock> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(GridBlock::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for GridBlock {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.id.clear();
|
|
|
- self.row_orders.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for GridBlock {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for GridBlock {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct Cell {
|
|
|
- // message fields
|
|
|
- pub field_id: ::std::string::String,
|
|
|
- pub data: ::std::vec::Vec<u8>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a Cell {
|
|
|
- fn default() -> &'a Cell {
|
|
|
- <Cell as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl Cell {
|
|
|
- pub fn new() -> Cell {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string field_id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_field_id(&self) -> &str {
|
|
|
- &self.field_id
|
|
|
- }
|
|
|
- pub fn clear_field_id(&mut self) {
|
|
|
- self.field_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_field_id(&mut self, v: ::std::string::String) {
|
|
|
- self.field_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_field_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.field_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_field_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.field_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // bytes data = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_data(&self) -> &[u8] {
|
|
|
- &self.data
|
|
|
- }
|
|
|
- pub fn clear_data(&mut self) {
|
|
|
- self.data.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_data(&mut self, v: ::std::vec::Vec<u8>) {
|
|
|
- self.data = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_data(&mut self) -> &mut ::std::vec::Vec<u8> {
|
|
|
- &mut self.data
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_data(&mut self) -> ::std::vec::Vec<u8> {
|
|
|
- ::std::mem::replace(&mut self.data, ::std::vec::Vec::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for Cell {
|
|
|
- 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.field_id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_bytes_into(wire_type, is, &mut self.data)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.field_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.field_id);
|
|
|
- }
|
|
|
- if !self.data.is_empty() {
|
|
|
- my_size += ::protobuf::rt::bytes_size(2, &self.data);
|
|
|
- }
|
|
|
- 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.field_id.is_empty() {
|
|
|
- os.write_string(1, &self.field_id)?;
|
|
|
- }
|
|
|
- if !self.data.is_empty() {
|
|
|
- os.write_bytes(2, &self.data)?;
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> Cell {
|
|
|
- Cell::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>(
|
|
|
- "field_id",
|
|
|
- |m: &Cell| { &m.field_id },
|
|
|
- |m: &mut Cell| { &mut m.field_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>(
|
|
|
- "data",
|
|
|
- |m: &Cell| { &m.data },
|
|
|
- |m: &mut Cell| { &mut m.data },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<Cell>(
|
|
|
- "Cell",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static Cell {
|
|
|
- static instance: ::protobuf::rt::LazyV2<Cell> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(Cell::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for Cell {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.field_id.clear();
|
|
|
- self.data.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for Cell {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for Cell {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct RepeatedCell {
|
|
|
- // message fields
|
|
|
- pub items: ::protobuf::RepeatedField<Cell>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a RepeatedCell {
|
|
|
- fn default() -> &'a RepeatedCell {
|
|
|
- <RepeatedCell as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl RepeatedCell {
|
|
|
- pub fn new() -> RepeatedCell {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .Cell items = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_items(&self) -> &[Cell] {
|
|
|
- &self.items
|
|
|
- }
|
|
|
- pub fn clear_items(&mut self) {
|
|
|
- self.items.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_items(&mut self, v: ::protobuf::RepeatedField<Cell>) {
|
|
|
- self.items = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_items(&mut self) -> &mut ::protobuf::RepeatedField<Cell> {
|
|
|
- &mut self.items
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_items(&mut self) -> ::protobuf::RepeatedField<Cell> {
|
|
|
- ::std::mem::replace(&mut self.items, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for RepeatedCell {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.items {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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_repeated_message_into(wire_type, is, &mut self.items)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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;
|
|
|
- for value in &self.items {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- 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<()> {
|
|
|
- for v in &self.items {
|
|
|
- os.write_tag(1, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> RepeatedCell {
|
|
|
- RepeatedCell::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_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<Cell>>(
|
|
|
- "items",
|
|
|
- |m: &RepeatedCell| { &m.items },
|
|
|
- |m: &mut RepeatedCell| { &mut m.items },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<RepeatedCell>(
|
|
|
- "RepeatedCell",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static RepeatedCell {
|
|
|
- static instance: ::protobuf::rt::LazyV2<RepeatedCell> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(RepeatedCell::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for RepeatedCell {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.items.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for RepeatedCell {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for RepeatedCell {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct CreateGridPayload {
|
|
|
- // message fields
|
|
|
- pub name: ::std::string::String,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a CreateGridPayload {
|
|
|
- fn default() -> &'a CreateGridPayload {
|
|
|
- <CreateGridPayload as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl CreateGridPayload {
|
|
|
- pub fn new() -> CreateGridPayload {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string name = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_name(&self) -> &str {
|
|
|
- &self.name
|
|
|
- }
|
|
|
- pub fn clear_name(&mut self) {
|
|
|
- self.name.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_name(&mut self, v: ::std::string::String) {
|
|
|
- self.name = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_name(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.name
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_name(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.name, ::std::string::String::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for CreateGridPayload {
|
|
|
- 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.name)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.name.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.name);
|
|
|
- }
|
|
|
- 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.name.is_empty() {
|
|
|
- os.write_string(1, &self.name)?;
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> CreateGridPayload {
|
|
|
- CreateGridPayload::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>(
|
|
|
- "name",
|
|
|
- |m: &CreateGridPayload| { &m.name },
|
|
|
- |m: &mut CreateGridPayload| { &mut m.name },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<CreateGridPayload>(
|
|
|
- "CreateGridPayload",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static CreateGridPayload {
|
|
|
- static instance: ::protobuf::rt::LazyV2<CreateGridPayload> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(CreateGridPayload::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for CreateGridPayload {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.name.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for CreateGridPayload {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for CreateGridPayload {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct GridId {
|
|
|
- // message fields
|
|
|
- pub value: ::std::string::String,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a GridId {
|
|
|
- fn default() -> &'a GridId {
|
|
|
- <GridId as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl GridId {
|
|
|
- pub fn new() -> GridId {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string value = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_value(&self) -> &str {
|
|
|
- &self.value
|
|
|
- }
|
|
|
- pub fn clear_value(&mut self) {
|
|
|
- self.value.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_value(&mut self, v: ::std::string::String) {
|
|
|
- self.value = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_value(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.value
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_value(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.value, ::std::string::String::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for GridId {
|
|
|
- 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.value)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.value.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.value);
|
|
|
- }
|
|
|
- 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.value.is_empty() {
|
|
|
- os.write_string(1, &self.value)?;
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> GridId {
|
|
|
- GridId::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>(
|
|
|
- "value",
|
|
|
- |m: &GridId| { &m.value },
|
|
|
- |m: &mut GridId| { &mut m.value },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<GridId>(
|
|
|
- "GridId",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static GridId {
|
|
|
- static instance: ::protobuf::rt::LazyV2<GridId> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(GridId::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for GridId {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.value.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for GridId {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for GridId {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct GridBlockId {
|
|
|
- // message fields
|
|
|
- pub value: ::std::string::String,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a GridBlockId {
|
|
|
- fn default() -> &'a GridBlockId {
|
|
|
- <GridBlockId as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl GridBlockId {
|
|
|
- pub fn new() -> GridBlockId {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string value = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_value(&self) -> &str {
|
|
|
- &self.value
|
|
|
- }
|
|
|
- pub fn clear_value(&mut self) {
|
|
|
- self.value.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_value(&mut self, v: ::std::string::String) {
|
|
|
- self.value = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_value(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.value
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_value(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.value, ::std::string::String::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for GridBlockId {
|
|
|
- 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.value)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.value.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.value);
|
|
|
- }
|
|
|
- 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.value.is_empty() {
|
|
|
- os.write_string(1, &self.value)?;
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> GridBlockId {
|
|
|
- GridBlockId::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>(
|
|
|
- "value",
|
|
|
- |m: &GridBlockId| { &m.value },
|
|
|
- |m: &mut GridBlockId| { &mut m.value },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<GridBlockId>(
|
|
|
- "GridBlockId",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static GridBlockId {
|
|
|
- static instance: ::protobuf::rt::LazyV2<GridBlockId> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(GridBlockId::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for GridBlockId {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.value.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for GridBlockId {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for GridBlockId {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct CreateRowPayload {
|
|
|
- // message fields
|
|
|
- pub grid_id: ::std::string::String,
|
|
|
- // message oneof groups
|
|
|
- pub one_of_start_row_id: ::std::option::Option<CreateRowPayload_oneof_one_of_start_row_id>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a CreateRowPayload {
|
|
|
- fn default() -> &'a CreateRowPayload {
|
|
|
- <CreateRowPayload as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(Clone,PartialEq,Debug)]
|
|
|
-pub enum CreateRowPayload_oneof_one_of_start_row_id {
|
|
|
- start_row_id(::std::string::String),
|
|
|
-}
|
|
|
-
|
|
|
-impl CreateRowPayload {
|
|
|
- pub fn new() -> CreateRowPayload {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string grid_id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_grid_id(&self) -> &str {
|
|
|
- &self.grid_id
|
|
|
- }
|
|
|
- pub fn clear_grid_id(&mut self) {
|
|
|
- self.grid_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_grid_id(&mut self, v: ::std::string::String) {
|
|
|
- self.grid_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_grid_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.grid_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_grid_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.grid_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // string start_row_id = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_start_row_id(&self) -> &str {
|
|
|
- match self.one_of_start_row_id {
|
|
|
- ::std::option::Option::Some(CreateRowPayload_oneof_one_of_start_row_id::start_row_id(ref v)) => v,
|
|
|
- _ => "",
|
|
|
- }
|
|
|
- }
|
|
|
- pub fn clear_start_row_id(&mut self) {
|
|
|
- self.one_of_start_row_id = ::std::option::Option::None;
|
|
|
- }
|
|
|
-
|
|
|
- pub fn has_start_row_id(&self) -> bool {
|
|
|
- match self.one_of_start_row_id {
|
|
|
- ::std::option::Option::Some(CreateRowPayload_oneof_one_of_start_row_id::start_row_id(..)) => true,
|
|
|
- _ => false,
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_start_row_id(&mut self, v: ::std::string::String) {
|
|
|
- self.one_of_start_row_id = ::std::option::Option::Some(CreateRowPayload_oneof_one_of_start_row_id::start_row_id(v))
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_start_row_id(&mut self) -> &mut ::std::string::String {
|
|
|
- if let ::std::option::Option::Some(CreateRowPayload_oneof_one_of_start_row_id::start_row_id(_)) = self.one_of_start_row_id {
|
|
|
- } else {
|
|
|
- self.one_of_start_row_id = ::std::option::Option::Some(CreateRowPayload_oneof_one_of_start_row_id::start_row_id(::std::string::String::new()));
|
|
|
- }
|
|
|
- match self.one_of_start_row_id {
|
|
|
- ::std::option::Option::Some(CreateRowPayload_oneof_one_of_start_row_id::start_row_id(ref mut v)) => v,
|
|
|
- _ => panic!(),
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_start_row_id(&mut self) -> ::std::string::String {
|
|
|
- if self.has_start_row_id() {
|
|
|
- match self.one_of_start_row_id.take() {
|
|
|
- ::std::option::Option::Some(CreateRowPayload_oneof_one_of_start_row_id::start_row_id(v)) => v,
|
|
|
- _ => panic!(),
|
|
|
- }
|
|
|
- } else {
|
|
|
- ::std::string::String::new()
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for CreateRowPayload {
|
|
|
- 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.grid_id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
|
- return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
- }
|
|
|
- self.one_of_start_row_id = ::std::option::Option::Some(CreateRowPayload_oneof_one_of_start_row_id::start_row_id(is.read_string()?));
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.grid_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.grid_id);
|
|
|
- }
|
|
|
- if let ::std::option::Option::Some(ref v) = self.one_of_start_row_id {
|
|
|
- match v {
|
|
|
- &CreateRowPayload_oneof_one_of_start_row_id::start_row_id(ref v) => {
|
|
|
- my_size += ::protobuf::rt::string_size(2, &v);
|
|
|
- },
|
|
|
- };
|
|
|
- }
|
|
|
- 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.grid_id.is_empty() {
|
|
|
- os.write_string(1, &self.grid_id)?;
|
|
|
- }
|
|
|
- if let ::std::option::Option::Some(ref v) = self.one_of_start_row_id {
|
|
|
- match v {
|
|
|
- &CreateRowPayload_oneof_one_of_start_row_id::start_row_id(ref v) => {
|
|
|
- os.write_string(2, v)?;
|
|
|
- },
|
|
|
- };
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> CreateRowPayload {
|
|
|
- CreateRowPayload::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>(
|
|
|
- "grid_id",
|
|
|
- |m: &CreateRowPayload| { &m.grid_id },
|
|
|
- |m: &mut CreateRowPayload| { &mut m.grid_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
|
- "start_row_id",
|
|
|
- CreateRowPayload::has_start_row_id,
|
|
|
- CreateRowPayload::get_start_row_id,
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<CreateRowPayload>(
|
|
|
- "CreateRowPayload",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static CreateRowPayload {
|
|
|
- static instance: ::protobuf::rt::LazyV2<CreateRowPayload> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(CreateRowPayload::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for CreateRowPayload {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.grid_id.clear();
|
|
|
- self.one_of_start_row_id = ::std::option::Option::None;
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for CreateRowPayload {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for CreateRowPayload {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct QueryGridBlocksPayload {
|
|
|
- // message fields
|
|
|
- pub grid_id: ::std::string::String,
|
|
|
- pub block_orders: ::protobuf::RepeatedField<GridBlockOrder>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a QueryGridBlocksPayload {
|
|
|
- fn default() -> &'a QueryGridBlocksPayload {
|
|
|
- <QueryGridBlocksPayload as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl QueryGridBlocksPayload {
|
|
|
- pub fn new() -> QueryGridBlocksPayload {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string grid_id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_grid_id(&self) -> &str {
|
|
|
- &self.grid_id
|
|
|
- }
|
|
|
- pub fn clear_grid_id(&mut self) {
|
|
|
- self.grid_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_grid_id(&mut self, v: ::std::string::String) {
|
|
|
- self.grid_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_grid_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.grid_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_grid_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.grid_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // repeated .GridBlockOrder block_orders = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_block_orders(&self) -> &[GridBlockOrder] {
|
|
|
- &self.block_orders
|
|
|
- }
|
|
|
- pub fn clear_block_orders(&mut self) {
|
|
|
- self.block_orders.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_block_orders(&mut self, v: ::protobuf::RepeatedField<GridBlockOrder>) {
|
|
|
- self.block_orders = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_block_orders(&mut self) -> &mut ::protobuf::RepeatedField<GridBlockOrder> {
|
|
|
- &mut self.block_orders
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_block_orders(&mut self) -> ::protobuf::RepeatedField<GridBlockOrder> {
|
|
|
- ::std::mem::replace(&mut self.block_orders, ::protobuf::RepeatedField::new())
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for QueryGridBlocksPayload {
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.block_orders {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
- 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.grid_id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.block_orders)?;
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.grid_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.grid_id);
|
|
|
- }
|
|
|
- for value in &self.block_orders {
|
|
|
- let len = value.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- };
|
|
|
- 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.grid_id.is_empty() {
|
|
|
- os.write_string(1, &self.grid_id)?;
|
|
|
- }
|
|
|
- for v in &self.block_orders {
|
|
|
- os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
- os.write_raw_varint32(v.get_cached_size())?;
|
|
|
- v.write_to_with_cached_sizes(os)?;
|
|
|
- };
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> QueryGridBlocksPayload {
|
|
|
- QueryGridBlocksPayload::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>(
|
|
|
- "grid_id",
|
|
|
- |m: &QueryGridBlocksPayload| { &m.grid_id },
|
|
|
- |m: &mut QueryGridBlocksPayload| { &mut m.grid_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<GridBlockOrder>>(
|
|
|
- "block_orders",
|
|
|
- |m: &QueryGridBlocksPayload| { &m.block_orders },
|
|
|
- |m: &mut QueryGridBlocksPayload| { &mut m.block_orders },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<QueryGridBlocksPayload>(
|
|
|
- "QueryGridBlocksPayload",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static QueryGridBlocksPayload {
|
|
|
- static instance: ::protobuf::rt::LazyV2<QueryGridBlocksPayload> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(QueryGridBlocksPayload::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for QueryGridBlocksPayload {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.grid_id.clear();
|
|
|
- self.block_orders.clear();
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for QueryGridBlocksPayload {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for QueryGridBlocksPayload {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct MoveItemPayload {
|
|
|
- // message fields
|
|
|
- pub grid_id: ::std::string::String,
|
|
|
- pub item_id: ::std::string::String,
|
|
|
- pub from_index: i32,
|
|
|
- pub to_index: i32,
|
|
|
- pub ty: MoveItemType,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a MoveItemPayload {
|
|
|
- fn default() -> &'a MoveItemPayload {
|
|
|
- <MoveItemPayload as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl MoveItemPayload {
|
|
|
- pub fn new() -> MoveItemPayload {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string grid_id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_grid_id(&self) -> &str {
|
|
|
- &self.grid_id
|
|
|
- }
|
|
|
- pub fn clear_grid_id(&mut self) {
|
|
|
- self.grid_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_grid_id(&mut self, v: ::std::string::String) {
|
|
|
- self.grid_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_grid_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.grid_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_grid_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.grid_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // string item_id = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_item_id(&self) -> &str {
|
|
|
- &self.item_id
|
|
|
- }
|
|
|
- pub fn clear_item_id(&mut self) {
|
|
|
- self.item_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_item_id(&mut self, v: ::std::string::String) {
|
|
|
- self.item_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_item_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.item_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_item_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.item_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // int32 from_index = 3;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_from_index(&self) -> i32 {
|
|
|
- self.from_index
|
|
|
- }
|
|
|
- pub fn clear_from_index(&mut self) {
|
|
|
- self.from_index = 0;
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_from_index(&mut self, v: i32) {
|
|
|
- self.from_index = v;
|
|
|
- }
|
|
|
-
|
|
|
- // int32 to_index = 4;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_to_index(&self) -> i32 {
|
|
|
- self.to_index
|
|
|
- }
|
|
|
- pub fn clear_to_index(&mut self) {
|
|
|
- self.to_index = 0;
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_to_index(&mut self, v: i32) {
|
|
|
- self.to_index = v;
|
|
|
- }
|
|
|
-
|
|
|
- // .MoveItemType ty = 5;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_ty(&self) -> MoveItemType {
|
|
|
- self.ty
|
|
|
- }
|
|
|
- pub fn clear_ty(&mut self) {
|
|
|
- self.ty = MoveItemType::MoveField;
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_ty(&mut self, v: MoveItemType) {
|
|
|
- self.ty = v;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for MoveItemPayload {
|
|
|
- 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.grid_id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.item_id)?;
|
|
|
- },
|
|
|
- 3 => {
|
|
|
- if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
- return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
- }
|
|
|
- let tmp = is.read_int32()?;
|
|
|
- self.from_index = tmp;
|
|
|
- },
|
|
|
- 4 => {
|
|
|
- if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
- return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
- }
|
|
|
- let tmp = is.read_int32()?;
|
|
|
- self.to_index = tmp;
|
|
|
- },
|
|
|
- 5 => {
|
|
|
- ::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.ty, 5, &mut self.unknown_fields)?
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.grid_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.grid_id);
|
|
|
- }
|
|
|
- if !self.item_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(2, &self.item_id);
|
|
|
- }
|
|
|
- if self.from_index != 0 {
|
|
|
- my_size += ::protobuf::rt::value_size(3, self.from_index, ::protobuf::wire_format::WireTypeVarint);
|
|
|
- }
|
|
|
- if self.to_index != 0 {
|
|
|
- my_size += ::protobuf::rt::value_size(4, self.to_index, ::protobuf::wire_format::WireTypeVarint);
|
|
|
- }
|
|
|
- if self.ty != MoveItemType::MoveField {
|
|
|
- my_size += ::protobuf::rt::enum_size(5, self.ty);
|
|
|
- }
|
|
|
- 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.grid_id.is_empty() {
|
|
|
- os.write_string(1, &self.grid_id)?;
|
|
|
- }
|
|
|
- if !self.item_id.is_empty() {
|
|
|
- os.write_string(2, &self.item_id)?;
|
|
|
- }
|
|
|
- if self.from_index != 0 {
|
|
|
- os.write_int32(3, self.from_index)?;
|
|
|
- }
|
|
|
- if self.to_index != 0 {
|
|
|
- os.write_int32(4, self.to_index)?;
|
|
|
- }
|
|
|
- if self.ty != MoveItemType::MoveField {
|
|
|
- os.write_enum(5, ::protobuf::ProtobufEnum::value(&self.ty))?;
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> MoveItemPayload {
|
|
|
- MoveItemPayload::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>(
|
|
|
- "grid_id",
|
|
|
- |m: &MoveItemPayload| { &m.grid_id },
|
|
|
- |m: &mut MoveItemPayload| { &mut m.grid_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "item_id",
|
|
|
- |m: &MoveItemPayload| { &m.item_id },
|
|
|
- |m: &mut MoveItemPayload| { &mut m.item_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt32>(
|
|
|
- "from_index",
|
|
|
- |m: &MoveItemPayload| { &m.from_index },
|
|
|
- |m: &mut MoveItemPayload| { &mut m.from_index },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt32>(
|
|
|
- "to_index",
|
|
|
- |m: &MoveItemPayload| { &m.to_index },
|
|
|
- |m: &mut MoveItemPayload| { &mut m.to_index },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<MoveItemType>>(
|
|
|
- "ty",
|
|
|
- |m: &MoveItemPayload| { &m.ty },
|
|
|
- |m: &mut MoveItemPayload| { &mut m.ty },
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<MoveItemPayload>(
|
|
|
- "MoveItemPayload",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static MoveItemPayload {
|
|
|
- static instance: ::protobuf::rt::LazyV2<MoveItemPayload> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(MoveItemPayload::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for MoveItemPayload {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.grid_id.clear();
|
|
|
- self.item_id.clear();
|
|
|
- self.from_index = 0;
|
|
|
- self.to_index = 0;
|
|
|
- self.ty = MoveItemType::MoveField;
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for MoveItemPayload {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for MoveItemPayload {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct CellChangeset {
|
|
|
- // message fields
|
|
|
- pub grid_id: ::std::string::String,
|
|
|
- pub row_id: ::std::string::String,
|
|
|
- pub field_id: ::std::string::String,
|
|
|
- // message oneof groups
|
|
|
- pub one_of_cell_content_changeset: ::std::option::Option<CellChangeset_oneof_one_of_cell_content_changeset>,
|
|
|
- // special fields
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
-}
|
|
|
-
|
|
|
-impl<'a> ::std::default::Default for &'a CellChangeset {
|
|
|
- fn default() -> &'a CellChangeset {
|
|
|
- <CellChangeset as ::protobuf::Message>::default_instance()
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(Clone,PartialEq,Debug)]
|
|
|
-pub enum CellChangeset_oneof_one_of_cell_content_changeset {
|
|
|
- cell_content_changeset(::std::string::String),
|
|
|
-}
|
|
|
-
|
|
|
-impl CellChangeset {
|
|
|
- pub fn new() -> CellChangeset {
|
|
|
- ::std::default::Default::default()
|
|
|
- }
|
|
|
-
|
|
|
- // string grid_id = 1;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_grid_id(&self) -> &str {
|
|
|
- &self.grid_id
|
|
|
- }
|
|
|
- pub fn clear_grid_id(&mut self) {
|
|
|
- self.grid_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_grid_id(&mut self, v: ::std::string::String) {
|
|
|
- self.grid_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_grid_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.grid_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_grid_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.grid_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // string row_id = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_row_id(&self) -> &str {
|
|
|
- &self.row_id
|
|
|
- }
|
|
|
- pub fn clear_row_id(&mut self) {
|
|
|
- self.row_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_row_id(&mut self, v: ::std::string::String) {
|
|
|
- self.row_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_row_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.row_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_row_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.row_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // string field_id = 3;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_field_id(&self) -> &str {
|
|
|
- &self.field_id
|
|
|
- }
|
|
|
- pub fn clear_field_id(&mut self) {
|
|
|
- self.field_id.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_field_id(&mut self, v: ::std::string::String) {
|
|
|
- self.field_id = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_field_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.field_id
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_field_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.field_id, ::std::string::String::new())
|
|
|
- }
|
|
|
-
|
|
|
- // string cell_content_changeset = 4;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_cell_content_changeset(&self) -> &str {
|
|
|
- match self.one_of_cell_content_changeset {
|
|
|
- ::std::option::Option::Some(CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(ref v)) => v,
|
|
|
- _ => "",
|
|
|
- }
|
|
|
- }
|
|
|
- pub fn clear_cell_content_changeset(&mut self) {
|
|
|
- self.one_of_cell_content_changeset = ::std::option::Option::None;
|
|
|
- }
|
|
|
-
|
|
|
- pub fn has_cell_content_changeset(&self) -> bool {
|
|
|
- match self.one_of_cell_content_changeset {
|
|
|
- ::std::option::Option::Some(CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(..)) => true,
|
|
|
- _ => false,
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_cell_content_changeset(&mut self, v: ::std::string::String) {
|
|
|
- self.one_of_cell_content_changeset = ::std::option::Option::Some(CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(v))
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- pub fn mut_cell_content_changeset(&mut self) -> &mut ::std::string::String {
|
|
|
- if let ::std::option::Option::Some(CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(_)) = self.one_of_cell_content_changeset {
|
|
|
- } else {
|
|
|
- self.one_of_cell_content_changeset = ::std::option::Option::Some(CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(::std::string::String::new()));
|
|
|
- }
|
|
|
- match self.one_of_cell_content_changeset {
|
|
|
- ::std::option::Option::Some(CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(ref mut v)) => v,
|
|
|
- _ => panic!(),
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_cell_content_changeset(&mut self) -> ::std::string::String {
|
|
|
- if self.has_cell_content_changeset() {
|
|
|
- match self.one_of_cell_content_changeset.take() {
|
|
|
- ::std::option::Option::Some(CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(v)) => v,
|
|
|
- _ => panic!(),
|
|
|
- }
|
|
|
- } else {
|
|
|
- ::std::string::String::new()
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Message for CellChangeset {
|
|
|
- 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.grid_id)?;
|
|
|
- },
|
|
|
- 2 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.row_id)?;
|
|
|
- },
|
|
|
- 3 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.field_id)?;
|
|
|
- },
|
|
|
- 4 => {
|
|
|
- if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
|
- return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
- }
|
|
|
- self.one_of_cell_content_changeset = ::std::option::Option::Some(CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(is.read_string()?));
|
|
|
- },
|
|
|
- _ => {
|
|
|
- ::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.grid_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.grid_id);
|
|
|
- }
|
|
|
- if !self.row_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(2, &self.row_id);
|
|
|
- }
|
|
|
- if !self.field_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(3, &self.field_id);
|
|
|
- }
|
|
|
- if let ::std::option::Option::Some(ref v) = self.one_of_cell_content_changeset {
|
|
|
- match v {
|
|
|
- &CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(ref v) => {
|
|
|
- my_size += ::protobuf::rt::string_size(4, &v);
|
|
|
- },
|
|
|
- };
|
|
|
- }
|
|
|
- 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.grid_id.is_empty() {
|
|
|
- os.write_string(1, &self.grid_id)?;
|
|
|
- }
|
|
|
- if !self.row_id.is_empty() {
|
|
|
- os.write_string(2, &self.row_id)?;
|
|
|
- }
|
|
|
- if !self.field_id.is_empty() {
|
|
|
- os.write_string(3, &self.field_id)?;
|
|
|
- }
|
|
|
- if let ::std::option::Option::Some(ref v) = self.one_of_cell_content_changeset {
|
|
|
- match v {
|
|
|
- &CellChangeset_oneof_one_of_cell_content_changeset::cell_content_changeset(ref v) => {
|
|
|
- os.write_string(4, v)?;
|
|
|
- },
|
|
|
- };
|
|
|
- }
|
|
|
- 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<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
- self
|
|
|
- }
|
|
|
-
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
- }
|
|
|
-
|
|
|
- fn new() -> CellChangeset {
|
|
|
- CellChangeset::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>(
|
|
|
- "grid_id",
|
|
|
- |m: &CellChangeset| { &m.grid_id },
|
|
|
- |m: &mut CellChangeset| { &mut m.grid_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "row_id",
|
|
|
- |m: &CellChangeset| { &m.row_id },
|
|
|
- |m: &mut CellChangeset| { &mut m.row_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "field_id",
|
|
|
- |m: &CellChangeset| { &m.field_id },
|
|
|
- |m: &mut CellChangeset| { &mut m.field_id },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
|
- "cell_content_changeset",
|
|
|
- CellChangeset::has_cell_content_changeset,
|
|
|
- CellChangeset::get_cell_content_changeset,
|
|
|
- ));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<CellChangeset>(
|
|
|
- "CellChangeset",
|
|
|
- fields,
|
|
|
- file_descriptor_proto()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- fn default_instance() -> &'static CellChangeset {
|
|
|
- static instance: ::protobuf::rt::LazyV2<CellChangeset> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(CellChangeset::new)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::Clear for CellChangeset {
|
|
|
- fn clear(&mut self) {
|
|
|
- self.grid_id.clear();
|
|
|
- self.row_id.clear();
|
|
|
- self.field_id.clear();
|
|
|
- self.one_of_cell_content_changeset = ::std::option::Option::None;
|
|
|
- self.unknown_fields.clear();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for CellChangeset {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for CellChangeset {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-#[derive(Clone,PartialEq,Eq,Debug,Hash)]
|
|
|
-pub enum MoveItemType {
|
|
|
- MoveField = 0,
|
|
|
- MoveRow = 1,
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::ProtobufEnum for MoveItemType {
|
|
|
- fn value(&self) -> i32 {
|
|
|
- *self as i32
|
|
|
- }
|
|
|
-
|
|
|
- fn from_i32(value: i32) -> ::std::option::Option<MoveItemType> {
|
|
|
- match value {
|
|
|
- 0 => ::std::option::Option::Some(MoveItemType::MoveField),
|
|
|
- 1 => ::std::option::Option::Some(MoveItemType::MoveRow),
|
|
|
- _ => ::std::option::Option::None
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- fn values() -> &'static [Self] {
|
|
|
- static values: &'static [MoveItemType] = &[
|
|
|
- MoveItemType::MoveField,
|
|
|
- MoveItemType::MoveRow,
|
|
|
- ];
|
|
|
- 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::<MoveItemType>("MoveItemType", file_descriptor_proto())
|
|
|
- })
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::marker::Copy for MoveItemType {
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::default::Default for MoveItemType {
|
|
|
- fn default() -> Self {
|
|
|
- MoveItemType::MoveField
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-impl ::protobuf::reflect::ProtobufValue for MoveItemType {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Enum(::protobuf::ProtobufEnum::descriptor(self))
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-static file_descriptor_proto_data: &'static [u8] = b"\
|
|
|
- \n\ngrid.proto\x1a\x0bfield.proto\"z\n\x04Grid\x12\x0e\n\x02id\x18\x01\
|
|
|
- \x20\x01(\tR\x02id\x12.\n\x0cfield_orders\x18\x02\x20\x03(\x0b2\x0b.Fiel\
|
|
|
- dOrderR\x0bfieldOrders\x122\n\x0cblock_orders\x18\x03\x20\x03(\x0b2\x0f.\
|
|
|
- GridBlockOrderR\x0bblockOrders\"T\n\x08RowOrder\x12\x15\n\x06row_id\x18\
|
|
|
- \x01\x20\x01(\tR\x05rowId\x12\x19\n\x08block_id\x18\x02\x20\x01(\tR\x07b\
|
|
|
- lockId\x12\x16\n\x06height\x18\x03\x20\x01(\x05R\x06height\"\xb8\x01\n\
|
|
|
- \x03Row\x12\x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\x12@\n\x10cell_by_fiel\
|
|
|
- d_id\x18\x02\x20\x03(\x0b2\x17.Row.CellByFieldIdEntryR\rcellByFieldId\
|
|
|
- \x12\x16\n\x06height\x18\x03\x20\x01(\x05R\x06height\x1aG\n\x12CellByFie\
|
|
|
- ldIdEntry\x12\x10\n\x03key\x18\x01\x20\x01(\tR\x03key\x12\x1b\n\x05value\
|
|
|
- \x18\x02\x20\x01(\x0b2\x05.CellR\x05value:\x028\x01\")\n\x0bRepeatedRow\
|
|
|
- \x12\x1a\n\x05items\x18\x01\x20\x03(\x0b2\x04.RowR\x05items\"5\n\x11Repe\
|
|
|
- atedGridBlock\x12\x20\n\x05items\x18\x01\x20\x03(\x0b2\n.GridBlockR\x05i\
|
|
|
- tems\"U\n\x0eGridBlockOrder\x12\x19\n\x08block_id\x18\x01\x20\x01(\tR\
|
|
|
- \x07blockId\x12(\n\nrow_orders\x18\x02\x20\x03(\x0b2\t.RowOrderR\trowOrd\
|
|
|
- ers\"_\n\rIndexRowOrder\x12&\n\trow_order\x18\x01\x20\x01(\x0b2\t.RowOrd\
|
|
|
- erR\x08rowOrder\x12\x16\n\x05index\x18\x02\x20\x01(\x05H\0R\x05indexB\
|
|
|
- \x0e\n\x0cone_of_index\"Q\n\x0fUpdatedRowOrder\x12&\n\trow_order\x18\x01\
|
|
|
- \x20\x01(\x0b2\t.RowOrderR\x08rowOrder\x12\x16\n\x03row\x18\x02\x20\x01(\
|
|
|
- \x0b2\x04.RowR\x03row\"\xc6\x01\n\x11GridRowsChangeset\x12\x19\n\x08bloc\
|
|
|
- k_id\x18\x01\x20\x01(\tR\x07blockId\x123\n\rinserted_rows\x18\x02\x20\
|
|
|
- \x03(\x0b2\x0e.IndexRowOrderR\x0cinsertedRows\x12,\n\x0cdeleted_rows\x18\
|
|
|
- \x03\x20\x03(\x0b2\t.RowOrderR\x0bdeletedRows\x123\n\x0cupdated_rows\x18\
|
|
|
- \x04\x20\x03(\x0b2\x10.UpdatedRowOrderR\x0bupdatedRows\"E\n\tGridBlock\
|
|
|
- \x12\x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\x12(\n\nrow_orders\x18\x02\
|
|
|
- \x20\x03(\x0b2\t.RowOrderR\trowOrders\"5\n\x04Cell\x12\x19\n\x08field_id\
|
|
|
- \x18\x01\x20\x01(\tR\x07fieldId\x12\x12\n\x04data\x18\x02\x20\x01(\x0cR\
|
|
|
- \x04data\"+\n\x0cRepeatedCell\x12\x1b\n\x05items\x18\x01\x20\x03(\x0b2\
|
|
|
- \x05.CellR\x05items\"'\n\x11CreateGridPayload\x12\x12\n\x04name\x18\x01\
|
|
|
- \x20\x01(\tR\x04name\"\x1e\n\x06GridId\x12\x14\n\x05value\x18\x01\x20\
|
|
|
- \x01(\tR\x05value\"#\n\x0bGridBlockId\x12\x14\n\x05value\x18\x01\x20\x01\
|
|
|
- (\tR\x05value\"f\n\x10CreateRowPayload\x12\x17\n\x07grid_id\x18\x01\x20\
|
|
|
- \x01(\tR\x06gridId\x12\"\n\x0cstart_row_id\x18\x02\x20\x01(\tH\0R\nstart\
|
|
|
- RowIdB\x15\n\x13one_of_start_row_id\"e\n\x16QueryGridBlocksPayload\x12\
|
|
|
- \x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x122\n\x0cblock_orders\
|
|
|
- \x18\x02\x20\x03(\x0b2\x0f.GridBlockOrderR\x0bblockOrders\"\x9c\x01\n\
|
|
|
- \x0fMoveItemPayload\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\
|
|
|
- \x12\x17\n\x07item_id\x18\x02\x20\x01(\tR\x06itemId\x12\x1d\n\nfrom_inde\
|
|
|
- x\x18\x03\x20\x01(\x05R\tfromIndex\x12\x19\n\x08to_index\x18\x04\x20\x01\
|
|
|
- (\x05R\x07toIndex\x12\x1d\n\x02ty\x18\x05\x20\x01(\x0e2\r.MoveItemTypeR\
|
|
|
- \x02ty\"\xb3\x01\n\rCellChangeset\x12\x17\n\x07grid_id\x18\x01\x20\x01(\
|
|
|
- \tR\x06gridId\x12\x15\n\x06row_id\x18\x02\x20\x01(\tR\x05rowId\x12\x19\n\
|
|
|
- \x08field_id\x18\x03\x20\x01(\tR\x07fieldId\x126\n\x16cell_content_chang\
|
|
|
- eset\x18\x04\x20\x01(\tH\0R\x14cellContentChangesetB\x1f\n\x1done_of_cel\
|
|
|
- l_content_changeset**\n\x0cMoveItemType\x12\r\n\tMoveField\x10\0\x12\x0b\
|
|
|
- \n\x07MoveRow\x10\x01b\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()
|
|
|
- })
|
|
|
-}
|