|
@@ -24,66 +24,66 @@
|
|
|
// const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_22_1;
|
|
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct DocumentClientWSData {
|
|
|
+pub struct ClientRevisionWSData {
|
|
|
// message fields
|
|
|
- pub doc_id: ::std::string::String,
|
|
|
- pub ty: DocumentClientWSDataType,
|
|
|
+ pub object_id: ::std::string::String,
|
|
|
+ pub ty: ClientRevisionWSDataType,
|
|
|
pub revisions: ::protobuf::SingularPtrField<super::revision::RepeatedRevision>,
|
|
|
- pub id: ::std::string::String,
|
|
|
+ pub data_id: ::std::string::String,
|
|
|
// special fields
|
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
|
}
|
|
|
|
|
|
-impl<'a> ::std::default::Default for &'a DocumentClientWSData {
|
|
|
- fn default() -> &'a DocumentClientWSData {
|
|
|
- <DocumentClientWSData as ::protobuf::Message>::default_instance()
|
|
|
+impl<'a> ::std::default::Default for &'a ClientRevisionWSData {
|
|
|
+ fn default() -> &'a ClientRevisionWSData {
|
|
|
+ <ClientRevisionWSData as ::protobuf::Message>::default_instance()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl DocumentClientWSData {
|
|
|
- pub fn new() -> DocumentClientWSData {
|
|
|
+impl ClientRevisionWSData {
|
|
|
+ pub fn new() -> ClientRevisionWSData {
|
|
|
::std::default::Default::default()
|
|
|
}
|
|
|
|
|
|
- // string doc_id = 1;
|
|
|
+ // string object_id = 1;
|
|
|
|
|
|
|
|
|
- pub fn get_doc_id(&self) -> &str {
|
|
|
- &self.doc_id
|
|
|
+ pub fn get_object_id(&self) -> &str {
|
|
|
+ &self.object_id
|
|
|
}
|
|
|
- pub fn clear_doc_id(&mut self) {
|
|
|
- self.doc_id.clear();
|
|
|
+ pub fn clear_object_id(&mut self) {
|
|
|
+ self.object_id.clear();
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_doc_id(&mut self, v: ::std::string::String) {
|
|
|
- self.doc_id = v;
|
|
|
+ pub fn set_object_id(&mut self, v: ::std::string::String) {
|
|
|
+ self.object_id = v;
|
|
|
}
|
|
|
|
|
|
// Mutable pointer to the field.
|
|
|
// If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_doc_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.doc_id
|
|
|
+ pub fn mut_object_id(&mut self) -> &mut ::std::string::String {
|
|
|
+ &mut self.object_id
|
|
|
}
|
|
|
|
|
|
// Take field
|
|
|
- pub fn take_doc_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.doc_id, ::std::string::String::new())
|
|
|
+ pub fn take_object_id(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.object_id, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- // .DocumentClientWSDataType ty = 2;
|
|
|
+ // .ClientRevisionWSDataType ty = 2;
|
|
|
|
|
|
|
|
|
- pub fn get_ty(&self) -> DocumentClientWSDataType {
|
|
|
+ pub fn get_ty(&self) -> ClientRevisionWSDataType {
|
|
|
self.ty
|
|
|
}
|
|
|
pub fn clear_ty(&mut self) {
|
|
|
- self.ty = DocumentClientWSDataType::ClientPushRev;
|
|
|
+ self.ty = ClientRevisionWSDataType::ClientPushRev;
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_ty(&mut self, v: DocumentClientWSDataType) {
|
|
|
+ pub fn set_ty(&mut self, v: ClientRevisionWSDataType) {
|
|
|
self.ty = v;
|
|
|
}
|
|
|
|
|
@@ -120,34 +120,34 @@ impl DocumentClientWSData {
|
|
|
self.revisions.take().unwrap_or_else(|| super::revision::RepeatedRevision::new())
|
|
|
}
|
|
|
|
|
|
- // string id = 4;
|
|
|
+ // string data_id = 4;
|
|
|
|
|
|
|
|
|
- pub fn get_id(&self) -> &str {
|
|
|
- &self.id
|
|
|
+ pub fn get_data_id(&self) -> &str {
|
|
|
+ &self.data_id
|
|
|
}
|
|
|
- pub fn clear_id(&mut self) {
|
|
|
- self.id.clear();
|
|
|
+ pub fn clear_data_id(&mut self) {
|
|
|
+ self.data_id.clear();
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_id(&mut self, v: ::std::string::String) {
|
|
|
- self.id = v;
|
|
|
+ pub fn set_data_id(&mut self, v: ::std::string::String) {
|
|
|
+ self.data_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
|
|
|
+ pub fn mut_data_id(&mut self) -> &mut ::std::string::String {
|
|
|
+ &mut self.data_id
|
|
|
}
|
|
|
|
|
|
// Take field
|
|
|
- pub fn take_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.id, ::std::string::String::new())
|
|
|
+ pub fn take_data_id(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.data_id, ::std::string::String::new())
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Message for DocumentClientWSData {
|
|
|
+impl ::protobuf::Message for ClientRevisionWSData {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
for v in &self.revisions {
|
|
|
if !v.is_initialized() {
|
|
@@ -162,7 +162,7 @@ impl ::protobuf::Message for DocumentClientWSData {
|
|
|
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.doc_id)?;
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.object_id)?;
|
|
|
},
|
|
|
2 => {
|
|
|
::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.ty, 2, &mut self.unknown_fields)?
|
|
@@ -171,7 +171,7 @@ impl ::protobuf::Message for DocumentClientWSData {
|
|
|
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.revisions)?;
|
|
|
},
|
|
|
4 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.id)?;
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.data_id)?;
|
|
|
},
|
|
|
_ => {
|
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
@@ -185,18 +185,18 @@ impl ::protobuf::Message for DocumentClientWSData {
|
|
|
#[allow(unused_variables)]
|
|
|
fn compute_size(&self) -> u32 {
|
|
|
let mut my_size = 0;
|
|
|
- if !self.doc_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.doc_id);
|
|
|
+ if !self.object_id.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::string_size(1, &self.object_id);
|
|
|
}
|
|
|
- if self.ty != DocumentClientWSDataType::ClientPushRev {
|
|
|
+ if self.ty != ClientRevisionWSDataType::ClientPushRev {
|
|
|
my_size += ::protobuf::rt::enum_size(2, self.ty);
|
|
|
}
|
|
|
if let Some(ref v) = self.revisions.as_ref() {
|
|
|
let len = v.compute_size();
|
|
|
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
|
}
|
|
|
- if !self.id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(4, &self.id);
|
|
|
+ if !self.data_id.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::string_size(4, &self.data_id);
|
|
|
}
|
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
self.cached_size.set(my_size);
|
|
@@ -204,10 +204,10 @@ impl ::protobuf::Message for DocumentClientWSData {
|
|
|
}
|
|
|
|
|
|
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
- if !self.doc_id.is_empty() {
|
|
|
- os.write_string(1, &self.doc_id)?;
|
|
|
+ if !self.object_id.is_empty() {
|
|
|
+ os.write_string(1, &self.object_id)?;
|
|
|
}
|
|
|
- if self.ty != DocumentClientWSDataType::ClientPushRev {
|
|
|
+ if self.ty != ClientRevisionWSDataType::ClientPushRev {
|
|
|
os.write_enum(2, ::protobuf::ProtobufEnum::value(&self.ty))?;
|
|
|
}
|
|
|
if let Some(ref v) = self.revisions.as_ref() {
|
|
@@ -215,8 +215,8 @@ impl ::protobuf::Message for DocumentClientWSData {
|
|
|
os.write_raw_varint32(v.get_cached_size())?;
|
|
|
v.write_to_with_cached_sizes(os)?;
|
|
|
}
|
|
|
- if !self.id.is_empty() {
|
|
|
- os.write_string(4, &self.id)?;
|
|
|
+ if !self.data_id.is_empty() {
|
|
|
+ os.write_string(4, &self.data_id)?;
|
|
|
}
|
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
::std::result::Result::Ok(())
|
|
@@ -248,8 +248,8 @@ impl ::protobuf::Message for DocumentClientWSData {
|
|
|
Self::descriptor_static()
|
|
|
}
|
|
|
|
|
|
- fn new() -> DocumentClientWSData {
|
|
|
- DocumentClientWSData::new()
|
|
|
+ fn new() -> ClientRevisionWSData {
|
|
|
+ ClientRevisionWSData::new()
|
|
|
}
|
|
|
|
|
|
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
@@ -257,121 +257,121 @@ impl ::protobuf::Message for DocumentClientWSData {
|
|
|
descriptor.get(|| {
|
|
|
let mut fields = ::std::vec::Vec::new();
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "doc_id",
|
|
|
- |m: &DocumentClientWSData| { &m.doc_id },
|
|
|
- |m: &mut DocumentClientWSData| { &mut m.doc_id },
|
|
|
+ "object_id",
|
|
|
+ |m: &ClientRevisionWSData| { &m.object_id },
|
|
|
+ |m: &mut ClientRevisionWSData| { &mut m.object_id },
|
|
|
));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<DocumentClientWSDataType>>(
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<ClientRevisionWSDataType>>(
|
|
|
"ty",
|
|
|
- |m: &DocumentClientWSData| { &m.ty },
|
|
|
- |m: &mut DocumentClientWSData| { &mut m.ty },
|
|
|
+ |m: &ClientRevisionWSData| { &m.ty },
|
|
|
+ |m: &mut ClientRevisionWSData| { &mut m.ty },
|
|
|
));
|
|
|
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::revision::RepeatedRevision>>(
|
|
|
"revisions",
|
|
|
- |m: &DocumentClientWSData| { &m.revisions },
|
|
|
- |m: &mut DocumentClientWSData| { &mut m.revisions },
|
|
|
+ |m: &ClientRevisionWSData| { &m.revisions },
|
|
|
+ |m: &mut ClientRevisionWSData| { &mut m.revisions },
|
|
|
));
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "id",
|
|
|
- |m: &DocumentClientWSData| { &m.id },
|
|
|
- |m: &mut DocumentClientWSData| { &mut m.id },
|
|
|
+ "data_id",
|
|
|
+ |m: &ClientRevisionWSData| { &m.data_id },
|
|
|
+ |m: &mut ClientRevisionWSData| { &mut m.data_id },
|
|
|
));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<DocumentClientWSData>(
|
|
|
- "DocumentClientWSData",
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<ClientRevisionWSData>(
|
|
|
+ "ClientRevisionWSData",
|
|
|
fields,
|
|
|
file_descriptor_proto()
|
|
|
)
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- fn default_instance() -> &'static DocumentClientWSData {
|
|
|
- static instance: ::protobuf::rt::LazyV2<DocumentClientWSData> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(DocumentClientWSData::new)
|
|
|
+ fn default_instance() -> &'static ClientRevisionWSData {
|
|
|
+ static instance: ::protobuf::rt::LazyV2<ClientRevisionWSData> = ::protobuf::rt::LazyV2::INIT;
|
|
|
+ instance.get(ClientRevisionWSData::new)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Clear for DocumentClientWSData {
|
|
|
+impl ::protobuf::Clear for ClientRevisionWSData {
|
|
|
fn clear(&mut self) {
|
|
|
- self.doc_id.clear();
|
|
|
- self.ty = DocumentClientWSDataType::ClientPushRev;
|
|
|
+ self.object_id.clear();
|
|
|
+ self.ty = ClientRevisionWSDataType::ClientPushRev;
|
|
|
self.revisions.clear();
|
|
|
- self.id.clear();
|
|
|
+ self.data_id.clear();
|
|
|
self.unknown_fields.clear();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::fmt::Debug for DocumentClientWSData {
|
|
|
+impl ::std::fmt::Debug for ClientRevisionWSData {
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
::protobuf::text_format::fmt(self, f)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for DocumentClientWSData {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for ClientRevisionWSData {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct DocumentServerWSData {
|
|
|
+pub struct ServerRevisionWSData {
|
|
|
// message fields
|
|
|
- pub doc_id: ::std::string::String,
|
|
|
- pub ty: DocumentServerWSDataType,
|
|
|
+ pub object_id: ::std::string::String,
|
|
|
+ pub ty: ServerRevisionWSDataType,
|
|
|
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 DocumentServerWSData {
|
|
|
- fn default() -> &'a DocumentServerWSData {
|
|
|
- <DocumentServerWSData as ::protobuf::Message>::default_instance()
|
|
|
+impl<'a> ::std::default::Default for &'a ServerRevisionWSData {
|
|
|
+ fn default() -> &'a ServerRevisionWSData {
|
|
|
+ <ServerRevisionWSData as ::protobuf::Message>::default_instance()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl DocumentServerWSData {
|
|
|
- pub fn new() -> DocumentServerWSData {
|
|
|
+impl ServerRevisionWSData {
|
|
|
+ pub fn new() -> ServerRevisionWSData {
|
|
|
::std::default::Default::default()
|
|
|
}
|
|
|
|
|
|
- // string doc_id = 1;
|
|
|
+ // string object_id = 1;
|
|
|
|
|
|
|
|
|
- pub fn get_doc_id(&self) -> &str {
|
|
|
- &self.doc_id
|
|
|
+ pub fn get_object_id(&self) -> &str {
|
|
|
+ &self.object_id
|
|
|
}
|
|
|
- pub fn clear_doc_id(&mut self) {
|
|
|
- self.doc_id.clear();
|
|
|
+ pub fn clear_object_id(&mut self) {
|
|
|
+ self.object_id.clear();
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_doc_id(&mut self, v: ::std::string::String) {
|
|
|
- self.doc_id = v;
|
|
|
+ pub fn set_object_id(&mut self, v: ::std::string::String) {
|
|
|
+ self.object_id = v;
|
|
|
}
|
|
|
|
|
|
// Mutable pointer to the field.
|
|
|
// If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_doc_id(&mut self) -> &mut ::std::string::String {
|
|
|
- &mut self.doc_id
|
|
|
+ pub fn mut_object_id(&mut self) -> &mut ::std::string::String {
|
|
|
+ &mut self.object_id
|
|
|
}
|
|
|
|
|
|
// Take field
|
|
|
- pub fn take_doc_id(&mut self) -> ::std::string::String {
|
|
|
- ::std::mem::replace(&mut self.doc_id, ::std::string::String::new())
|
|
|
+ pub fn take_object_id(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.object_id, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- // .DocumentServerWSDataType ty = 2;
|
|
|
+ // .ServerRevisionWSDataType ty = 2;
|
|
|
|
|
|
|
|
|
- pub fn get_ty(&self) -> DocumentServerWSDataType {
|
|
|
+ pub fn get_ty(&self) -> ServerRevisionWSDataType {
|
|
|
self.ty
|
|
|
}
|
|
|
pub fn clear_ty(&mut self) {
|
|
|
- self.ty = DocumentServerWSDataType::ServerAck;
|
|
|
+ self.ty = ServerRevisionWSDataType::ServerAck;
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_ty(&mut self, v: DocumentServerWSDataType) {
|
|
|
+ pub fn set_ty(&mut self, v: ServerRevisionWSDataType) {
|
|
|
self.ty = v;
|
|
|
}
|
|
|
|
|
@@ -402,7 +402,7 @@ impl DocumentServerWSData {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Message for DocumentServerWSData {
|
|
|
+impl ::protobuf::Message for ServerRevisionWSData {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
true
|
|
|
}
|
|
@@ -412,7 +412,7 @@ impl ::protobuf::Message for DocumentServerWSData {
|
|
|
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.doc_id)?;
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.object_id)?;
|
|
|
},
|
|
|
2 => {
|
|
|
::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.ty, 2, &mut self.unknown_fields)?
|
|
@@ -432,10 +432,10 @@ impl ::protobuf::Message for DocumentServerWSData {
|
|
|
#[allow(unused_variables)]
|
|
|
fn compute_size(&self) -> u32 {
|
|
|
let mut my_size = 0;
|
|
|
- if !self.doc_id.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.doc_id);
|
|
|
+ if !self.object_id.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::string_size(1, &self.object_id);
|
|
|
}
|
|
|
- if self.ty != DocumentServerWSDataType::ServerAck {
|
|
|
+ if self.ty != ServerRevisionWSDataType::ServerAck {
|
|
|
my_size += ::protobuf::rt::enum_size(2, self.ty);
|
|
|
}
|
|
|
if !self.data.is_empty() {
|
|
@@ -447,10 +447,10 @@ impl ::protobuf::Message for DocumentServerWSData {
|
|
|
}
|
|
|
|
|
|
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
- if !self.doc_id.is_empty() {
|
|
|
- os.write_string(1, &self.doc_id)?;
|
|
|
+ if !self.object_id.is_empty() {
|
|
|
+ os.write_string(1, &self.object_id)?;
|
|
|
}
|
|
|
- if self.ty != DocumentServerWSDataType::ServerAck {
|
|
|
+ if self.ty != ServerRevisionWSDataType::ServerAck {
|
|
|
os.write_enum(2, ::protobuf::ProtobufEnum::value(&self.ty))?;
|
|
|
}
|
|
|
if !self.data.is_empty() {
|
|
@@ -486,8 +486,8 @@ impl ::protobuf::Message for DocumentServerWSData {
|
|
|
Self::descriptor_static()
|
|
|
}
|
|
|
|
|
|
- fn new() -> DocumentServerWSData {
|
|
|
- DocumentServerWSData::new()
|
|
|
+ fn new() -> ServerRevisionWSData {
|
|
|
+ ServerRevisionWSData::new()
|
|
|
}
|
|
|
|
|
|
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
@@ -495,50 +495,50 @@ impl ::protobuf::Message for DocumentServerWSData {
|
|
|
descriptor.get(|| {
|
|
|
let mut fields = ::std::vec::Vec::new();
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
- "doc_id",
|
|
|
- |m: &DocumentServerWSData| { &m.doc_id },
|
|
|
- |m: &mut DocumentServerWSData| { &mut m.doc_id },
|
|
|
+ "object_id",
|
|
|
+ |m: &ServerRevisionWSData| { &m.object_id },
|
|
|
+ |m: &mut ServerRevisionWSData| { &mut m.object_id },
|
|
|
));
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<DocumentServerWSDataType>>(
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<ServerRevisionWSDataType>>(
|
|
|
"ty",
|
|
|
- |m: &DocumentServerWSData| { &m.ty },
|
|
|
- |m: &mut DocumentServerWSData| { &mut m.ty },
|
|
|
+ |m: &ServerRevisionWSData| { &m.ty },
|
|
|
+ |m: &mut ServerRevisionWSData| { &mut m.ty },
|
|
|
));
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>(
|
|
|
"data",
|
|
|
- |m: &DocumentServerWSData| { &m.data },
|
|
|
- |m: &mut DocumentServerWSData| { &mut m.data },
|
|
|
+ |m: &ServerRevisionWSData| { &m.data },
|
|
|
+ |m: &mut ServerRevisionWSData| { &mut m.data },
|
|
|
));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<DocumentServerWSData>(
|
|
|
- "DocumentServerWSData",
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<ServerRevisionWSData>(
|
|
|
+ "ServerRevisionWSData",
|
|
|
fields,
|
|
|
file_descriptor_proto()
|
|
|
)
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- fn default_instance() -> &'static DocumentServerWSData {
|
|
|
- static instance: ::protobuf::rt::LazyV2<DocumentServerWSData> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(DocumentServerWSData::new)
|
|
|
+ fn default_instance() -> &'static ServerRevisionWSData {
|
|
|
+ static instance: ::protobuf::rt::LazyV2<ServerRevisionWSData> = ::protobuf::rt::LazyV2::INIT;
|
|
|
+ instance.get(ServerRevisionWSData::new)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Clear for DocumentServerWSData {
|
|
|
+impl ::protobuf::Clear for ServerRevisionWSData {
|
|
|
fn clear(&mut self) {
|
|
|
- self.doc_id.clear();
|
|
|
- self.ty = DocumentServerWSDataType::ServerAck;
|
|
|
+ self.object_id.clear();
|
|
|
+ self.ty = ServerRevisionWSDataType::ServerAck;
|
|
|
self.data.clear();
|
|
|
self.unknown_fields.clear();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::fmt::Debug for DocumentServerWSData {
|
|
|
+impl ::std::fmt::Debug for ServerRevisionWSData {
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
::protobuf::text_format::fmt(self, f)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for DocumentServerWSData {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for ServerRevisionWSData {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
}
|
|
@@ -788,28 +788,28 @@ impl ::protobuf::reflect::ProtobufValue for NewDocumentUser {
|
|
|
}
|
|
|
|
|
|
#[derive(Clone,PartialEq,Eq,Debug,Hash)]
|
|
|
-pub enum DocumentClientWSDataType {
|
|
|
+pub enum ClientRevisionWSDataType {
|
|
|
ClientPushRev = 0,
|
|
|
ClientPing = 1,
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::ProtobufEnum for DocumentClientWSDataType {
|
|
|
+impl ::protobuf::ProtobufEnum for ClientRevisionWSDataType {
|
|
|
fn value(&self) -> i32 {
|
|
|
*self as i32
|
|
|
}
|
|
|
|
|
|
- fn from_i32(value: i32) -> ::std::option::Option<DocumentClientWSDataType> {
|
|
|
+ fn from_i32(value: i32) -> ::std::option::Option<ClientRevisionWSDataType> {
|
|
|
match value {
|
|
|
- 0 => ::std::option::Option::Some(DocumentClientWSDataType::ClientPushRev),
|
|
|
- 1 => ::std::option::Option::Some(DocumentClientWSDataType::ClientPing),
|
|
|
+ 0 => ::std::option::Option::Some(ClientRevisionWSDataType::ClientPushRev),
|
|
|
+ 1 => ::std::option::Option::Some(ClientRevisionWSDataType::ClientPing),
|
|
|
_ => ::std::option::Option::None
|
|
|
}
|
|
|
}
|
|
|
|
|
|
fn values() -> &'static [Self] {
|
|
|
- static values: &'static [DocumentClientWSDataType] = &[
|
|
|
- DocumentClientWSDataType::ClientPushRev,
|
|
|
- DocumentClientWSDataType::ClientPing,
|
|
|
+ static values: &'static [ClientRevisionWSDataType] = &[
|
|
|
+ ClientRevisionWSDataType::ClientPushRev,
|
|
|
+ ClientRevisionWSDataType::ClientPing,
|
|
|
];
|
|
|
values
|
|
|
}
|
|
@@ -817,55 +817,55 @@ impl ::protobuf::ProtobufEnum for DocumentClientWSDataType {
|
|
|
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::<DocumentClientWSDataType>("DocumentClientWSDataType", file_descriptor_proto())
|
|
|
+ ::protobuf::reflect::EnumDescriptor::new_pb_name::<ClientRevisionWSDataType>("ClientRevisionWSDataType", file_descriptor_proto())
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::marker::Copy for DocumentClientWSDataType {
|
|
|
+impl ::std::marker::Copy for ClientRevisionWSDataType {
|
|
|
}
|
|
|
|
|
|
-impl ::std::default::Default for DocumentClientWSDataType {
|
|
|
+impl ::std::default::Default for ClientRevisionWSDataType {
|
|
|
fn default() -> Self {
|
|
|
- DocumentClientWSDataType::ClientPushRev
|
|
|
+ ClientRevisionWSDataType::ClientPushRev
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for DocumentClientWSDataType {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for ClientRevisionWSDataType {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Enum(::protobuf::ProtobufEnum::descriptor(self))
|
|
|
}
|
|
|
}
|
|
|
|
|
|
#[derive(Clone,PartialEq,Eq,Debug,Hash)]
|
|
|
-pub enum DocumentServerWSDataType {
|
|
|
+pub enum ServerRevisionWSDataType {
|
|
|
ServerAck = 0,
|
|
|
ServerPushRev = 1,
|
|
|
ServerPullRev = 2,
|
|
|
UserConnect = 3,
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::ProtobufEnum for DocumentServerWSDataType {
|
|
|
+impl ::protobuf::ProtobufEnum for ServerRevisionWSDataType {
|
|
|
fn value(&self) -> i32 {
|
|
|
*self as i32
|
|
|
}
|
|
|
|
|
|
- fn from_i32(value: i32) -> ::std::option::Option<DocumentServerWSDataType> {
|
|
|
+ fn from_i32(value: i32) -> ::std::option::Option<ServerRevisionWSDataType> {
|
|
|
match value {
|
|
|
- 0 => ::std::option::Option::Some(DocumentServerWSDataType::ServerAck),
|
|
|
- 1 => ::std::option::Option::Some(DocumentServerWSDataType::ServerPushRev),
|
|
|
- 2 => ::std::option::Option::Some(DocumentServerWSDataType::ServerPullRev),
|
|
|
- 3 => ::std::option::Option::Some(DocumentServerWSDataType::UserConnect),
|
|
|
+ 0 => ::std::option::Option::Some(ServerRevisionWSDataType::ServerAck),
|
|
|
+ 1 => ::std::option::Option::Some(ServerRevisionWSDataType::ServerPushRev),
|
|
|
+ 2 => ::std::option::Option::Some(ServerRevisionWSDataType::ServerPullRev),
|
|
|
+ 3 => ::std::option::Option::Some(ServerRevisionWSDataType::UserConnect),
|
|
|
_ => ::std::option::Option::None
|
|
|
}
|
|
|
}
|
|
|
|
|
|
fn values() -> &'static [Self] {
|
|
|
- static values: &'static [DocumentServerWSDataType] = &[
|
|
|
- DocumentServerWSDataType::ServerAck,
|
|
|
- DocumentServerWSDataType::ServerPushRev,
|
|
|
- DocumentServerWSDataType::ServerPullRev,
|
|
|
- DocumentServerWSDataType::UserConnect,
|
|
|
+ static values: &'static [ServerRevisionWSDataType] = &[
|
|
|
+ ServerRevisionWSDataType::ServerAck,
|
|
|
+ ServerRevisionWSDataType::ServerPushRev,
|
|
|
+ ServerRevisionWSDataType::ServerPullRev,
|
|
|
+ ServerRevisionWSDataType::UserConnect,
|
|
|
];
|
|
|
values
|
|
|
}
|
|
@@ -873,87 +873,88 @@ impl ::protobuf::ProtobufEnum for DocumentServerWSDataType {
|
|
|
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::<DocumentServerWSDataType>("DocumentServerWSDataType", file_descriptor_proto())
|
|
|
+ ::protobuf::reflect::EnumDescriptor::new_pb_name::<ServerRevisionWSDataType>("ServerRevisionWSDataType", file_descriptor_proto())
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::marker::Copy for DocumentServerWSDataType {
|
|
|
+impl ::std::marker::Copy for ServerRevisionWSDataType {
|
|
|
}
|
|
|
|
|
|
-impl ::std::default::Default for DocumentServerWSDataType {
|
|
|
+impl ::std::default::Default for ServerRevisionWSDataType {
|
|
|
fn default() -> Self {
|
|
|
- DocumentServerWSDataType::ServerAck
|
|
|
+ ServerRevisionWSDataType::ServerAck
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for DocumentServerWSDataType {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for ServerRevisionWSDataType {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Enum(::protobuf::ProtobufEnum::descriptor(self))
|
|
|
}
|
|
|
}
|
|
|
|
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
|
- \n\x08ws.proto\x1a\x0erevision.proto\"\x99\x01\n\x14DocumentClientWSData\
|
|
|
- \x12\x15\n\x06doc_id\x18\x01\x20\x01(\tR\x05docId\x12)\n\x02ty\x18\x02\
|
|
|
- \x20\x01(\x0e2\x19.DocumentClientWSDataTypeR\x02ty\x12/\n\trevisions\x18\
|
|
|
- \x03\x20\x01(\x0b2\x11.RepeatedRevisionR\trevisions\x12\x0e\n\x02id\x18\
|
|
|
- \x04\x20\x01(\tR\x02id\"l\n\x14DocumentServerWSData\x12\x15\n\x06doc_id\
|
|
|
- \x18\x01\x20\x01(\tR\x05docId\x12)\n\x02ty\x18\x02\x20\x01(\x0e2\x19.Doc\
|
|
|
- umentServerWSDataTypeR\x02ty\x12\x12\n\x04data\x18\x03\x20\x01(\x0cR\x04\
|
|
|
- data\"f\n\x0fNewDocumentUser\x12\x17\n\x07user_id\x18\x01\x20\x01(\tR\
|
|
|
- \x06userId\x12\x15\n\x06doc_id\x18\x02\x20\x01(\tR\x05docId\x12#\n\rrevi\
|
|
|
- sion_data\x18\x03\x20\x01(\x0cR\x0crevisionData*=\n\x18DocumentClientWSD\
|
|
|
- ataType\x12\x11\n\rClientPushRev\x10\0\x12\x0e\n\nClientPing\x10\x01*`\n\
|
|
|
- \x18DocumentServerWSDataType\x12\r\n\tServerAck\x10\0\x12\x11\n\rServerP\
|
|
|
- ushRev\x10\x01\x12\x11\n\rServerPullRev\x10\x02\x12\x0f\n\x0bUserConnect\
|
|
|
- \x10\x03J\xb1\x07\n\x06\x12\x04\0\0\x1c\x01\n\x08\n\x01\x0c\x12\x03\0\0\
|
|
|
- \x12\n\t\n\x02\x03\0\x12\x03\x01\0\x18\n\n\n\x02\x04\0\x12\x04\x03\0\x08\
|
|
|
- \x01\n\n\n\x03\x04\0\x01\x12\x03\x03\x08\x1c\n\x0b\n\x04\x04\0\x02\0\x12\
|
|
|
- \x03\x04\x04\x16\n\x0c\n\x05\x04\0\x02\0\x05\x12\x03\x04\x04\n\n\x0c\n\
|
|
|
- \x05\x04\0\x02\0\x01\x12\x03\x04\x0b\x11\n\x0c\n\x05\x04\0\x02\0\x03\x12\
|
|
|
- \x03\x04\x14\x15\n\x0b\n\x04\x04\0\x02\x01\x12\x03\x05\x04$\n\x0c\n\x05\
|
|
|
- \x04\0\x02\x01\x06\x12\x03\x05\x04\x1c\n\x0c\n\x05\x04\0\x02\x01\x01\x12\
|
|
|
- \x03\x05\x1d\x1f\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\x05\"#\n\x0b\n\
|
|
|
- \x04\x04\0\x02\x02\x12\x03\x06\x04#\n\x0c\n\x05\x04\0\x02\x02\x06\x12\
|
|
|
- \x03\x06\x04\x14\n\x0c\n\x05\x04\0\x02\x02\x01\x12\x03\x06\x15\x1e\n\x0c\
|
|
|
- \n\x05\x04\0\x02\x02\x03\x12\x03\x06!\"\n\x0b\n\x04\x04\0\x02\x03\x12\
|
|
|
- \x03\x07\x04\x12\n\x0c\n\x05\x04\0\x02\x03\x05\x12\x03\x07\x04\n\n\x0c\n\
|
|
|
- \x05\x04\0\x02\x03\x01\x12\x03\x07\x0b\r\n\x0c\n\x05\x04\0\x02\x03\x03\
|
|
|
- \x12\x03\x07\x10\x11\n\n\n\x02\x04\x01\x12\x04\t\0\r\x01\n\n\n\x03\x04\
|
|
|
- \x01\x01\x12\x03\t\x08\x1c\n\x0b\n\x04\x04\x01\x02\0\x12\x03\n\x04\x16\n\
|
|
|
- \x0c\n\x05\x04\x01\x02\0\x05\x12\x03\n\x04\n\n\x0c\n\x05\x04\x01\x02\0\
|
|
|
- \x01\x12\x03\n\x0b\x11\n\x0c\n\x05\x04\x01\x02\0\x03\x12\x03\n\x14\x15\n\
|
|
|
- \x0b\n\x04\x04\x01\x02\x01\x12\x03\x0b\x04$\n\x0c\n\x05\x04\x01\x02\x01\
|
|
|
- \x06\x12\x03\x0b\x04\x1c\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03\x0b\x1d\
|
|
|
- \x1f\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03\x0b\"#\n\x0b\n\x04\x04\x01\
|
|
|
- \x02\x02\x12\x03\x0c\x04\x13\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03\x0c\
|
|
|
- \x04\t\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03\x0c\n\x0e\n\x0c\n\x05\x04\
|
|
|
- \x01\x02\x02\x03\x12\x03\x0c\x11\x12\n\n\n\x02\x04\x02\x12\x04\x0e\0\x12\
|
|
|
- \x01\n\n\n\x03\x04\x02\x01\x12\x03\x0e\x08\x17\n\x0b\n\x04\x04\x02\x02\0\
|
|
|
- \x12\x03\x0f\x04\x17\n\x0c\n\x05\x04\x02\x02\0\x05\x12\x03\x0f\x04\n\n\
|
|
|
- \x0c\n\x05\x04\x02\x02\0\x01\x12\x03\x0f\x0b\x12\n\x0c\n\x05\x04\x02\x02\
|
|
|
- \0\x03\x12\x03\x0f\x15\x16\n\x0b\n\x04\x04\x02\x02\x01\x12\x03\x10\x04\
|
|
|
- \x16\n\x0c\n\x05\x04\x02\x02\x01\x05\x12\x03\x10\x04\n\n\x0c\n\x05\x04\
|
|
|
- \x02\x02\x01\x01\x12\x03\x10\x0b\x11\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\
|
|
|
- \x03\x10\x14\x15\n\x0b\n\x04\x04\x02\x02\x02\x12\x03\x11\x04\x1c\n\x0c\n\
|
|
|
- \x05\x04\x02\x02\x02\x05\x12\x03\x11\x04\t\n\x0c\n\x05\x04\x02\x02\x02\
|
|
|
- \x01\x12\x03\x11\n\x17\n\x0c\n\x05\x04\x02\x02\x02\x03\x12\x03\x11\x1a\
|
|
|
- \x1b\n\n\n\x02\x05\0\x12\x04\x13\0\x16\x01\n\n\n\x03\x05\0\x01\x12\x03\
|
|
|
- \x13\x05\x1d\n\x0b\n\x04\x05\0\x02\0\x12\x03\x14\x04\x16\n\x0c\n\x05\x05\
|
|
|
- \0\x02\0\x01\x12\x03\x14\x04\x11\n\x0c\n\x05\x05\0\x02\0\x02\x12\x03\x14\
|
|
|
- \x14\x15\n\x0b\n\x04\x05\0\x02\x01\x12\x03\x15\x04\x13\n\x0c\n\x05\x05\0\
|
|
|
- \x02\x01\x01\x12\x03\x15\x04\x0e\n\x0c\n\x05\x05\0\x02\x01\x02\x12\x03\
|
|
|
- \x15\x11\x12\n\n\n\x02\x05\x01\x12\x04\x17\0\x1c\x01\n\n\n\x03\x05\x01\
|
|
|
- \x01\x12\x03\x17\x05\x1d\n\x0b\n\x04\x05\x01\x02\0\x12\x03\x18\x04\x12\n\
|
|
|
- \x0c\n\x05\x05\x01\x02\0\x01\x12\x03\x18\x04\r\n\x0c\n\x05\x05\x01\x02\0\
|
|
|
- \x02\x12\x03\x18\x10\x11\n\x0b\n\x04\x05\x01\x02\x01\x12\x03\x19\x04\x16\
|
|
|
- \n\x0c\n\x05\x05\x01\x02\x01\x01\x12\x03\x19\x04\x11\n\x0c\n\x05\x05\x01\
|
|
|
- \x02\x01\x02\x12\x03\x19\x14\x15\n\x0b\n\x04\x05\x01\x02\x02\x12\x03\x1a\
|
|
|
- \x04\x16\n\x0c\n\x05\x05\x01\x02\x02\x01\x12\x03\x1a\x04\x11\n\x0c\n\x05\
|
|
|
- \x05\x01\x02\x02\x02\x12\x03\x1a\x14\x15\n\x0b\n\x04\x05\x01\x02\x03\x12\
|
|
|
- \x03\x1b\x04\x14\n\x0c\n\x05\x05\x01\x02\x03\x01\x12\x03\x1b\x04\x0f\n\
|
|
|
- \x0c\n\x05\x05\x01\x02\x03\x02\x12\x03\x1b\x12\x13b\x06proto3\
|
|
|
+ \n\x08ws.proto\x1a\x0erevision.proto\"\xa8\x01\n\x14ClientRevisionWSData\
|
|
|
+ \x12\x1b\n\tobject_id\x18\x01\x20\x01(\tR\x08objectId\x12)\n\x02ty\x18\
|
|
|
+ \x02\x20\x01(\x0e2\x19.ClientRevisionWSDataTypeR\x02ty\x12/\n\trevisions\
|
|
|
+ \x18\x03\x20\x01(\x0b2\x11.RepeatedRevisionR\trevisions\x12\x17\n\x07dat\
|
|
|
+ a_id\x18\x04\x20\x01(\tR\x06dataId\"r\n\x14ServerRevisionWSData\x12\x1b\
|
|
|
+ \n\tobject_id\x18\x01\x20\x01(\tR\x08objectId\x12)\n\x02ty\x18\x02\x20\
|
|
|
+ \x01(\x0e2\x19.ServerRevisionWSDataTypeR\x02ty\x12\x12\n\x04data\x18\x03\
|
|
|
+ \x20\x01(\x0cR\x04data\"f\n\x0fNewDocumentUser\x12\x17\n\x07user_id\x18\
|
|
|
+ \x01\x20\x01(\tR\x06userId\x12\x15\n\x06doc_id\x18\x02\x20\x01(\tR\x05do\
|
|
|
+ cId\x12#\n\rrevision_data\x18\x03\x20\x01(\x0cR\x0crevisionData*=\n\x18C\
|
|
|
+ lientRevisionWSDataType\x12\x11\n\rClientPushRev\x10\0\x12\x0e\n\nClient\
|
|
|
+ Ping\x10\x01*`\n\x18ServerRevisionWSDataType\x12\r\n\tServerAck\x10\0\
|
|
|
+ \x12\x11\n\rServerPushRev\x10\x01\x12\x11\n\rServerPullRev\x10\x02\x12\
|
|
|
+ \x0f\n\x0bUserConnect\x10\x03J\xb1\x07\n\x06\x12\x04\0\0\x1c\x01\n\x08\n\
|
|
|
+ \x01\x0c\x12\x03\0\0\x12\n\t\n\x02\x03\0\x12\x03\x01\0\x18\n\n\n\x02\x04\
|
|
|
+ \0\x12\x04\x03\0\x08\x01\n\n\n\x03\x04\0\x01\x12\x03\x03\x08\x1c\n\x0b\n\
|
|
|
+ \x04\x04\0\x02\0\x12\x03\x04\x04\x19\n\x0c\n\x05\x04\0\x02\0\x05\x12\x03\
|
|
|
+ \x04\x04\n\n\x0c\n\x05\x04\0\x02\0\x01\x12\x03\x04\x0b\x14\n\x0c\n\x05\
|
|
|
+ \x04\0\x02\0\x03\x12\x03\x04\x17\x18\n\x0b\n\x04\x04\0\x02\x01\x12\x03\
|
|
|
+ \x05\x04$\n\x0c\n\x05\x04\0\x02\x01\x06\x12\x03\x05\x04\x1c\n\x0c\n\x05\
|
|
|
+ \x04\0\x02\x01\x01\x12\x03\x05\x1d\x1f\n\x0c\n\x05\x04\0\x02\x01\x03\x12\
|
|
|
+ \x03\x05\"#\n\x0b\n\x04\x04\0\x02\x02\x12\x03\x06\x04#\n\x0c\n\x05\x04\0\
|
|
|
+ \x02\x02\x06\x12\x03\x06\x04\x14\n\x0c\n\x05\x04\0\x02\x02\x01\x12\x03\
|
|
|
+ \x06\x15\x1e\n\x0c\n\x05\x04\0\x02\x02\x03\x12\x03\x06!\"\n\x0b\n\x04\
|
|
|
+ \x04\0\x02\x03\x12\x03\x07\x04\x17\n\x0c\n\x05\x04\0\x02\x03\x05\x12\x03\
|
|
|
+ \x07\x04\n\n\x0c\n\x05\x04\0\x02\x03\x01\x12\x03\x07\x0b\x12\n\x0c\n\x05\
|
|
|
+ \x04\0\x02\x03\x03\x12\x03\x07\x15\x16\n\n\n\x02\x04\x01\x12\x04\t\0\r\
|
|
|
+ \x01\n\n\n\x03\x04\x01\x01\x12\x03\t\x08\x1c\n\x0b\n\x04\x04\x01\x02\0\
|
|
|
+ \x12\x03\n\x04\x19\n\x0c\n\x05\x04\x01\x02\0\x05\x12\x03\n\x04\n\n\x0c\n\
|
|
|
+ \x05\x04\x01\x02\0\x01\x12\x03\n\x0b\x14\n\x0c\n\x05\x04\x01\x02\0\x03\
|
|
|
+ \x12\x03\n\x17\x18\n\x0b\n\x04\x04\x01\x02\x01\x12\x03\x0b\x04$\n\x0c\n\
|
|
|
+ \x05\x04\x01\x02\x01\x06\x12\x03\x0b\x04\x1c\n\x0c\n\x05\x04\x01\x02\x01\
|
|
|
+ \x01\x12\x03\x0b\x1d\x1f\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03\x0b\"#\
|
|
|
+ \n\x0b\n\x04\x04\x01\x02\x02\x12\x03\x0c\x04\x13\n\x0c\n\x05\x04\x01\x02\
|
|
|
+ \x02\x05\x12\x03\x0c\x04\t\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03\x0c\n\
|
|
|
+ \x0e\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03\x0c\x11\x12\n\n\n\x02\x04\
|
|
|
+ \x02\x12\x04\x0e\0\x12\x01\n\n\n\x03\x04\x02\x01\x12\x03\x0e\x08\x17\n\
|
|
|
+ \x0b\n\x04\x04\x02\x02\0\x12\x03\x0f\x04\x17\n\x0c\n\x05\x04\x02\x02\0\
|
|
|
+ \x05\x12\x03\x0f\x04\n\n\x0c\n\x05\x04\x02\x02\0\x01\x12\x03\x0f\x0b\x12\
|
|
|
+ \n\x0c\n\x05\x04\x02\x02\0\x03\x12\x03\x0f\x15\x16\n\x0b\n\x04\x04\x02\
|
|
|
+ \x02\x01\x12\x03\x10\x04\x16\n\x0c\n\x05\x04\x02\x02\x01\x05\x12\x03\x10\
|
|
|
+ \x04\n\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\x03\x10\x0b\x11\n\x0c\n\x05\
|
|
|
+ \x04\x02\x02\x01\x03\x12\x03\x10\x14\x15\n\x0b\n\x04\x04\x02\x02\x02\x12\
|
|
|
+ \x03\x11\x04\x1c\n\x0c\n\x05\x04\x02\x02\x02\x05\x12\x03\x11\x04\t\n\x0c\
|
|
|
+ \n\x05\x04\x02\x02\x02\x01\x12\x03\x11\n\x17\n\x0c\n\x05\x04\x02\x02\x02\
|
|
|
+ \x03\x12\x03\x11\x1a\x1b\n\n\n\x02\x05\0\x12\x04\x13\0\x16\x01\n\n\n\x03\
|
|
|
+ \x05\0\x01\x12\x03\x13\x05\x1d\n\x0b\n\x04\x05\0\x02\0\x12\x03\x14\x04\
|
|
|
+ \x16\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\x14\x04\x11\n\x0c\n\x05\x05\0\
|
|
|
+ \x02\0\x02\x12\x03\x14\x14\x15\n\x0b\n\x04\x05\0\x02\x01\x12\x03\x15\x04\
|
|
|
+ \x13\n\x0c\n\x05\x05\0\x02\x01\x01\x12\x03\x15\x04\x0e\n\x0c\n\x05\x05\0\
|
|
|
+ \x02\x01\x02\x12\x03\x15\x11\x12\n\n\n\x02\x05\x01\x12\x04\x17\0\x1c\x01\
|
|
|
+ \n\n\n\x03\x05\x01\x01\x12\x03\x17\x05\x1d\n\x0b\n\x04\x05\x01\x02\0\x12\
|
|
|
+ \x03\x18\x04\x12\n\x0c\n\x05\x05\x01\x02\0\x01\x12\x03\x18\x04\r\n\x0c\n\
|
|
|
+ \x05\x05\x01\x02\0\x02\x12\x03\x18\x10\x11\n\x0b\n\x04\x05\x01\x02\x01\
|
|
|
+ \x12\x03\x19\x04\x16\n\x0c\n\x05\x05\x01\x02\x01\x01\x12\x03\x19\x04\x11\
|
|
|
+ \n\x0c\n\x05\x05\x01\x02\x01\x02\x12\x03\x19\x14\x15\n\x0b\n\x04\x05\x01\
|
|
|
+ \x02\x02\x12\x03\x1a\x04\x16\n\x0c\n\x05\x05\x01\x02\x02\x01\x12\x03\x1a\
|
|
|
+ \x04\x11\n\x0c\n\x05\x05\x01\x02\x02\x02\x12\x03\x1a\x14\x15\n\x0b\n\x04\
|
|
|
+ \x05\x01\x02\x03\x12\x03\x1b\x04\x14\n\x0c\n\x05\x05\x01\x02\x03\x01\x12\
|
|
|
+ \x03\x1b\x04\x0f\n\x0c\n\x05\x05\x01\x02\x03\x02\x12\x03\x1b\x12\x13b\
|
|
|
+ \x06proto3\
|
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|