mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
2880 lines
96 KiB
Rust
2880 lines
96 KiB
Rust
// 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 `view.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 View {
|
|
// message fields
|
|
pub id: ::std::string::String,
|
|
pub belong_to_id: ::std::string::String,
|
|
pub name: ::std::string::String,
|
|
pub desc: ::std::string::String,
|
|
pub data_type: ViewDataType,
|
|
pub version: i64,
|
|
pub belongings: ::protobuf::SingularPtrField<RepeatedView>,
|
|
pub modified_time: i64,
|
|
pub create_time: i64,
|
|
pub ext_data: ::std::string::String,
|
|
pub thumbnail: ::std::string::String,
|
|
pub plugin_type: i32,
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
}
|
|
|
|
impl<'a> ::std::default::Default for &'a View {
|
|
fn default() -> &'a View {
|
|
<View as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
|
|
impl View {
|
|
pub fn new() -> View {
|
|
::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 belong_to_id = 2;
|
|
|
|
|
|
pub fn get_belong_to_id(&self) -> &str {
|
|
&self.belong_to_id
|
|
}
|
|
pub fn clear_belong_to_id(&mut self) {
|
|
self.belong_to_id.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_belong_to_id(&mut self, v: ::std::string::String) {
|
|
self.belong_to_id = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_belong_to_id(&mut self) -> &mut ::std::string::String {
|
|
&mut self.belong_to_id
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_belong_to_id(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.belong_to_id, ::std::string::String::new())
|
|
}
|
|
|
|
// string name = 3;
|
|
|
|
|
|
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())
|
|
}
|
|
|
|
// string desc = 4;
|
|
|
|
|
|
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())
|
|
}
|
|
|
|
// .ViewDataType data_type = 5;
|
|
|
|
|
|
pub fn get_data_type(&self) -> ViewDataType {
|
|
self.data_type
|
|
}
|
|
pub fn clear_data_type(&mut self) {
|
|
self.data_type = ViewDataType::TextBlock;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_data_type(&mut self, v: ViewDataType) {
|
|
self.data_type = v;
|
|
}
|
|
|
|
// int64 version = 6;
|
|
|
|
|
|
pub fn get_version(&self) -> i64 {
|
|
self.version
|
|
}
|
|
pub fn clear_version(&mut self) {
|
|
self.version = 0;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_version(&mut self, v: i64) {
|
|
self.version = v;
|
|
}
|
|
|
|
// .RepeatedView belongings = 7;
|
|
|
|
|
|
pub fn get_belongings(&self) -> &RepeatedView {
|
|
self.belongings.as_ref().unwrap_or_else(|| <RepeatedView as ::protobuf::Message>::default_instance())
|
|
}
|
|
pub fn clear_belongings(&mut self) {
|
|
self.belongings.clear();
|
|
}
|
|
|
|
pub fn has_belongings(&self) -> bool {
|
|
self.belongings.is_some()
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_belongings(&mut self, v: RepeatedView) {
|
|
self.belongings = ::protobuf::SingularPtrField::some(v);
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_belongings(&mut self) -> &mut RepeatedView {
|
|
if self.belongings.is_none() {
|
|
self.belongings.set_default();
|
|
}
|
|
self.belongings.as_mut().unwrap()
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_belongings(&mut self) -> RepeatedView {
|
|
self.belongings.take().unwrap_or_else(|| RepeatedView::new())
|
|
}
|
|
|
|
// int64 modified_time = 8;
|
|
|
|
|
|
pub fn get_modified_time(&self) -> i64 {
|
|
self.modified_time
|
|
}
|
|
pub fn clear_modified_time(&mut self) {
|
|
self.modified_time = 0;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_modified_time(&mut self, v: i64) {
|
|
self.modified_time = v;
|
|
}
|
|
|
|
// int64 create_time = 9;
|
|
|
|
|
|
pub fn get_create_time(&self) -> i64 {
|
|
self.create_time
|
|
}
|
|
pub fn clear_create_time(&mut self) {
|
|
self.create_time = 0;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_create_time(&mut self, v: i64) {
|
|
self.create_time = v;
|
|
}
|
|
|
|
// string ext_data = 10;
|
|
|
|
|
|
pub fn get_ext_data(&self) -> &str {
|
|
&self.ext_data
|
|
}
|
|
pub fn clear_ext_data(&mut self) {
|
|
self.ext_data.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_ext_data(&mut self, v: ::std::string::String) {
|
|
self.ext_data = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_ext_data(&mut self) -> &mut ::std::string::String {
|
|
&mut self.ext_data
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_ext_data(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.ext_data, ::std::string::String::new())
|
|
}
|
|
|
|
// string thumbnail = 11;
|
|
|
|
|
|
pub fn get_thumbnail(&self) -> &str {
|
|
&self.thumbnail
|
|
}
|
|
pub fn clear_thumbnail(&mut self) {
|
|
self.thumbnail.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_thumbnail(&mut self, v: ::std::string::String) {
|
|
self.thumbnail = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_thumbnail(&mut self) -> &mut ::std::string::String {
|
|
&mut self.thumbnail
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_thumbnail(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.thumbnail, ::std::string::String::new())
|
|
}
|
|
|
|
// int32 plugin_type = 12;
|
|
|
|
|
|
pub fn get_plugin_type(&self) -> i32 {
|
|
self.plugin_type
|
|
}
|
|
pub fn clear_plugin_type(&mut self) {
|
|
self.plugin_type = 0;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_plugin_type(&mut self, v: i32) {
|
|
self.plugin_type = v;
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Message for View {
|
|
fn is_initialized(&self) -> bool {
|
|
for v in &self.belongings {
|
|
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_singular_proto3_string_into(wire_type, is, &mut self.belong_to_id)?;
|
|
},
|
|
3 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.name)?;
|
|
},
|
|
4 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.desc)?;
|
|
},
|
|
5 => {
|
|
::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.data_type, 5, &mut self.unknown_fields)?
|
|
},
|
|
6 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
let tmp = is.read_int64()?;
|
|
self.version = tmp;
|
|
},
|
|
7 => {
|
|
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.belongings)?;
|
|
},
|
|
8 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
let tmp = is.read_int64()?;
|
|
self.modified_time = tmp;
|
|
},
|
|
9 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
let tmp = is.read_int64()?;
|
|
self.create_time = tmp;
|
|
},
|
|
10 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.ext_data)?;
|
|
},
|
|
11 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.thumbnail)?;
|
|
},
|
|
12 => {
|
|
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.plugin_type = 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);
|
|
}
|
|
if !self.belong_to_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(2, &self.belong_to_id);
|
|
}
|
|
if !self.name.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(3, &self.name);
|
|
}
|
|
if !self.desc.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(4, &self.desc);
|
|
}
|
|
if self.data_type != ViewDataType::TextBlock {
|
|
my_size += ::protobuf::rt::enum_size(5, self.data_type);
|
|
}
|
|
if self.version != 0 {
|
|
my_size += ::protobuf::rt::value_size(6, self.version, ::protobuf::wire_format::WireTypeVarint);
|
|
}
|
|
if let Some(ref v) = self.belongings.as_ref() {
|
|
let len = v.compute_size();
|
|
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
|
|
}
|
|
if self.modified_time != 0 {
|
|
my_size += ::protobuf::rt::value_size(8, self.modified_time, ::protobuf::wire_format::WireTypeVarint);
|
|
}
|
|
if self.create_time != 0 {
|
|
my_size += ::protobuf::rt::value_size(9, self.create_time, ::protobuf::wire_format::WireTypeVarint);
|
|
}
|
|
if !self.ext_data.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(10, &self.ext_data);
|
|
}
|
|
if !self.thumbnail.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(11, &self.thumbnail);
|
|
}
|
|
if self.plugin_type != 0 {
|
|
my_size += ::protobuf::rt::value_size(12, self.plugin_type, ::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)?;
|
|
}
|
|
if !self.belong_to_id.is_empty() {
|
|
os.write_string(2, &self.belong_to_id)?;
|
|
}
|
|
if !self.name.is_empty() {
|
|
os.write_string(3, &self.name)?;
|
|
}
|
|
if !self.desc.is_empty() {
|
|
os.write_string(4, &self.desc)?;
|
|
}
|
|
if self.data_type != ViewDataType::TextBlock {
|
|
os.write_enum(5, ::protobuf::ProtobufEnum::value(&self.data_type))?;
|
|
}
|
|
if self.version != 0 {
|
|
os.write_int64(6, self.version)?;
|
|
}
|
|
if let Some(ref v) = self.belongings.as_ref() {
|
|
os.write_tag(7, ::protobuf::wire_format::WireTypeLengthDelimited)?;
|
|
os.write_raw_varint32(v.get_cached_size())?;
|
|
v.write_to_with_cached_sizes(os)?;
|
|
}
|
|
if self.modified_time != 0 {
|
|
os.write_int64(8, self.modified_time)?;
|
|
}
|
|
if self.create_time != 0 {
|
|
os.write_int64(9, self.create_time)?;
|
|
}
|
|
if !self.ext_data.is_empty() {
|
|
os.write_string(10, &self.ext_data)?;
|
|
}
|
|
if !self.thumbnail.is_empty() {
|
|
os.write_string(11, &self.thumbnail)?;
|
|
}
|
|
if self.plugin_type != 0 {
|
|
os.write_int32(12, self.plugin_type)?;
|
|
}
|
|
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() -> View {
|
|
View::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: &View| { &m.id },
|
|
|m: &mut View| { &mut m.id },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"belong_to_id",
|
|
|m: &View| { &m.belong_to_id },
|
|
|m: &mut View| { &mut m.belong_to_id },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"name",
|
|
|m: &View| { &m.name },
|
|
|m: &mut View| { &mut m.name },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"desc",
|
|
|m: &View| { &m.desc },
|
|
|m: &mut View| { &mut m.desc },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<ViewDataType>>(
|
|
"data_type",
|
|
|m: &View| { &m.data_type },
|
|
|m: &mut View| { &mut m.data_type },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt64>(
|
|
"version",
|
|
|m: &View| { &m.version },
|
|
|m: &mut View| { &mut m.version },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<RepeatedView>>(
|
|
"belongings",
|
|
|m: &View| { &m.belongings },
|
|
|m: &mut View| { &mut m.belongings },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt64>(
|
|
"modified_time",
|
|
|m: &View| { &m.modified_time },
|
|
|m: &mut View| { &mut m.modified_time },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt64>(
|
|
"create_time",
|
|
|m: &View| { &m.create_time },
|
|
|m: &mut View| { &mut m.create_time },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"ext_data",
|
|
|m: &View| { &m.ext_data },
|
|
|m: &mut View| { &mut m.ext_data },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"thumbnail",
|
|
|m: &View| { &m.thumbnail },
|
|
|m: &mut View| { &mut m.thumbnail },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt32>(
|
|
"plugin_type",
|
|
|m: &View| { &m.plugin_type },
|
|
|m: &mut View| { &mut m.plugin_type },
|
|
));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<View>(
|
|
"View",
|
|
fields,
|
|
file_descriptor_proto()
|
|
)
|
|
})
|
|
}
|
|
|
|
fn default_instance() -> &'static View {
|
|
static instance: ::protobuf::rt::LazyV2<View> = ::protobuf::rt::LazyV2::INIT;
|
|
instance.get(View::new)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Clear for View {
|
|
fn clear(&mut self) {
|
|
self.id.clear();
|
|
self.belong_to_id.clear();
|
|
self.name.clear();
|
|
self.desc.clear();
|
|
self.data_type = ViewDataType::TextBlock;
|
|
self.version = 0;
|
|
self.belongings.clear();
|
|
self.modified_time = 0;
|
|
self.create_time = 0;
|
|
self.ext_data.clear();
|
|
self.thumbnail.clear();
|
|
self.plugin_type = 0;
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
|
|
impl ::std::fmt::Debug for View {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for View {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct RepeatedView {
|
|
// message fields
|
|
pub items: ::protobuf::RepeatedField<View>,
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
}
|
|
|
|
impl<'a> ::std::default::Default for &'a RepeatedView {
|
|
fn default() -> &'a RepeatedView {
|
|
<RepeatedView as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
|
|
impl RepeatedView {
|
|
pub fn new() -> RepeatedView {
|
|
::std::default::Default::default()
|
|
}
|
|
|
|
// repeated .View items = 1;
|
|
|
|
|
|
pub fn get_items(&self) -> &[View] {
|
|
&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<View>) {
|
|
self.items = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_items(&mut self) -> &mut ::protobuf::RepeatedField<View> {
|
|
&mut self.items
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_items(&mut self) -> ::protobuf::RepeatedField<View> {
|
|
::std::mem::replace(&mut self.items, ::protobuf::RepeatedField::new())
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Message for RepeatedView {
|
|
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() -> RepeatedView {
|
|
RepeatedView::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<View>>(
|
|
"items",
|
|
|m: &RepeatedView| { &m.items },
|
|
|m: &mut RepeatedView| { &mut m.items },
|
|
));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<RepeatedView>(
|
|
"RepeatedView",
|
|
fields,
|
|
file_descriptor_proto()
|
|
)
|
|
})
|
|
}
|
|
|
|
fn default_instance() -> &'static RepeatedView {
|
|
static instance: ::protobuf::rt::LazyV2<RepeatedView> = ::protobuf::rt::LazyV2::INIT;
|
|
instance.get(RepeatedView::new)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Clear for RepeatedView {
|
|
fn clear(&mut self) {
|
|
self.items.clear();
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
|
|
impl ::std::fmt::Debug for RepeatedView {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for RepeatedView {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct CreateViewPayload {
|
|
// message fields
|
|
pub belong_to_id: ::std::string::String,
|
|
pub name: ::std::string::String,
|
|
pub desc: ::std::string::String,
|
|
pub data_type: ViewDataType,
|
|
pub plugin_type: i32,
|
|
pub data: ::std::vec::Vec<u8>,
|
|
// message oneof groups
|
|
pub one_of_thumbnail: ::std::option::Option<CreateViewPayload_oneof_one_of_thumbnail>,
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
}
|
|
|
|
impl<'a> ::std::default::Default for &'a CreateViewPayload {
|
|
fn default() -> &'a CreateViewPayload {
|
|
<CreateViewPayload as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
|
|
#[derive(Clone,PartialEq,Debug)]
|
|
pub enum CreateViewPayload_oneof_one_of_thumbnail {
|
|
thumbnail(::std::string::String),
|
|
}
|
|
|
|
impl CreateViewPayload {
|
|
pub fn new() -> CreateViewPayload {
|
|
::std::default::Default::default()
|
|
}
|
|
|
|
// string belong_to_id = 1;
|
|
|
|
|
|
pub fn get_belong_to_id(&self) -> &str {
|
|
&self.belong_to_id
|
|
}
|
|
pub fn clear_belong_to_id(&mut self) {
|
|
self.belong_to_id.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_belong_to_id(&mut self, v: ::std::string::String) {
|
|
self.belong_to_id = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_belong_to_id(&mut self) -> &mut ::std::string::String {
|
|
&mut self.belong_to_id
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_belong_to_id(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.belong_to_id, ::std::string::String::new())
|
|
}
|
|
|
|
// string name = 2;
|
|
|
|
|
|
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())
|
|
}
|
|
|
|
// 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())
|
|
}
|
|
|
|
// string thumbnail = 4;
|
|
|
|
|
|
pub fn get_thumbnail(&self) -> &str {
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(CreateViewPayload_oneof_one_of_thumbnail::thumbnail(ref v)) => v,
|
|
_ => "",
|
|
}
|
|
}
|
|
pub fn clear_thumbnail(&mut self) {
|
|
self.one_of_thumbnail = ::std::option::Option::None;
|
|
}
|
|
|
|
pub fn has_thumbnail(&self) -> bool {
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(CreateViewPayload_oneof_one_of_thumbnail::thumbnail(..)) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_thumbnail(&mut self, v: ::std::string::String) {
|
|
self.one_of_thumbnail = ::std::option::Option::Some(CreateViewPayload_oneof_one_of_thumbnail::thumbnail(v))
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_thumbnail(&mut self) -> &mut ::std::string::String {
|
|
if let ::std::option::Option::Some(CreateViewPayload_oneof_one_of_thumbnail::thumbnail(_)) = self.one_of_thumbnail {
|
|
} else {
|
|
self.one_of_thumbnail = ::std::option::Option::Some(CreateViewPayload_oneof_one_of_thumbnail::thumbnail(::std::string::String::new()));
|
|
}
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(CreateViewPayload_oneof_one_of_thumbnail::thumbnail(ref mut v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_thumbnail(&mut self) -> ::std::string::String {
|
|
if self.has_thumbnail() {
|
|
match self.one_of_thumbnail.take() {
|
|
::std::option::Option::Some(CreateViewPayload_oneof_one_of_thumbnail::thumbnail(v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
} else {
|
|
::std::string::String::new()
|
|
}
|
|
}
|
|
|
|
// .ViewDataType data_type = 5;
|
|
|
|
|
|
pub fn get_data_type(&self) -> ViewDataType {
|
|
self.data_type
|
|
}
|
|
pub fn clear_data_type(&mut self) {
|
|
self.data_type = ViewDataType::TextBlock;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_data_type(&mut self, v: ViewDataType) {
|
|
self.data_type = v;
|
|
}
|
|
|
|
// int32 plugin_type = 6;
|
|
|
|
|
|
pub fn get_plugin_type(&self) -> i32 {
|
|
self.plugin_type
|
|
}
|
|
pub fn clear_plugin_type(&mut self) {
|
|
self.plugin_type = 0;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_plugin_type(&mut self, v: i32) {
|
|
self.plugin_type = v;
|
|
}
|
|
|
|
// bytes data = 7;
|
|
|
|
|
|
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 CreateViewPayload {
|
|
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.belong_to_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)?;
|
|
},
|
|
4 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
self.one_of_thumbnail = ::std::option::Option::Some(CreateViewPayload_oneof_one_of_thumbnail::thumbnail(is.read_string()?));
|
|
},
|
|
5 => {
|
|
::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.data_type, 5, &mut self.unknown_fields)?
|
|
},
|
|
6 => {
|
|
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.plugin_type = tmp;
|
|
},
|
|
7 => {
|
|
::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.belong_to_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(1, &self.belong_to_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);
|
|
}
|
|
if self.data_type != ViewDataType::TextBlock {
|
|
my_size += ::protobuf::rt::enum_size(5, self.data_type);
|
|
}
|
|
if self.plugin_type != 0 {
|
|
my_size += ::protobuf::rt::value_size(6, self.plugin_type, ::protobuf::wire_format::WireTypeVarint);
|
|
}
|
|
if !self.data.is_empty() {
|
|
my_size += ::protobuf::rt::bytes_size(7, &self.data);
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_thumbnail {
|
|
match v {
|
|
&CreateViewPayload_oneof_one_of_thumbnail::thumbnail(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.belong_to_id.is_empty() {
|
|
os.write_string(1, &self.belong_to_id)?;
|
|
}
|
|
if !self.name.is_empty() {
|
|
os.write_string(2, &self.name)?;
|
|
}
|
|
if !self.desc.is_empty() {
|
|
os.write_string(3, &self.desc)?;
|
|
}
|
|
if self.data_type != ViewDataType::TextBlock {
|
|
os.write_enum(5, ::protobuf::ProtobufEnum::value(&self.data_type))?;
|
|
}
|
|
if self.plugin_type != 0 {
|
|
os.write_int32(6, self.plugin_type)?;
|
|
}
|
|
if !self.data.is_empty() {
|
|
os.write_bytes(7, &self.data)?;
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_thumbnail {
|
|
match v {
|
|
&CreateViewPayload_oneof_one_of_thumbnail::thumbnail(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() -> CreateViewPayload {
|
|
CreateViewPayload::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>(
|
|
"belong_to_id",
|
|
|m: &CreateViewPayload| { &m.belong_to_id },
|
|
|m: &mut CreateViewPayload| { &mut m.belong_to_id },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"name",
|
|
|m: &CreateViewPayload| { &m.name },
|
|
|m: &mut CreateViewPayload| { &mut m.name },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"desc",
|
|
|m: &CreateViewPayload| { &m.desc },
|
|
|m: &mut CreateViewPayload| { &mut m.desc },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
"thumbnail",
|
|
CreateViewPayload::has_thumbnail,
|
|
CreateViewPayload::get_thumbnail,
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<ViewDataType>>(
|
|
"data_type",
|
|
|m: &CreateViewPayload| { &m.data_type },
|
|
|m: &mut CreateViewPayload| { &mut m.data_type },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt32>(
|
|
"plugin_type",
|
|
|m: &CreateViewPayload| { &m.plugin_type },
|
|
|m: &mut CreateViewPayload| { &mut m.plugin_type },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>(
|
|
"data",
|
|
|m: &CreateViewPayload| { &m.data },
|
|
|m: &mut CreateViewPayload| { &mut m.data },
|
|
));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<CreateViewPayload>(
|
|
"CreateViewPayload",
|
|
fields,
|
|
file_descriptor_proto()
|
|
)
|
|
})
|
|
}
|
|
|
|
fn default_instance() -> &'static CreateViewPayload {
|
|
static instance: ::protobuf::rt::LazyV2<CreateViewPayload> = ::protobuf::rt::LazyV2::INIT;
|
|
instance.get(CreateViewPayload::new)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Clear for CreateViewPayload {
|
|
fn clear(&mut self) {
|
|
self.belong_to_id.clear();
|
|
self.name.clear();
|
|
self.desc.clear();
|
|
self.one_of_thumbnail = ::std::option::Option::None;
|
|
self.data_type = ViewDataType::TextBlock;
|
|
self.plugin_type = 0;
|
|
self.data.clear();
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
|
|
impl ::std::fmt::Debug for CreateViewPayload {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for CreateViewPayload {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct CreateViewParams {
|
|
// message fields
|
|
pub belong_to_id: ::std::string::String,
|
|
pub name: ::std::string::String,
|
|
pub desc: ::std::string::String,
|
|
pub thumbnail: ::std::string::String,
|
|
pub data_type: ViewDataType,
|
|
pub view_id: ::std::string::String,
|
|
pub data: ::std::vec::Vec<u8>,
|
|
pub plugin_type: i32,
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
}
|
|
|
|
impl<'a> ::std::default::Default for &'a CreateViewParams {
|
|
fn default() -> &'a CreateViewParams {
|
|
<CreateViewParams as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
|
|
impl CreateViewParams {
|
|
pub fn new() -> CreateViewParams {
|
|
::std::default::Default::default()
|
|
}
|
|
|
|
// string belong_to_id = 1;
|
|
|
|
|
|
pub fn get_belong_to_id(&self) -> &str {
|
|
&self.belong_to_id
|
|
}
|
|
pub fn clear_belong_to_id(&mut self) {
|
|
self.belong_to_id.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_belong_to_id(&mut self, v: ::std::string::String) {
|
|
self.belong_to_id = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_belong_to_id(&mut self) -> &mut ::std::string::String {
|
|
&mut self.belong_to_id
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_belong_to_id(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.belong_to_id, ::std::string::String::new())
|
|
}
|
|
|
|
// string name = 2;
|
|
|
|
|
|
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())
|
|
}
|
|
|
|
// 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())
|
|
}
|
|
|
|
// string thumbnail = 4;
|
|
|
|
|
|
pub fn get_thumbnail(&self) -> &str {
|
|
&self.thumbnail
|
|
}
|
|
pub fn clear_thumbnail(&mut self) {
|
|
self.thumbnail.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_thumbnail(&mut self, v: ::std::string::String) {
|
|
self.thumbnail = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_thumbnail(&mut self) -> &mut ::std::string::String {
|
|
&mut self.thumbnail
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_thumbnail(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.thumbnail, ::std::string::String::new())
|
|
}
|
|
|
|
// .ViewDataType data_type = 5;
|
|
|
|
|
|
pub fn get_data_type(&self) -> ViewDataType {
|
|
self.data_type
|
|
}
|
|
pub fn clear_data_type(&mut self) {
|
|
self.data_type = ViewDataType::TextBlock;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_data_type(&mut self, v: ViewDataType) {
|
|
self.data_type = v;
|
|
}
|
|
|
|
// string view_id = 6;
|
|
|
|
|
|
pub fn get_view_id(&self) -> &str {
|
|
&self.view_id
|
|
}
|
|
pub fn clear_view_id(&mut self) {
|
|
self.view_id.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_view_id(&mut self, v: ::std::string::String) {
|
|
self.view_id = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_view_id(&mut self) -> &mut ::std::string::String {
|
|
&mut self.view_id
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_view_id(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.view_id, ::std::string::String::new())
|
|
}
|
|
|
|
// bytes data = 7;
|
|
|
|
|
|
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())
|
|
}
|
|
|
|
// int32 plugin_type = 8;
|
|
|
|
|
|
pub fn get_plugin_type(&self) -> i32 {
|
|
self.plugin_type
|
|
}
|
|
pub fn clear_plugin_type(&mut self) {
|
|
self.plugin_type = 0;
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_plugin_type(&mut self, v: i32) {
|
|
self.plugin_type = v;
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Message for CreateViewParams {
|
|
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.belong_to_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)?;
|
|
},
|
|
4 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.thumbnail)?;
|
|
},
|
|
5 => {
|
|
::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.data_type, 5, &mut self.unknown_fields)?
|
|
},
|
|
6 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.view_id)?;
|
|
},
|
|
7 => {
|
|
::protobuf::rt::read_singular_proto3_bytes_into(wire_type, is, &mut self.data)?;
|
|
},
|
|
8 => {
|
|
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.plugin_type = 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.belong_to_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(1, &self.belong_to_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);
|
|
}
|
|
if !self.thumbnail.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(4, &self.thumbnail);
|
|
}
|
|
if self.data_type != ViewDataType::TextBlock {
|
|
my_size += ::protobuf::rt::enum_size(5, self.data_type);
|
|
}
|
|
if !self.view_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(6, &self.view_id);
|
|
}
|
|
if !self.data.is_empty() {
|
|
my_size += ::protobuf::rt::bytes_size(7, &self.data);
|
|
}
|
|
if self.plugin_type != 0 {
|
|
my_size += ::protobuf::rt::value_size(8, self.plugin_type, ::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.belong_to_id.is_empty() {
|
|
os.write_string(1, &self.belong_to_id)?;
|
|
}
|
|
if !self.name.is_empty() {
|
|
os.write_string(2, &self.name)?;
|
|
}
|
|
if !self.desc.is_empty() {
|
|
os.write_string(3, &self.desc)?;
|
|
}
|
|
if !self.thumbnail.is_empty() {
|
|
os.write_string(4, &self.thumbnail)?;
|
|
}
|
|
if self.data_type != ViewDataType::TextBlock {
|
|
os.write_enum(5, ::protobuf::ProtobufEnum::value(&self.data_type))?;
|
|
}
|
|
if !self.view_id.is_empty() {
|
|
os.write_string(6, &self.view_id)?;
|
|
}
|
|
if !self.data.is_empty() {
|
|
os.write_bytes(7, &self.data)?;
|
|
}
|
|
if self.plugin_type != 0 {
|
|
os.write_int32(8, self.plugin_type)?;
|
|
}
|
|
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() -> CreateViewParams {
|
|
CreateViewParams::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>(
|
|
"belong_to_id",
|
|
|m: &CreateViewParams| { &m.belong_to_id },
|
|
|m: &mut CreateViewParams| { &mut m.belong_to_id },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"name",
|
|
|m: &CreateViewParams| { &m.name },
|
|
|m: &mut CreateViewParams| { &mut m.name },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"desc",
|
|
|m: &CreateViewParams| { &m.desc },
|
|
|m: &mut CreateViewParams| { &mut m.desc },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"thumbnail",
|
|
|m: &CreateViewParams| { &m.thumbnail },
|
|
|m: &mut CreateViewParams| { &mut m.thumbnail },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<ViewDataType>>(
|
|
"data_type",
|
|
|m: &CreateViewParams| { &m.data_type },
|
|
|m: &mut CreateViewParams| { &mut m.data_type },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"view_id",
|
|
|m: &CreateViewParams| { &m.view_id },
|
|
|m: &mut CreateViewParams| { &mut m.view_id },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>(
|
|
"data",
|
|
|m: &CreateViewParams| { &m.data },
|
|
|m: &mut CreateViewParams| { &mut m.data },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt32>(
|
|
"plugin_type",
|
|
|m: &CreateViewParams| { &m.plugin_type },
|
|
|m: &mut CreateViewParams| { &mut m.plugin_type },
|
|
));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<CreateViewParams>(
|
|
"CreateViewParams",
|
|
fields,
|
|
file_descriptor_proto()
|
|
)
|
|
})
|
|
}
|
|
|
|
fn default_instance() -> &'static CreateViewParams {
|
|
static instance: ::protobuf::rt::LazyV2<CreateViewParams> = ::protobuf::rt::LazyV2::INIT;
|
|
instance.get(CreateViewParams::new)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Clear for CreateViewParams {
|
|
fn clear(&mut self) {
|
|
self.belong_to_id.clear();
|
|
self.name.clear();
|
|
self.desc.clear();
|
|
self.thumbnail.clear();
|
|
self.data_type = ViewDataType::TextBlock;
|
|
self.view_id.clear();
|
|
self.data.clear();
|
|
self.plugin_type = 0;
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
|
|
impl ::std::fmt::Debug for CreateViewParams {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for CreateViewParams {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct ViewId {
|
|
// 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 ViewId {
|
|
fn default() -> &'a ViewId {
|
|
<ViewId as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
|
|
impl ViewId {
|
|
pub fn new() -> ViewId {
|
|
::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 ViewId {
|
|
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() -> ViewId {
|
|
ViewId::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: &ViewId| { &m.value },
|
|
|m: &mut ViewId| { &mut m.value },
|
|
));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<ViewId>(
|
|
"ViewId",
|
|
fields,
|
|
file_descriptor_proto()
|
|
)
|
|
})
|
|
}
|
|
|
|
fn default_instance() -> &'static ViewId {
|
|
static instance: ::protobuf::rt::LazyV2<ViewId> = ::protobuf::rt::LazyV2::INIT;
|
|
instance.get(ViewId::new)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Clear for ViewId {
|
|
fn clear(&mut self) {
|
|
self.value.clear();
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
|
|
impl ::std::fmt::Debug for ViewId {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for ViewId {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct RepeatedViewId {
|
|
// message fields
|
|
pub items: ::protobuf::RepeatedField<::std::string::String>,
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
}
|
|
|
|
impl<'a> ::std::default::Default for &'a RepeatedViewId {
|
|
fn default() -> &'a RepeatedViewId {
|
|
<RepeatedViewId as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
|
|
impl RepeatedViewId {
|
|
pub fn new() -> RepeatedViewId {
|
|
::std::default::Default::default()
|
|
}
|
|
|
|
// repeated string items = 1;
|
|
|
|
|
|
pub fn get_items(&self) -> &[::std::string::String] {
|
|
&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<::std::string::String>) {
|
|
self.items = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_items(&mut self) -> &mut ::protobuf::RepeatedField<::std::string::String> {
|
|
&mut self.items
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_items(&mut self) -> ::protobuf::RepeatedField<::std::string::String> {
|
|
::std::mem::replace(&mut self.items, ::protobuf::RepeatedField::new())
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Message for RepeatedViewId {
|
|
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_repeated_string_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 {
|
|
my_size += ::protobuf::rt::string_size(1, &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_string(1, &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() -> RepeatedViewId {
|
|
RepeatedViewId::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::ProtobufTypeString>(
|
|
"items",
|
|
|m: &RepeatedViewId| { &m.items },
|
|
|m: &mut RepeatedViewId| { &mut m.items },
|
|
));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<RepeatedViewId>(
|
|
"RepeatedViewId",
|
|
fields,
|
|
file_descriptor_proto()
|
|
)
|
|
})
|
|
}
|
|
|
|
fn default_instance() -> &'static RepeatedViewId {
|
|
static instance: ::protobuf::rt::LazyV2<RepeatedViewId> = ::protobuf::rt::LazyV2::INIT;
|
|
instance.get(RepeatedViewId::new)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Clear for RepeatedViewId {
|
|
fn clear(&mut self) {
|
|
self.items.clear();
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
|
|
impl ::std::fmt::Debug for RepeatedViewId {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for RepeatedViewId {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct UpdateViewPayload {
|
|
// message fields
|
|
pub view_id: ::std::string::String,
|
|
// message oneof groups
|
|
pub one_of_name: ::std::option::Option<UpdateViewPayload_oneof_one_of_name>,
|
|
pub one_of_desc: ::std::option::Option<UpdateViewPayload_oneof_one_of_desc>,
|
|
pub one_of_thumbnail: ::std::option::Option<UpdateViewPayload_oneof_one_of_thumbnail>,
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
}
|
|
|
|
impl<'a> ::std::default::Default for &'a UpdateViewPayload {
|
|
fn default() -> &'a UpdateViewPayload {
|
|
<UpdateViewPayload as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
|
|
#[derive(Clone,PartialEq,Debug)]
|
|
pub enum UpdateViewPayload_oneof_one_of_name {
|
|
name(::std::string::String),
|
|
}
|
|
|
|
#[derive(Clone,PartialEq,Debug)]
|
|
pub enum UpdateViewPayload_oneof_one_of_desc {
|
|
desc(::std::string::String),
|
|
}
|
|
|
|
#[derive(Clone,PartialEq,Debug)]
|
|
pub enum UpdateViewPayload_oneof_one_of_thumbnail {
|
|
thumbnail(::std::string::String),
|
|
}
|
|
|
|
impl UpdateViewPayload {
|
|
pub fn new() -> UpdateViewPayload {
|
|
::std::default::Default::default()
|
|
}
|
|
|
|
// string view_id = 1;
|
|
|
|
|
|
pub fn get_view_id(&self) -> &str {
|
|
&self.view_id
|
|
}
|
|
pub fn clear_view_id(&mut self) {
|
|
self.view_id.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_view_id(&mut self, v: ::std::string::String) {
|
|
self.view_id = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_view_id(&mut self) -> &mut ::std::string::String {
|
|
&mut self.view_id
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_view_id(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.view_id, ::std::string::String::new())
|
|
}
|
|
|
|
// string name = 2;
|
|
|
|
|
|
pub fn get_name(&self) -> &str {
|
|
match self.one_of_name {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_name::name(ref v)) => v,
|
|
_ => "",
|
|
}
|
|
}
|
|
pub fn clear_name(&mut self) {
|
|
self.one_of_name = ::std::option::Option::None;
|
|
}
|
|
|
|
pub fn has_name(&self) -> bool {
|
|
match self.one_of_name {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_name::name(..)) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_name(&mut self, v: ::std::string::String) {
|
|
self.one_of_name = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_name::name(v))
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_name(&mut self) -> &mut ::std::string::String {
|
|
if let ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_name::name(_)) = self.one_of_name {
|
|
} else {
|
|
self.one_of_name = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_name::name(::std::string::String::new()));
|
|
}
|
|
match self.one_of_name {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_name::name(ref mut v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_name(&mut self) -> ::std::string::String {
|
|
if self.has_name() {
|
|
match self.one_of_name.take() {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_name::name(v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
} else {
|
|
::std::string::String::new()
|
|
}
|
|
}
|
|
|
|
// string desc = 3;
|
|
|
|
|
|
pub fn get_desc(&self) -> &str {
|
|
match self.one_of_desc {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_desc::desc(ref v)) => v,
|
|
_ => "",
|
|
}
|
|
}
|
|
pub fn clear_desc(&mut self) {
|
|
self.one_of_desc = ::std::option::Option::None;
|
|
}
|
|
|
|
pub fn has_desc(&self) -> bool {
|
|
match self.one_of_desc {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_desc::desc(..)) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_desc(&mut self, v: ::std::string::String) {
|
|
self.one_of_desc = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_desc::desc(v))
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_desc(&mut self) -> &mut ::std::string::String {
|
|
if let ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_desc::desc(_)) = self.one_of_desc {
|
|
} else {
|
|
self.one_of_desc = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_desc::desc(::std::string::String::new()));
|
|
}
|
|
match self.one_of_desc {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_desc::desc(ref mut v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_desc(&mut self) -> ::std::string::String {
|
|
if self.has_desc() {
|
|
match self.one_of_desc.take() {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_desc::desc(v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
} else {
|
|
::std::string::String::new()
|
|
}
|
|
}
|
|
|
|
// string thumbnail = 4;
|
|
|
|
|
|
pub fn get_thumbnail(&self) -> &str {
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(ref v)) => v,
|
|
_ => "",
|
|
}
|
|
}
|
|
pub fn clear_thumbnail(&mut self) {
|
|
self.one_of_thumbnail = ::std::option::Option::None;
|
|
}
|
|
|
|
pub fn has_thumbnail(&self) -> bool {
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(..)) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_thumbnail(&mut self, v: ::std::string::String) {
|
|
self.one_of_thumbnail = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(v))
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_thumbnail(&mut self) -> &mut ::std::string::String {
|
|
if let ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(_)) = self.one_of_thumbnail {
|
|
} else {
|
|
self.one_of_thumbnail = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(::std::string::String::new()));
|
|
}
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(ref mut v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_thumbnail(&mut self) -> ::std::string::String {
|
|
if self.has_thumbnail() {
|
|
match self.one_of_thumbnail.take() {
|
|
::std::option::Option::Some(UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
} else {
|
|
::std::string::String::new()
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Message for UpdateViewPayload {
|
|
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.view_id)?;
|
|
},
|
|
2 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
self.one_of_name = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_name::name(is.read_string()?));
|
|
},
|
|
3 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
self.one_of_desc = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_desc::desc(is.read_string()?));
|
|
},
|
|
4 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
self.one_of_thumbnail = ::std::option::Option::Some(UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(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.view_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(1, &self.view_id);
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_name {
|
|
match v {
|
|
&UpdateViewPayload_oneof_one_of_name::name(ref v) => {
|
|
my_size += ::protobuf::rt::string_size(2, &v);
|
|
},
|
|
};
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_desc {
|
|
match v {
|
|
&UpdateViewPayload_oneof_one_of_desc::desc(ref v) => {
|
|
my_size += ::protobuf::rt::string_size(3, &v);
|
|
},
|
|
};
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_thumbnail {
|
|
match v {
|
|
&UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(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.view_id.is_empty() {
|
|
os.write_string(1, &self.view_id)?;
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_name {
|
|
match v {
|
|
&UpdateViewPayload_oneof_one_of_name::name(ref v) => {
|
|
os.write_string(2, v)?;
|
|
},
|
|
};
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_desc {
|
|
match v {
|
|
&UpdateViewPayload_oneof_one_of_desc::desc(ref v) => {
|
|
os.write_string(3, v)?;
|
|
},
|
|
};
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_thumbnail {
|
|
match v {
|
|
&UpdateViewPayload_oneof_one_of_thumbnail::thumbnail(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() -> UpdateViewPayload {
|
|
UpdateViewPayload::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>(
|
|
"view_id",
|
|
|m: &UpdateViewPayload| { &m.view_id },
|
|
|m: &mut UpdateViewPayload| { &mut m.view_id },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
"name",
|
|
UpdateViewPayload::has_name,
|
|
UpdateViewPayload::get_name,
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
"desc",
|
|
UpdateViewPayload::has_desc,
|
|
UpdateViewPayload::get_desc,
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
"thumbnail",
|
|
UpdateViewPayload::has_thumbnail,
|
|
UpdateViewPayload::get_thumbnail,
|
|
));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<UpdateViewPayload>(
|
|
"UpdateViewPayload",
|
|
fields,
|
|
file_descriptor_proto()
|
|
)
|
|
})
|
|
}
|
|
|
|
fn default_instance() -> &'static UpdateViewPayload {
|
|
static instance: ::protobuf::rt::LazyV2<UpdateViewPayload> = ::protobuf::rt::LazyV2::INIT;
|
|
instance.get(UpdateViewPayload::new)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Clear for UpdateViewPayload {
|
|
fn clear(&mut self) {
|
|
self.view_id.clear();
|
|
self.one_of_name = ::std::option::Option::None;
|
|
self.one_of_desc = ::std::option::Option::None;
|
|
self.one_of_thumbnail = ::std::option::Option::None;
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
|
|
impl ::std::fmt::Debug for UpdateViewPayload {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for UpdateViewPayload {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct UpdateViewParams {
|
|
// message fields
|
|
pub view_id: ::std::string::String,
|
|
// message oneof groups
|
|
pub one_of_name: ::std::option::Option<UpdateViewParams_oneof_one_of_name>,
|
|
pub one_of_desc: ::std::option::Option<UpdateViewParams_oneof_one_of_desc>,
|
|
pub one_of_thumbnail: ::std::option::Option<UpdateViewParams_oneof_one_of_thumbnail>,
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
}
|
|
|
|
impl<'a> ::std::default::Default for &'a UpdateViewParams {
|
|
fn default() -> &'a UpdateViewParams {
|
|
<UpdateViewParams as ::protobuf::Message>::default_instance()
|
|
}
|
|
}
|
|
|
|
#[derive(Clone,PartialEq,Debug)]
|
|
pub enum UpdateViewParams_oneof_one_of_name {
|
|
name(::std::string::String),
|
|
}
|
|
|
|
#[derive(Clone,PartialEq,Debug)]
|
|
pub enum UpdateViewParams_oneof_one_of_desc {
|
|
desc(::std::string::String),
|
|
}
|
|
|
|
#[derive(Clone,PartialEq,Debug)]
|
|
pub enum UpdateViewParams_oneof_one_of_thumbnail {
|
|
thumbnail(::std::string::String),
|
|
}
|
|
|
|
impl UpdateViewParams {
|
|
pub fn new() -> UpdateViewParams {
|
|
::std::default::Default::default()
|
|
}
|
|
|
|
// string view_id = 1;
|
|
|
|
|
|
pub fn get_view_id(&self) -> &str {
|
|
&self.view_id
|
|
}
|
|
pub fn clear_view_id(&mut self) {
|
|
self.view_id.clear();
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_view_id(&mut self, v: ::std::string::String) {
|
|
self.view_id = v;
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
// If field is not initialized, it is initialized with default value first.
|
|
pub fn mut_view_id(&mut self) -> &mut ::std::string::String {
|
|
&mut self.view_id
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_view_id(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.view_id, ::std::string::String::new())
|
|
}
|
|
|
|
// string name = 2;
|
|
|
|
|
|
pub fn get_name(&self) -> &str {
|
|
match self.one_of_name {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_name::name(ref v)) => v,
|
|
_ => "",
|
|
}
|
|
}
|
|
pub fn clear_name(&mut self) {
|
|
self.one_of_name = ::std::option::Option::None;
|
|
}
|
|
|
|
pub fn has_name(&self) -> bool {
|
|
match self.one_of_name {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_name::name(..)) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_name(&mut self, v: ::std::string::String) {
|
|
self.one_of_name = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_name::name(v))
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_name(&mut self) -> &mut ::std::string::String {
|
|
if let ::std::option::Option::Some(UpdateViewParams_oneof_one_of_name::name(_)) = self.one_of_name {
|
|
} else {
|
|
self.one_of_name = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_name::name(::std::string::String::new()));
|
|
}
|
|
match self.one_of_name {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_name::name(ref mut v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_name(&mut self) -> ::std::string::String {
|
|
if self.has_name() {
|
|
match self.one_of_name.take() {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_name::name(v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
} else {
|
|
::std::string::String::new()
|
|
}
|
|
}
|
|
|
|
// string desc = 3;
|
|
|
|
|
|
pub fn get_desc(&self) -> &str {
|
|
match self.one_of_desc {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_desc::desc(ref v)) => v,
|
|
_ => "",
|
|
}
|
|
}
|
|
pub fn clear_desc(&mut self) {
|
|
self.one_of_desc = ::std::option::Option::None;
|
|
}
|
|
|
|
pub fn has_desc(&self) -> bool {
|
|
match self.one_of_desc {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_desc::desc(..)) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_desc(&mut self, v: ::std::string::String) {
|
|
self.one_of_desc = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_desc::desc(v))
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_desc(&mut self) -> &mut ::std::string::String {
|
|
if let ::std::option::Option::Some(UpdateViewParams_oneof_one_of_desc::desc(_)) = self.one_of_desc {
|
|
} else {
|
|
self.one_of_desc = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_desc::desc(::std::string::String::new()));
|
|
}
|
|
match self.one_of_desc {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_desc::desc(ref mut v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_desc(&mut self) -> ::std::string::String {
|
|
if self.has_desc() {
|
|
match self.one_of_desc.take() {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_desc::desc(v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
} else {
|
|
::std::string::String::new()
|
|
}
|
|
}
|
|
|
|
// string thumbnail = 4;
|
|
|
|
|
|
pub fn get_thumbnail(&self) -> &str {
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_thumbnail::thumbnail(ref v)) => v,
|
|
_ => "",
|
|
}
|
|
}
|
|
pub fn clear_thumbnail(&mut self) {
|
|
self.one_of_thumbnail = ::std::option::Option::None;
|
|
}
|
|
|
|
pub fn has_thumbnail(&self) -> bool {
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_thumbnail::thumbnail(..)) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
// Param is passed by value, moved
|
|
pub fn set_thumbnail(&mut self, v: ::std::string::String) {
|
|
self.one_of_thumbnail = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_thumbnail::thumbnail(v))
|
|
}
|
|
|
|
// Mutable pointer to the field.
|
|
pub fn mut_thumbnail(&mut self) -> &mut ::std::string::String {
|
|
if let ::std::option::Option::Some(UpdateViewParams_oneof_one_of_thumbnail::thumbnail(_)) = self.one_of_thumbnail {
|
|
} else {
|
|
self.one_of_thumbnail = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_thumbnail::thumbnail(::std::string::String::new()));
|
|
}
|
|
match self.one_of_thumbnail {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_thumbnail::thumbnail(ref mut v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
}
|
|
|
|
// Take field
|
|
pub fn take_thumbnail(&mut self) -> ::std::string::String {
|
|
if self.has_thumbnail() {
|
|
match self.one_of_thumbnail.take() {
|
|
::std::option::Option::Some(UpdateViewParams_oneof_one_of_thumbnail::thumbnail(v)) => v,
|
|
_ => panic!(),
|
|
}
|
|
} else {
|
|
::std::string::String::new()
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Message for UpdateViewParams {
|
|
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.view_id)?;
|
|
},
|
|
2 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
self.one_of_name = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_name::name(is.read_string()?));
|
|
},
|
|
3 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
self.one_of_desc = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_desc::desc(is.read_string()?));
|
|
},
|
|
4 => {
|
|
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
|
|
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
}
|
|
self.one_of_thumbnail = ::std::option::Option::Some(UpdateViewParams_oneof_one_of_thumbnail::thumbnail(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.view_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(1, &self.view_id);
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_name {
|
|
match v {
|
|
&UpdateViewParams_oneof_one_of_name::name(ref v) => {
|
|
my_size += ::protobuf::rt::string_size(2, &v);
|
|
},
|
|
};
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_desc {
|
|
match v {
|
|
&UpdateViewParams_oneof_one_of_desc::desc(ref v) => {
|
|
my_size += ::protobuf::rt::string_size(3, &v);
|
|
},
|
|
};
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_thumbnail {
|
|
match v {
|
|
&UpdateViewParams_oneof_one_of_thumbnail::thumbnail(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.view_id.is_empty() {
|
|
os.write_string(1, &self.view_id)?;
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_name {
|
|
match v {
|
|
&UpdateViewParams_oneof_one_of_name::name(ref v) => {
|
|
os.write_string(2, v)?;
|
|
},
|
|
};
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_desc {
|
|
match v {
|
|
&UpdateViewParams_oneof_one_of_desc::desc(ref v) => {
|
|
os.write_string(3, v)?;
|
|
},
|
|
};
|
|
}
|
|
if let ::std::option::Option::Some(ref v) = self.one_of_thumbnail {
|
|
match v {
|
|
&UpdateViewParams_oneof_one_of_thumbnail::thumbnail(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() -> UpdateViewParams {
|
|
UpdateViewParams::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>(
|
|
"view_id",
|
|
|m: &UpdateViewParams| { &m.view_id },
|
|
|m: &mut UpdateViewParams| { &mut m.view_id },
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
"name",
|
|
UpdateViewParams::has_name,
|
|
UpdateViewParams::get_name,
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
"desc",
|
|
UpdateViewParams::has_desc,
|
|
UpdateViewParams::get_desc,
|
|
));
|
|
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
|
|
"thumbnail",
|
|
UpdateViewParams::has_thumbnail,
|
|
UpdateViewParams::get_thumbnail,
|
|
));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<UpdateViewParams>(
|
|
"UpdateViewParams",
|
|
fields,
|
|
file_descriptor_proto()
|
|
)
|
|
})
|
|
}
|
|
|
|
fn default_instance() -> &'static UpdateViewParams {
|
|
static instance: ::protobuf::rt::LazyV2<UpdateViewParams> = ::protobuf::rt::LazyV2::INIT;
|
|
instance.get(UpdateViewParams::new)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::Clear for UpdateViewParams {
|
|
fn clear(&mut self) {
|
|
self.view_id.clear();
|
|
self.one_of_name = ::std::option::Option::None;
|
|
self.one_of_desc = ::std::option::Option::None;
|
|
self.one_of_thumbnail = ::std::option::Option::None;
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
|
|
impl ::std::fmt::Debug for UpdateViewParams {
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
::protobuf::text_format::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for UpdateViewParams {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
}
|
|
}
|
|
|
|
#[derive(Clone,PartialEq,Eq,Debug,Hash)]
|
|
pub enum ViewDataType {
|
|
TextBlock = 0,
|
|
Grid = 1,
|
|
}
|
|
|
|
impl ::protobuf::ProtobufEnum for ViewDataType {
|
|
fn value(&self) -> i32 {
|
|
*self as i32
|
|
}
|
|
|
|
fn from_i32(value: i32) -> ::std::option::Option<ViewDataType> {
|
|
match value {
|
|
0 => ::std::option::Option::Some(ViewDataType::TextBlock),
|
|
1 => ::std::option::Option::Some(ViewDataType::Grid),
|
|
_ => ::std::option::Option::None
|
|
}
|
|
}
|
|
|
|
fn values() -> &'static [Self] {
|
|
static values: &'static [ViewDataType] = &[
|
|
ViewDataType::TextBlock,
|
|
ViewDataType::Grid,
|
|
];
|
|
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::<ViewDataType>("ViewDataType", file_descriptor_proto())
|
|
})
|
|
}
|
|
}
|
|
|
|
impl ::std::marker::Copy for ViewDataType {
|
|
}
|
|
|
|
impl ::std::default::Default for ViewDataType {
|
|
fn default() -> Self {
|
|
ViewDataType::TextBlock
|
|
}
|
|
}
|
|
|
|
impl ::protobuf::reflect::ProtobufValue for ViewDataType {
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
::protobuf::reflect::ReflectValueRef::Enum(::protobuf::ProtobufEnum::descriptor(self))
|
|
}
|
|
}
|
|
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
\n\nview.proto\"\xf5\x02\n\x04View\x12\x0e\n\x02id\x18\x01\x20\x01(\tR\
|
|
\x02id\x12\x20\n\x0cbelong_to_id\x18\x02\x20\x01(\tR\nbelongToId\x12\x12\
|
|
\n\x04name\x18\x03\x20\x01(\tR\x04name\x12\x12\n\x04desc\x18\x04\x20\x01\
|
|
(\tR\x04desc\x12*\n\tdata_type\x18\x05\x20\x01(\x0e2\r.ViewDataTypeR\x08\
|
|
dataType\x12\x18\n\x07version\x18\x06\x20\x01(\x03R\x07version\x12-\n\nb\
|
|
elongings\x18\x07\x20\x01(\x0b2\r.RepeatedViewR\nbelongings\x12#\n\rmodi\
|
|
fied_time\x18\x08\x20\x01(\x03R\x0cmodifiedTime\x12\x1f\n\x0bcreate_time\
|
|
\x18\t\x20\x01(\x03R\ncreateTime\x12\x19\n\x08ext_data\x18\n\x20\x01(\tR\
|
|
\x07extData\x12\x1c\n\tthumbnail\x18\x0b\x20\x01(\tR\tthumbnail\x12\x1f\
|
|
\n\x0bplugin_type\x18\x0c\x20\x01(\x05R\npluginType\"+\n\x0cRepeatedView\
|
|
\x12\x1b\n\x05items\x18\x01\x20\x03(\x0b2\x05.ViewR\x05items\"\xf2\x01\n\
|
|
\x11CreateViewPayload\x12\x20\n\x0cbelong_to_id\x18\x01\x20\x01(\tR\nbel\
|
|
ongToId\x12\x12\n\x04name\x18\x02\x20\x01(\tR\x04name\x12\x12\n\x04desc\
|
|
\x18\x03\x20\x01(\tR\x04desc\x12\x1e\n\tthumbnail\x18\x04\x20\x01(\tH\0R\
|
|
\tthumbnail\x12*\n\tdata_type\x18\x05\x20\x01(\x0e2\r.ViewDataTypeR\x08d\
|
|
ataType\x12\x1f\n\x0bplugin_type\x18\x06\x20\x01(\x05R\npluginType\x12\
|
|
\x12\n\x04data\x18\x07\x20\x01(\x0cR\x04dataB\x12\n\x10one_of_thumbnail\
|
|
\"\xf4\x01\n\x10CreateViewParams\x12\x20\n\x0cbelong_to_id\x18\x01\x20\
|
|
\x01(\tR\nbelongToId\x12\x12\n\x04name\x18\x02\x20\x01(\tR\x04name\x12\
|
|
\x12\n\x04desc\x18\x03\x20\x01(\tR\x04desc\x12\x1c\n\tthumbnail\x18\x04\
|
|
\x20\x01(\tR\tthumbnail\x12*\n\tdata_type\x18\x05\x20\x01(\x0e2\r.ViewDa\
|
|
taTypeR\x08dataType\x12\x17\n\x07view_id\x18\x06\x20\x01(\tR\x06viewId\
|
|
\x12\x12\n\x04data\x18\x07\x20\x01(\x0cR\x04data\x12\x1f\n\x0bplugin_typ\
|
|
e\x18\x08\x20\x01(\x05R\npluginType\"\x1e\n\x06ViewId\x12\x14\n\x05value\
|
|
\x18\x01\x20\x01(\tR\x05value\"&\n\x0eRepeatedViewId\x12\x14\n\x05items\
|
|
\x18\x01\x20\x03(\tR\x05items\"\xaa\x01\n\x11UpdateViewPayload\x12\x17\n\
|
|
\x07view_id\x18\x01\x20\x01(\tR\x06viewId\x12\x14\n\x04name\x18\x02\x20\
|
|
\x01(\tH\0R\x04name\x12\x14\n\x04desc\x18\x03\x20\x01(\tH\x01R\x04desc\
|
|
\x12\x1e\n\tthumbnail\x18\x04\x20\x01(\tH\x02R\tthumbnailB\r\n\x0bone_of\
|
|
_nameB\r\n\x0bone_of_descB\x12\n\x10one_of_thumbnail\"\xa9\x01\n\x10Upda\
|
|
teViewParams\x12\x17\n\x07view_id\x18\x01\x20\x01(\tR\x06viewId\x12\x14\
|
|
\n\x04name\x18\x02\x20\x01(\tH\0R\x04name\x12\x14\n\x04desc\x18\x03\x20\
|
|
\x01(\tH\x01R\x04desc\x12\x1e\n\tthumbnail\x18\x04\x20\x01(\tH\x02R\tthu\
|
|
mbnailB\r\n\x0bone_of_nameB\r\n\x0bone_of_descB\x12\n\x10one_of_thumbnai\
|
|
l*'\n\x0cViewDataType\x12\r\n\tTextBlock\x10\0\x12\x08\n\x04Grid\x10\x01\
|
|
b\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()
|
|
})
|
|
}
|