|
@@ -26,6 +26,7 @@
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
|
pub struct User {
|
|
|
// message fields
|
|
|
+ pub id: ::std::string::String,
|
|
|
pub name: ::std::string::String,
|
|
|
pub email: ::std::string::String,
|
|
|
pub password: ::std::string::String,
|
|
@@ -45,7 +46,33 @@ impl User {
|
|
|
::std::default::Default::default()
|
|
|
}
|
|
|
|
|
|
- // string name = 1;
|
|
|
+ // string id = 1;
|
|
|
+
|
|
|
+
|
|
|
+ pub fn get_id(&self) -> &str {
|
|
|
+ &self.id
|
|
|
+ }
|
|
|
+ pub fn clear_id(&mut self) {
|
|
|
+ self.id.clear();
|
|
|
+ }
|
|
|
+
|
|
|
+ // Param is passed by value, moved
|
|
|
+ pub fn set_id(&mut self, v: ::std::string::String) {
|
|
|
+ self.id = v;
|
|
|
+ }
|
|
|
+
|
|
|
+ // Mutable pointer to the field.
|
|
|
+ // If field is not initialized, it is initialized with default value first.
|
|
|
+ pub fn mut_id(&mut self) -> &mut ::std::string::String {
|
|
|
+ &mut self.id
|
|
|
+ }
|
|
|
+
|
|
|
+ // Take field
|
|
|
+ pub fn take_id(&mut self) -> ::std::string::String {
|
|
|
+ ::std::mem::replace(&mut self.id, ::std::string::String::new())
|
|
|
+ }
|
|
|
+
|
|
|
+ // string name = 2;
|
|
|
|
|
|
|
|
|
pub fn get_name(&self) -> &str {
|
|
@@ -71,7 +98,7 @@ impl User {
|
|
|
::std::mem::replace(&mut self.name, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- // string email = 2;
|
|
|
+ // string email = 3;
|
|
|
|
|
|
|
|
|
pub fn get_email(&self) -> &str {
|
|
@@ -97,7 +124,7 @@ impl User {
|
|
|
::std::mem::replace(&mut self.email, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- // string password = 3;
|
|
|
+ // string password = 4;
|
|
|
|
|
|
|
|
|
pub fn get_password(&self) -> &str {
|
|
@@ -134,12 +161,15 @@ impl ::protobuf::Message for User {
|
|
|
let (field_number, wire_type) = is.read_tag_unpack()?;
|
|
|
match field_number {
|
|
|
1 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.name)?;
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.id)?;
|
|
|
},
|
|
|
2 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.email)?;
|
|
|
+ ::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.email)?;
|
|
|
+ },
|
|
|
+ 4 => {
|
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.password)?;
|
|
|
},
|
|
|
_ => {
|
|
@@ -154,14 +184,17 @@ impl ::protobuf::Message for User {
|
|
|
#[allow(unused_variables)]
|
|
|
fn compute_size(&self) -> u32 {
|
|
|
let mut my_size = 0;
|
|
|
+ if !self.id.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::string_size(1, &self.id);
|
|
|
+ }
|
|
|
if !self.name.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.name);
|
|
|
+ my_size += ::protobuf::rt::string_size(2, &self.name);
|
|
|
}
|
|
|
if !self.email.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(2, &self.email);
|
|
|
+ my_size += ::protobuf::rt::string_size(3, &self.email);
|
|
|
}
|
|
|
if !self.password.is_empty() {
|
|
|
- my_size += ::protobuf::rt::string_size(3, &self.password);
|
|
|
+ my_size += ::protobuf::rt::string_size(4, &self.password);
|
|
|
}
|
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
self.cached_size.set(my_size);
|
|
@@ -169,14 +202,17 @@ impl ::protobuf::Message for User {
|
|
|
}
|
|
|
|
|
|
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
+ if !self.id.is_empty() {
|
|
|
+ os.write_string(1, &self.id)?;
|
|
|
+ }
|
|
|
if !self.name.is_empty() {
|
|
|
- os.write_string(1, &self.name)?;
|
|
|
+ os.write_string(2, &self.name)?;
|
|
|
}
|
|
|
if !self.email.is_empty() {
|
|
|
- os.write_string(2, &self.email)?;
|
|
|
+ os.write_string(3, &self.email)?;
|
|
|
}
|
|
|
if !self.password.is_empty() {
|
|
|
- os.write_string(3, &self.password)?;
|
|
|
+ os.write_string(4, &self.password)?;
|
|
|
}
|
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
::std::result::Result::Ok(())
|
|
@@ -216,6 +252,11 @@ impl ::protobuf::Message for User {
|
|
|
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: &User| { &m.id },
|
|
|
+ |m: &mut User| { &mut m.id },
|
|
|
+ ));
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
"name",
|
|
|
|m: &User| { &m.name },
|
|
@@ -247,6 +288,7 @@ impl ::protobuf::Message for User {
|
|
|
|
|
|
impl ::protobuf::Clear for User {
|
|
|
fn clear(&mut self) {
|
|
|
+ self.id.clear();
|
|
|
self.name.clear();
|
|
|
self.email.clear();
|
|
|
self.password.clear();
|
|
@@ -267,19 +309,23 @@ impl ::protobuf::reflect::ProtobufValue for User {
|
|
|
}
|
|
|
|
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
|
- \n\nuser.proto\"L\n\x04User\x12\x12\n\x04name\x18\x01\x20\x01(\tR\x04nam\
|
|
|
- e\x12\x14\n\x05email\x18\x02\x20\x01(\tR\x05email\x12\x1a\n\x08password\
|
|
|
- \x18\x03\x20\x01(\tR\x08passwordJ\xcf\x01\n\x06\x12\x04\0\0\x06\x01\n\
|
|
|
- \x08\n\x01\x0c\x12\x03\0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\x06\x01\n\n\
|
|
|
- \n\x03\x04\0\x01\x12\x03\x02\x08\x0c\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\
|
|
|
- \x04\x14\n\x0c\n\x05\x04\0\x02\0\x05\x12\x03\x03\x04\n\n\x0c\n\x05\x04\0\
|
|
|
- \x02\0\x01\x12\x03\x03\x0b\x0f\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\
|
|
|
- \x12\x13\n\x0b\n\x04\x04\0\x02\x01\x12\x03\x04\x04\x15\n\x0c\n\x05\x04\0\
|
|
|
- \x02\x01\x05\x12\x03\x04\x04\n\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\x04\
|
|
|
- \x0b\x10\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\x04\x13\x14\n\x0b\n\x04\
|
|
|
- \x04\0\x02\x02\x12\x03\x05\x04\x18\n\x0c\n\x05\x04\0\x02\x02\x05\x12\x03\
|
|
|
- \x05\x04\n\n\x0c\n\x05\x04\0\x02\x02\x01\x12\x03\x05\x0b\x13\n\x0c\n\x05\
|
|
|
- \x04\0\x02\x02\x03\x12\x03\x05\x16\x17b\x06proto3\
|
|
|
+ \n\nuser.proto\"\\\n\x04User\x12\x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\
|
|
|
+ \x12\x12\n\x04name\x18\x02\x20\x01(\tR\x04name\x12\x14\n\x05email\x18\
|
|
|
+ \x03\x20\x01(\tR\x05email\x12\x1a\n\x08password\x18\x04\x20\x01(\tR\x08p\
|
|
|
+ asswordJ\x86\x02\n\x06\x12\x04\0\0\x07\x01\n\x08\n\x01\x0c\x12\x03\0\0\
|
|
|
+ \x12\n\n\n\x02\x04\0\x12\x04\x02\0\x07\x01\n\n\n\x03\x04\0\x01\x12\x03\
|
|
|
+ \x02\x08\x0c\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\x04\x12\n\x0c\n\x05\x04\
|
|
|
+ \0\x02\0\x05\x12\x03\x03\x04\n\n\x0c\n\x05\x04\0\x02\0\x01\x12\x03\x03\
|
|
|
+ \x0b\r\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\x10\x11\n\x0b\n\x04\x04\0\
|
|
|
+ \x02\x01\x12\x03\x04\x04\x14\n\x0c\n\x05\x04\0\x02\x01\x05\x12\x03\x04\
|
|
|
+ \x04\n\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\x04\x0b\x0f\n\x0c\n\x05\x04\
|
|
|
+ \0\x02\x01\x03\x12\x03\x04\x12\x13\n\x0b\n\x04\x04\0\x02\x02\x12\x03\x05\
|
|
|
+ \x04\x15\n\x0c\n\x05\x04\0\x02\x02\x05\x12\x03\x05\x04\n\n\x0c\n\x05\x04\
|
|
|
+ \0\x02\x02\x01\x12\x03\x05\x0b\x10\n\x0c\n\x05\x04\0\x02\x02\x03\x12\x03\
|
|
|
+ \x05\x13\x14\n\x0b\n\x04\x04\0\x02\x03\x12\x03\x06\x04\x18\n\x0c\n\x05\
|
|
|
+ \x04\0\x02\x03\x05\x12\x03\x06\x04\n\n\x0c\n\x05\x04\0\x02\x03\x01\x12\
|
|
|
+ \x03\x06\x0b\x13\n\x0c\n\x05\x04\0\x02\x03\x03\x12\x03\x06\x16\x17b\x06p\
|
|
|
+ roto3\
|
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|