|
@@ -27,7 +27,6 @@
|
|
|
pub struct Grid {
|
|
|
// message fields
|
|
|
pub id: ::std::string::String,
|
|
|
- pub filters: ::protobuf::SingularPtrField<RepeatedFilter>,
|
|
|
pub field_orders: ::protobuf::SingularPtrField<RepeatedFieldOrder>,
|
|
|
pub row_orders: ::protobuf::SingularPtrField<RepeatedRowOrder>,
|
|
|
// special fields
|
|
@@ -72,40 +71,7 @@ impl Grid {
|
|
|
::std::mem::replace(&mut self.id, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- // .RepeatedFilter filters = 2;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_filters(&self) -> &RepeatedFilter {
|
|
|
- self.filters.as_ref().unwrap_or_else(|| <RepeatedFilter as ::protobuf::Message>::default_instance())
|
|
|
- }
|
|
|
- pub fn clear_filters(&mut self) {
|
|
|
- self.filters.clear();
|
|
|
- }
|
|
|
-
|
|
|
- pub fn has_filters(&self) -> bool {
|
|
|
- self.filters.is_some()
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_filters(&mut self, v: RepeatedFilter) {
|
|
|
- self.filters = ::protobuf::SingularPtrField::some(v);
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_filters(&mut self) -> &mut RepeatedFilter {
|
|
|
- if self.filters.is_none() {
|
|
|
- self.filters.set_default();
|
|
|
- }
|
|
|
- self.filters.as_mut().unwrap()
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_filters(&mut self) -> RepeatedFilter {
|
|
|
- self.filters.take().unwrap_or_else(|| RepeatedFilter::new())
|
|
|
- }
|
|
|
-
|
|
|
- // .RepeatedFieldOrder field_orders = 3;
|
|
|
+ // .RepeatedFieldOrder field_orders = 2;
|
|
|
|
|
|
|
|
|
pub fn get_field_orders(&self) -> &RepeatedFieldOrder {
|
|
@@ -138,7 +104,7 @@ impl Grid {
|
|
|
self.field_orders.take().unwrap_or_else(|| RepeatedFieldOrder::new())
|
|
|
}
|
|
|
|
|
|
- // .RepeatedRowOrder row_orders = 4;
|
|
|
+ // .RepeatedRowOrder row_orders = 3;
|
|
|
|
|
|
|
|
|
pub fn get_row_orders(&self) -> &RepeatedRowOrder {
|
|
@@ -174,11 +140,6 @@ impl Grid {
|
|
|
|
|
|
impl ::protobuf::Message for Grid {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.filters {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
for v in &self.field_orders {
|
|
|
if !v.is_initialized() {
|
|
|
return false;
|
|
@@ -200,12 +161,9 @@ impl ::protobuf::Message for Grid {
|
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.id)?;
|
|
|
},
|
|
|
2 => {
|
|
|
- ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.filters)?;
|
|
|
- },
|
|
|
- 3 => {
|
|
|
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.field_orders)?;
|
|
|
},
|
|
|
- 4 => {
|
|
|
+ 3 => {
|
|
|
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.row_orders)?;
|
|
|
},
|
|
|
_ => {
|
|
@@ -223,10 +181,6 @@ impl ::protobuf::Message for Grid {
|
|
|
if !self.id.is_empty() {
|
|
|
my_size += ::protobuf::rt::string_size(1, &self.id);
|
|
|
}
|
|
|
- if let Some(ref v) = self.filters.as_ref() {
|
|
|
- let len = v.compute_size();
|
|
|
- my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
- }
|
|
|
if let Some(ref v) = self.field_orders.as_ref() {
|
|
|
let len = v.compute_size();
|
|
|
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
@@ -244,18 +198,13 @@ impl ::protobuf::Message for Grid {
|
|
|
if !self.id.is_empty() {
|
|
|
os.write_string(1, &self.id)?;
|
|
|
}
|
|
|
- if let Some(ref v) = self.filters.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)?;
|
|
|
- }
|
|
|
if let Some(ref v) = self.field_orders.as_ref() {
|
|
|
- os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
+ os.write_tag(2, ::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_orders.as_ref() {
|
|
|
- os.write_tag(4, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
+ os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
|
os.write_raw_varint32(v.get_cached_size())?;
|
|
|
v.write_to_with_cached_sizes(os)?;
|
|
|
}
|
|
@@ -302,11 +251,6 @@ impl ::protobuf::Message for Grid {
|
|
|
|m: &Grid| { &m.id },
|
|
|
|m: &mut Grid| { &mut m.id },
|
|
|
));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<RepeatedFilter>>(
|
|
|
- "filters",
|
|
|
- |m: &Grid| { &m.filters },
|
|
|
- |m: &mut Grid| { &mut m.filters },
|
|
|
- ));
|
|
|
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<RepeatedFieldOrder>>(
|
|
|
"field_orders",
|
|
|
|m: &Grid| { &m.field_orders },
|
|
@@ -334,7 +278,6 @@ impl ::protobuf::Message for Grid {
|
|
|
impl ::protobuf::Clear for Grid {
|
|
|
fn clear(&mut self) {
|
|
|
self.id.clear();
|
|
|
- self.filters.clear();
|
|
|
self.field_orders.clear();
|
|
|
self.row_orders.clear();
|
|
|
self.unknown_fields.clear();
|
|
@@ -3012,212 +2955,134 @@ impl ::protobuf::reflect::ProtobufValue for Cell {
|
|
|
}
|
|
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct CreateGridPayload {
|
|
|
+pub struct CellChangeset {
|
|
|
// message fields
|
|
|
- pub name: ::std::string::String,
|
|
|
+ pub id: ::std::string::String,
|
|
|
+ pub row_id: ::std::string::String,
|
|
|
+ pub field_id: ::std::string::String,
|
|
|
+ pub data: ::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<'a> ::std::default::Default for &'a CellChangeset {
|
|
|
+ fn default() -> &'a CellChangeset {
|
|
|
+ <CellChangeset as ::protobuf::Message>::default_instance()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl CreateGridPayload {
|
|
|
- pub fn new() -> CreateGridPayload {
|
|
|
+impl CellChangeset {
|
|
|
+ pub fn new() -> CellChangeset {
|
|
|
::std::default::Default::default()
|
|
|
}
|
|
|
|
|
|
- // string name = 1;
|
|
|
+ // string id = 1;
|
|
|
|
|
|
|
|
|
- pub fn get_name(&self) -> &str {
|
|
|
- &self.name
|
|
|
+ pub fn get_id(&self) -> &str {
|
|
|
+ &self.id
|
|
|
}
|
|
|
- pub fn clear_name(&mut self) {
|
|
|
- self.name.clear();
|
|
|
+ pub fn clear_id(&mut self) {
|
|
|
+ self.id.clear();
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_name(&mut self, v: ::std::string::String) {
|
|
|
- self.name = v;
|
|
|
+ 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_name(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.name
|
|
|
+ pub fn mut_id(&mut self) -> &mut ::std::string::String {
|
|
|
+ &mut self.id
|
|
|
}
|
|
|
|
|
|
// 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
|
|
|
+ pub fn take_id(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.id, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- 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(())
|
|
|
- }
|
|
|
+ // string row_id = 2;
|
|
|
|
|
|
- fn get_cached_size(&self) -> u32 {
|
|
|
- self.cached_size.get()
|
|
|
- }
|
|
|
|
|
|
- fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
|
|
|
- &self.unknown_fields
|
|
|
+ pub fn get_row_id(&self) -> &str {
|
|
|
+ &self.row_id
|
|
|
}
|
|
|
-
|
|
|
- fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
|
|
|
- &mut self.unknown_fields
|
|
|
+ pub fn clear_row_id(&mut self) {
|
|
|
+ self.row_id.clear();
|
|
|
}
|
|
|
|
|
|
- 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
|
|
|
+ // Param is passed by value, moved
|
|
|
+ pub fn set_row_id(&mut self, v: ::std::string::String) {
|
|
|
+ self.row_id = v;
|
|
|
}
|
|
|
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
- Self::descriptor_static()
|
|
|
+ // 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
|
|
|
}
|
|
|
|
|
|
- fn new() -> CreateGridPayload {
|
|
|
- CreateGridPayload::new()
|
|
|
+ // Take field
|
|
|
+ pub fn take_row_id(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.row_id, ::std::string::String::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()
|
|
|
- )
|
|
|
- })
|
|
|
- }
|
|
|
+ // string field_id = 3;
|
|
|
|
|
|
- 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();
|
|
|
+ pub fn get_field_id(&self) -> &str {
|
|
|
+ &self.field_id
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-impl ::std::fmt::Debug for CreateGridPayload {
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
+ pub fn clear_field_id(&mut self) {
|
|
|
+ self.field_id.clear();
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for CreateGridPayload {
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
+ // Param is passed by value, moved
|
|
|
+ pub fn set_field_id(&mut self, v: ::std::string::String) {
|
|
|
+ self.field_id = v;
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-#[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()
|
|
|
+ // 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
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-impl GridId {
|
|
|
- pub fn new() -> GridId {
|
|
|
- ::std::default::Default::default()
|
|
|
+ // Take field
|
|
|
+ pub fn take_field_id(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.field_id, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- // string value = 1;
|
|
|
+ // string data = 4;
|
|
|
|
|
|
|
|
|
- pub fn get_value(&self) -> &str {
|
|
|
- &self.value
|
|
|
+ pub fn get_data(&self) -> &str {
|
|
|
+ &self.data
|
|
|
}
|
|
|
- pub fn clear_value(&mut self) {
|
|
|
- self.value.clear();
|
|
|
+ pub fn clear_data(&mut self) {
|
|
|
+ self.data.clear();
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_value(&mut self, v: ::std::string::String) {
|
|
|
- self.value = v;
|
|
|
+ pub fn set_data(&mut self, v: ::std::string::String) {
|
|
|
+ self.data = 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
|
|
|
+ pub fn mut_data(&mut self) -> &mut ::std::string::String {
|
|
|
+ &mut self.data
|
|
|
}
|
|
|
|
|
|
// Take field
|
|
|
- pub fn take_value(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.value, ::std::string::String::new())
|
|
|
+ pub fn take_data(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.data, ::std::string::String::new())
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Message for GridId {
|
|
|
+impl ::protobuf::Message for CellChangeset {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
true
|
|
|
}
|
|
@@ -3227,7 +3092,16 @@ impl ::protobuf::Message for GridId {
|
|
|
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_singular_proto3_string_into(wire_type, is, &mut self.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 => {
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.data)?;
|
|
|
},
|
|
|
_ => {
|
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
@@ -3241,8 +3115,17 @@ impl ::protobuf::Message for GridId {
|
|
|
#[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);
|
|
|
+ if !self.id.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::string_size(1, &self.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 !self.data.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::string_size(4, &self.data);
|
|
|
}
|
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
self.cached_size.set(my_size);
|
|
@@ -3250,8 +3133,17 @@ impl ::protobuf::Message for GridId {
|
|
|
}
|
|
|
|
|
|
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
- if !self.value.is_empty() {
|
|
|
- os.write_string(1, &self.value)?;
|
|
|
+ if !self.id.is_empty() {
|
|
|
+ os.write_string(1, &self.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 !self.data.is_empty() {
|
|
|
+ os.write_string(4, &self.data)?;
|
|
|
}
|
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
::std::result::Result::Ok(())
|
|
@@ -3283,8 +3175,8 @@ impl ::protobuf::Message for GridId {
|
|
|
Self::descriptor_static()
|
|
|
}
|
|
|
|
|
|
- fn new() -> GridId {
|
|
|
- GridId::new()
|
|
|
+ fn new() -> CellChangeset {
|
|
|
+ CellChangeset::new()
|
|
|
}
|
|
|
|
|
|
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
@@ -3292,92 +3184,82 @@ impl ::protobuf::Message for GridId {
|
|
|
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 },
|
|
|
+ "id",
|
|
|
+ |m: &CellChangeset| { &m.id },
|
|
|
+ |m: &mut CellChangeset| { &mut m.id },
|
|
|
));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<GridId>(
|
|
|
- "GridId",
|
|
|
+ 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_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
+ "data",
|
|
|
+ |m: &CellChangeset| { &m.data },
|
|
|
+ |m: &mut CellChangeset| { &mut m.data },
|
|
|
+ ));
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<CellChangeset>(
|
|
|
+ "CellChangeset",
|
|
|
fields,
|
|
|
file_descriptor_proto()
|
|
|
)
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- fn default_instance() -> &'static GridId {
|
|
|
- static instance: ::protobuf::rt::LazyV2<GridId> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(GridId::new)
|
|
|
+ fn default_instance() -> &'static CellChangeset {
|
|
|
+ static instance: ::protobuf::rt::LazyV2<CellChangeset> = ::protobuf::rt::LazyV2::INIT;
|
|
|
+ instance.get(CellChangeset::new)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Clear for GridId {
|
|
|
+impl ::protobuf::Clear for CellChangeset {
|
|
|
fn clear(&mut self) {
|
|
|
- self.value.clear();
|
|
|
+ self.id.clear();
|
|
|
+ self.row_id.clear();
|
|
|
+ self.field_id.clear();
|
|
|
+ self.data.clear();
|
|
|
self.unknown_fields.clear();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::fmt::Debug for GridId {
|
|
|
+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 GridId {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for CellChangeset {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct Filter {
|
|
|
+pub struct CreateGridPayload {
|
|
|
// message fields
|
|
|
- pub id: ::std::string::String,
|
|
|
pub name: ::std::string::String,
|
|
|
- pub desc: ::std::string::String,
|
|
|
// special fields
|
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
|
}
|
|
|
|
|
|
-impl<'a> ::std::default::Default for &'a Filter {
|
|
|
- fn default() -> &'a Filter {
|
|
|
- <Filter as ::protobuf::Message>::default_instance()
|
|
|
+impl<'a> ::std::default::Default for &'a CreateGridPayload {
|
|
|
+ fn default() -> &'a CreateGridPayload {
|
|
|
+ <CreateGridPayload as ::protobuf::Message>::default_instance()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl Filter {
|
|
|
- pub fn new() -> Filter {
|
|
|
+impl CreateGridPayload {
|
|
|
+ pub fn new() -> CreateGridPayload {
|
|
|
::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())
|
|
|
- }
|
|
|
-
|
|
|
- // string name = 2;
|
|
|
+ // string name = 1;
|
|
|
|
|
|
|
|
|
pub fn get_name(&self) -> &str {
|
|
@@ -3402,35 +3284,9 @@ impl Filter {
|
|
|
pub fn take_name(&mut self) -> ::std::string::String {
|
|
|
::std::mem::replace(&mut self.name, ::std::string::String::new())
|
|
|
}
|
|
|
-
|
|
|
- // string desc = 3;
|
|
|
-
|
|
|
-
|
|
|
- pub fn get_desc(&self) -> &str {
|
|
|
- &self.desc
|
|
|
- }
|
|
|
- pub fn clear_desc(&mut self) {
|
|
|
- self.desc.clear();
|
|
|
- }
|
|
|
-
|
|
|
- // Param is passed by value, moved
|
|
|
- pub fn set_desc(&mut self, v: ::std::string::String) {
|
|
|
- self.desc = v;
|
|
|
- }
|
|
|
-
|
|
|
- // Mutable pointer to the field.
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_desc(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.desc
|
|
|
- }
|
|
|
-
|
|
|
- // Take field
|
|
|
- pub fn take_desc(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.desc, ::std::string::String::new())
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Message for Filter {
|
|
|
+impl ::protobuf::Message for CreateGridPayload {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
true
|
|
|
}
|
|
@@ -3440,14 +3296,8 @@ impl ::protobuf::Message for Filter {
|
|
|
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_singular_proto3_string_into(wire_type, is, &mut self.name)?;
|
|
|
},
|
|
|
- 3 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.desc)?;
|
|
|
- },
|
|
|
_ => {
|
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
|
},
|
|
@@ -3460,14 +3310,8 @@ impl ::protobuf::Message for Filter {
|
|
|
#[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);
|
|
|
- }
|
|
|
if !self.name.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(2, &self.name);
|
|
|
- }
|
|
|
- if !self.desc.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(3, &self.desc);
|
|
|
+ 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);
|
|
@@ -3475,14 +3319,8 @@ impl ::protobuf::Message for Filter {
|
|
|
}
|
|
|
|
|
|
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
- if !self.id.is_empty() {
|
|
|
- os.write_string(1, &self.id)?;
|
|
|
- }
|
|
|
if !self.name.is_empty() {
|
|
|
- os.write_string(2, &self.name)?;
|
|
|
- }
|
|
|
- if !self.desc.is_empty() {
|
|
|
- os.write_string(3, &self.desc)?;
|
|
|
+ os.write_string(1, &self.name)?;
|
|
|
}
|
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
::std::result::Result::Ok(())
|
|
@@ -3514,117 +3352,101 @@ impl ::protobuf::Message for Filter {
|
|
|
Self::descriptor_static()
|
|
|
}
|
|
|
|
|
|
- fn new() -> Filter {
|
|
|
- Filter::new()
|
|
|
+ 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>(
|
|
|
- "id",
|
|
|
- |m: &Filter| { &m.id },
|
|
|
- |m: &mut Filter| { &mut m.id },
|
|
|
- ));
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
"name",
|
|
|
- |m: &Filter| { &m.name },
|
|
|
- |m: &mut Filter| { &mut m.name },
|
|
|
- ));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "desc",
|
|
|
- |m: &Filter| { &m.desc },
|
|
|
- |m: &mut Filter| { &mut m.desc },
|
|
|
+ |m: &CreateGridPayload| { &m.name },
|
|
|
+ |m: &mut CreateGridPayload| { &mut m.name },
|
|
|
));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<Filter>(
|
|
|
- "Filter",
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<CreateGridPayload>(
|
|
|
+ "CreateGridPayload",
|
|
|
fields,
|
|
|
file_descriptor_proto()
|
|
|
)
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- fn default_instance() -> &'static Filter {
|
|
|
- static instance: ::protobuf::rt::LazyV2<Filter> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(Filter::new)
|
|
|
+ fn default_instance() -> &'static CreateGridPayload {
|
|
|
+ static instance: ::protobuf::rt::LazyV2<CreateGridPayload> = ::protobuf::rt::LazyV2::INIT;
|
|
|
+ instance.get(CreateGridPayload::new)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Clear for Filter {
|
|
|
+impl ::protobuf::Clear for CreateGridPayload {
|
|
|
fn clear(&mut self) {
|
|
|
- self.id.clear();
|
|
|
self.name.clear();
|
|
|
- self.desc.clear();
|
|
|
self.unknown_fields.clear();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::fmt::Debug for Filter {
|
|
|
+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 Filter {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for CreateGridPayload {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct RepeatedFilter {
|
|
|
+pub struct GridId {
|
|
|
// message fields
|
|
|
- pub items: ::protobuf::RepeatedField<Filter>,
|
|
|
+ pub value: ::std::string::String,
|
|
|
// special fields
|
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
|
}
|
|
|
|
|
|
-impl<'a> ::std::default::Default for &'a RepeatedFilter {
|
|
|
- fn default() -> &'a RepeatedFilter {
|
|
|
- <RepeatedFilter as ::protobuf::Message>::default_instance()
|
|
|
+impl<'a> ::std::default::Default for &'a GridId {
|
|
|
+ fn default() -> &'a GridId {
|
|
|
+ <GridId as ::protobuf::Message>::default_instance()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl RepeatedFilter {
|
|
|
- pub fn new() -> RepeatedFilter {
|
|
|
+impl GridId {
|
|
|
+ pub fn new() -> GridId {
|
|
|
::std::default::Default::default()
|
|
|
}
|
|
|
|
|
|
- // repeated .Filter items = 1;
|
|
|
+ // string value = 1;
|
|
|
|
|
|
|
|
|
- pub fn get_items(&self) -> &[Filter] {
|
|
|
- &self.items
|
|
|
+ pub fn get_value(&self) -> &str {
|
|
|
+ &self.value
|
|
|
}
|
|
|
- pub fn clear_items(&mut self) {
|
|
|
- self.items.clear();
|
|
|
+ pub fn clear_value(&mut self) {
|
|
|
+ self.value.clear();
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_items(&mut self, v: ::protobuf::RepeatedField<Filter>) {
|
|
|
- self.items = v;
|
|
|
+ pub fn set_value(&mut self, v: ::std::string::String) {
|
|
|
+ self.value = v;
|
|
|
}
|
|
|
|
|
|
// Mutable pointer to the field.
|
|
|
- pub fn mut_items(&mut self) -> &mut ::protobuf::RepeatedField<Filter> {
|
|
|
- &mut self.items
|
|
|
+ // 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_items(&mut self) -> ::protobuf::RepeatedField<Filter> {
|
|
|
- ::std::mem::replace(&mut self.items, ::protobuf::RepeatedField::new())
|
|
|
+ pub fn take_value(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.value, ::std::string::String::new())
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Message for RepeatedFilter {
|
|
|
+impl ::protobuf::Message for GridId {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
- for v in &self.items {
|
|
|
- if !v.is_initialized() {
|
|
|
- return false;
|
|
|
- }
|
|
|
- };
|
|
|
true
|
|
|
}
|
|
|
|
|
@@ -3633,7 +3455,7 @@ impl ::protobuf::Message for RepeatedFilter {
|
|
|
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_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())?;
|
|
@@ -3647,21 +3469,18 @@ impl ::protobuf::Message for RepeatedFilter {
|
|
|
#[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;
|
|
|
- };
|
|
|
+ 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<()> {
|
|
|
- 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)?;
|
|
|
- };
|
|
|
+ if !self.value.is_empty() {
|
|
|
+ os.write_string(1, &self.value)?;
|
|
|
+ }
|
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
::std::result::Result::Ok(())
|
|
|
}
|
|
@@ -3692,47 +3511,47 @@ impl ::protobuf::Message for RepeatedFilter {
|
|
|
Self::descriptor_static()
|
|
|
}
|
|
|
|
|
|
- fn new() -> RepeatedFilter {
|
|
|
- RepeatedFilter::new()
|
|
|
+ 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_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<Filter>>(
|
|
|
- "items",
|
|
|
- |m: &RepeatedFilter| { &m.items },
|
|
|
- |m: &mut RepeatedFilter| { &mut m.items },
|
|
|
+ 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::<RepeatedFilter>(
|
|
|
- "RepeatedFilter",
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<GridId>(
|
|
|
+ "GridId",
|
|
|
fields,
|
|
|
file_descriptor_proto()
|
|
|
)
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- fn default_instance() -> &'static RepeatedFilter {
|
|
|
- static instance: ::protobuf::rt::LazyV2<RepeatedFilter> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(RepeatedFilter::new)
|
|
|
+ fn default_instance() -> &'static GridId {
|
|
|
+ static instance: ::protobuf::rt::LazyV2<GridId> = ::protobuf::rt::LazyV2::INIT;
|
|
|
+ instance.get(GridId::new)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Clear for RepeatedFilter {
|
|
|
+impl ::protobuf::Clear for GridId {
|
|
|
fn clear(&mut self) {
|
|
|
- self.items.clear();
|
|
|
+ self.value.clear();
|
|
|
self.unknown_fields.clear();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::fmt::Debug for RepeatedFilter {
|
|
|
+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 RepeatedFilter {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for GridId {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
}
|
|
@@ -3801,11 +3620,10 @@ impl ::protobuf::reflect::ProtobufValue for FieldType {
|
|
|
}
|
|
|
|
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
|
- \n\ngrid.proto\"\xab\x01\n\x04Grid\x12\x0e\n\x02id\x18\x01\x20\x01(\tR\
|
|
|
- \x02id\x12)\n\x07filters\x18\x02\x20\x01(\x0b2\x0f.RepeatedFilterR\x07fi\
|
|
|
- lters\x126\n\x0cfield_orders\x18\x03\x20\x01(\x0b2\x13.RepeatedFieldOrde\
|
|
|
- rR\x0bfieldOrders\x120\n\nrow_orders\x18\x04\x20\x01(\x0b2\x11.RepeatedR\
|
|
|
- owOrderR\trowOrders\"G\n\nFieldOrder\x12\x19\n\x08field_id\x18\x01\x20\
|
|
|
+ \n\ngrid.proto\"\x80\x01\n\x04Grid\x12\x0e\n\x02id\x18\x01\x20\x01(\tR\
|
|
|
+ \x02id\x126\n\x0cfield_orders\x18\x02\x20\x01(\x0b2\x13.RepeatedFieldOrd\
|
|
|
+ erR\x0bfieldOrders\x120\n\nrow_orders\x18\x03\x20\x01(\x0b2\x11.Repeated\
|
|
|
+ RowOrderR\trowOrders\"G\n\nFieldOrder\x12\x19\n\x08field_id\x18\x01\x20\
|
|
|
\x01(\tR\x07fieldId\x12\x1e\n\nvisibility\x18\x02\x20\x01(\x08R\nvisibil\
|
|
|
ity\"7\n\x12RepeatedFieldOrder\x12!\n\x05items\x18\x01\x20\x03(\x0b2\x0b\
|
|
|
.FieldOrderR\x05items\"\xc5\x01\n\x05Field\x12\x0e\n\x02id\x18\x01\x20\
|
|
@@ -3835,15 +3653,15 @@ static file_descriptor_proto_data: &'static [u8] = b"\
|
|
|
y\x18\x01\x20\x01(\tR\x03key\x12\x1b\n\x05value\x18\x02\x20\x01(\x0b2\
|
|
|
\x05.CellR\x05value:\x028\x01\"K\n\x04Cell\x12\x0e\n\x02id\x18\x01\x20\
|
|
|
\x01(\tR\x02id\x12\x19\n\x08field_id\x18\x02\x20\x01(\tR\x07fieldId\x12\
|
|
|
- \x18\n\x07content\x18\x03\x20\x01(\tR\x07content\"'\n\x11CreateGridPaylo\
|
|
|
- ad\x12\x12\n\x04name\x18\x01\x20\x01(\tR\x04name\"\x1e\n\x06GridId\x12\
|
|
|
- \x14\n\x05value\x18\x01\x20\x01(\tR\x05value\"@\n\x06Filter\x12\x0e\n\
|
|
|
- \x02id\x18\x01\x20\x01(\tR\x02id\x12\x12\n\x04name\x18\x02\x20\x01(\tR\
|
|
|
- \x04name\x12\x12\n\x04desc\x18\x03\x20\x01(\tR\x04desc\"/\n\x0eRepeatedF\
|
|
|
- ilter\x12\x1d\n\x05items\x18\x01\x20\x03(\x0b2\x07.FilterR\x05items*d\n\
|
|
|
- \tFieldType\x12\x0c\n\x08RichText\x10\0\x12\n\n\x06Number\x10\x01\x12\
|
|
|
- \x0c\n\x08DateTime\x10\x02\x12\x10\n\x0cSingleSelect\x10\x03\x12\x0f\n\
|
|
|
- \x0bMultiSelect\x10\x04\x12\x0c\n\x08Checkbox\x10\x05b\x06proto3\
|
|
|
+ \x18\n\x07content\x18\x03\x20\x01(\tR\x07content\"e\n\rCellChangeset\x12\
|
|
|
+ \x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\x12\x15\n\x06row_id\x18\x02\x20\
|
|
|
+ \x01(\tR\x05rowId\x12\x19\n\x08field_id\x18\x03\x20\x01(\tR\x07fieldId\
|
|
|
+ \x12\x12\n\x04data\x18\x04\x20\x01(\tR\x04data\"'\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*d\n\tFieldType\x12\x0c\n\x08Ric\
|
|
|
+ hText\x10\0\x12\n\n\x06Number\x10\x01\x12\x0c\n\x08DateTime\x10\x02\x12\
|
|
|
+ \x10\n\x0cSingleSelect\x10\x03\x12\x0f\n\x0bMultiSelect\x10\x04\x12\x0c\
|
|
|
+ \n\x08Checkbox\x10\x05b\x06proto3\
|
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|