// This file is generated by rust-protobuf 3.3.0. Do not edit // .proto file is parsed by protoc 3.19.6 // @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_results)] #![allow(unused_mut)] //! Generated file from `messages-thp.proto` /// Generated files are compatible only with the same version /// of protobuf runtime. const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_3_3_0; // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpDeviceProperties) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpDeviceProperties { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpDeviceProperties.internal_model) pub internal_model: ::std::option::Option<::std::string::String>, // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpDeviceProperties.model_variant) pub model_variant: ::std::option::Option, // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpDeviceProperties.bootloader_mode) pub bootloader_mode: ::std::option::Option, // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpDeviceProperties.protocol_version) pub protocol_version: ::std::option::Option, // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpDeviceProperties.pairing_methods) pub pairing_methods: ::std::vec::Vec<::protobuf::EnumOrUnknown>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpDeviceProperties.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpDeviceProperties { fn default() -> &'a ThpDeviceProperties { ::default_instance() } } impl ThpDeviceProperties { pub fn new() -> ThpDeviceProperties { ::std::default::Default::default() } // optional string internal_model = 1; pub fn internal_model(&self) -> &str { match self.internal_model.as_ref() { Some(v) => v, None => "", } } pub fn clear_internal_model(&mut self) { self.internal_model = ::std::option::Option::None; } pub fn has_internal_model(&self) -> bool { self.internal_model.is_some() } // Param is passed by value, moved pub fn set_internal_model(&mut self, v: ::std::string::String) { self.internal_model = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_internal_model(&mut self) -> &mut ::std::string::String { if self.internal_model.is_none() { self.internal_model = ::std::option::Option::Some(::std::string::String::new()); } self.internal_model.as_mut().unwrap() } // Take field pub fn take_internal_model(&mut self) -> ::std::string::String { self.internal_model.take().unwrap_or_else(|| ::std::string::String::new()) } // optional uint32 model_variant = 2; pub fn model_variant(&self) -> u32 { self.model_variant.unwrap_or(0) } pub fn clear_model_variant(&mut self) { self.model_variant = ::std::option::Option::None; } pub fn has_model_variant(&self) -> bool { self.model_variant.is_some() } // Param is passed by value, moved pub fn set_model_variant(&mut self, v: u32) { self.model_variant = ::std::option::Option::Some(v); } // optional bool bootloader_mode = 3; pub fn bootloader_mode(&self) -> bool { self.bootloader_mode.unwrap_or(false) } pub fn clear_bootloader_mode(&mut self) { self.bootloader_mode = ::std::option::Option::None; } pub fn has_bootloader_mode(&self) -> bool { self.bootloader_mode.is_some() } // Param is passed by value, moved pub fn set_bootloader_mode(&mut self, v: bool) { self.bootloader_mode = ::std::option::Option::Some(v); } // optional uint32 protocol_version = 4; pub fn protocol_version(&self) -> u32 { self.protocol_version.unwrap_or(0) } pub fn clear_protocol_version(&mut self) { self.protocol_version = ::std::option::Option::None; } pub fn has_protocol_version(&self) -> bool { self.protocol_version.is_some() } // Param is passed by value, moved pub fn set_protocol_version(&mut self, v: u32) { self.protocol_version = ::std::option::Option::Some(v); } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(5); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "internal_model", |m: &ThpDeviceProperties| { &m.internal_model }, |m: &mut ThpDeviceProperties| { &mut m.internal_model }, )); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "model_variant", |m: &ThpDeviceProperties| { &m.model_variant }, |m: &mut ThpDeviceProperties| { &mut m.model_variant }, )); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "bootloader_mode", |m: &ThpDeviceProperties| { &m.bootloader_mode }, |m: &mut ThpDeviceProperties| { &mut m.bootloader_mode }, )); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "protocol_version", |m: &ThpDeviceProperties| { &m.protocol_version }, |m: &mut ThpDeviceProperties| { &mut m.protocol_version }, )); fields.push(::protobuf::reflect::rt::v2::make_vec_simpler_accessor::<_, _>( "pairing_methods", |m: &ThpDeviceProperties| { &m.pairing_methods }, |m: &mut ThpDeviceProperties| { &mut m.pairing_methods }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpDeviceProperties", fields, oneofs, ) } } impl ::protobuf::Message for ThpDeviceProperties { const NAME: &'static str = "ThpDeviceProperties"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.internal_model = ::std::option::Option::Some(is.read_string()?); }, 16 => { self.model_variant = ::std::option::Option::Some(is.read_uint32()?); }, 24 => { self.bootloader_mode = ::std::option::Option::Some(is.read_bool()?); }, 32 => { self.protocol_version = ::std::option::Option::Some(is.read_uint32()?); }, 40 => { self.pairing_methods.push(is.read_enum_or_unknown()?); }, 42 => { ::protobuf::rt::read_repeated_packed_enum_or_unknown_into(is, &mut self.pairing_methods)? }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.internal_model.as_ref() { my_size += ::protobuf::rt::string_size(1, &v); } if let Some(v) = self.model_variant { my_size += ::protobuf::rt::uint32_size(2, v); } if let Some(v) = self.bootloader_mode { my_size += 1 + 1; } if let Some(v) = self.protocol_version { my_size += ::protobuf::rt::uint32_size(4, v); } for value in &self.pairing_methods { my_size += ::protobuf::rt::int32_size(5, value.value()); }; my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.internal_model.as_ref() { os.write_string(1, v)?; } if let Some(v) = self.model_variant { os.write_uint32(2, v)?; } if let Some(v) = self.bootloader_mode { os.write_bool(3, v)?; } if let Some(v) = self.protocol_version { os.write_uint32(4, v)?; } for v in &self.pairing_methods { os.write_enum(5, ::protobuf::EnumOrUnknown::value(v))?; }; os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpDeviceProperties { ThpDeviceProperties::new() } fn clear(&mut self) { self.internal_model = ::std::option::Option::None; self.model_variant = ::std::option::Option::None; self.bootloader_mode = ::std::option::Option::None; self.protocol_version = ::std::option::Option::None; self.pairing_methods.clear(); self.special_fields.clear(); } fn default_instance() -> &'static ThpDeviceProperties { static instance: ThpDeviceProperties = ThpDeviceProperties { internal_model: ::std::option::Option::None, model_variant: ::std::option::Option::None, bootloader_mode: ::std::option::Option::None, protocol_version: ::std::option::Option::None, pairing_methods: ::std::vec::Vec::new(), special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpDeviceProperties { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpDeviceProperties").unwrap()).clone() } } impl ::std::fmt::Display for ThpDeviceProperties { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpDeviceProperties { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpHandshakeCompletionReqNoisePayload) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpHandshakeCompletionReqNoisePayload { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpHandshakeCompletionReqNoisePayload.host_pairing_credential) pub host_pairing_credential: ::std::option::Option<::std::vec::Vec>, // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpHandshakeCompletionReqNoisePayload.pairing_methods) pub pairing_methods: ::std::vec::Vec<::protobuf::EnumOrUnknown>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpHandshakeCompletionReqNoisePayload.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpHandshakeCompletionReqNoisePayload { fn default() -> &'a ThpHandshakeCompletionReqNoisePayload { ::default_instance() } } impl ThpHandshakeCompletionReqNoisePayload { pub fn new() -> ThpHandshakeCompletionReqNoisePayload { ::std::default::Default::default() } // optional bytes host_pairing_credential = 1; pub fn host_pairing_credential(&self) -> &[u8] { match self.host_pairing_credential.as_ref() { Some(v) => v, None => &[], } } pub fn clear_host_pairing_credential(&mut self) { self.host_pairing_credential = ::std::option::Option::None; } pub fn has_host_pairing_credential(&self) -> bool { self.host_pairing_credential.is_some() } // Param is passed by value, moved pub fn set_host_pairing_credential(&mut self, v: ::std::vec::Vec) { self.host_pairing_credential = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_host_pairing_credential(&mut self) -> &mut ::std::vec::Vec { if self.host_pairing_credential.is_none() { self.host_pairing_credential = ::std::option::Option::Some(::std::vec::Vec::new()); } self.host_pairing_credential.as_mut().unwrap() } // Take field pub fn take_host_pairing_credential(&mut self) -> ::std::vec::Vec { self.host_pairing_credential.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(2); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "host_pairing_credential", |m: &ThpHandshakeCompletionReqNoisePayload| { &m.host_pairing_credential }, |m: &mut ThpHandshakeCompletionReqNoisePayload| { &mut m.host_pairing_credential }, )); fields.push(::protobuf::reflect::rt::v2::make_vec_simpler_accessor::<_, _>( "pairing_methods", |m: &ThpHandshakeCompletionReqNoisePayload| { &m.pairing_methods }, |m: &mut ThpHandshakeCompletionReqNoisePayload| { &mut m.pairing_methods }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpHandshakeCompletionReqNoisePayload", fields, oneofs, ) } } impl ::protobuf::Message for ThpHandshakeCompletionReqNoisePayload { const NAME: &'static str = "ThpHandshakeCompletionReqNoisePayload"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.host_pairing_credential = ::std::option::Option::Some(is.read_bytes()?); }, 16 => { self.pairing_methods.push(is.read_enum_or_unknown()?); }, 18 => { ::protobuf::rt::read_repeated_packed_enum_or_unknown_into(is, &mut self.pairing_methods)? }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.host_pairing_credential.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } for value in &self.pairing_methods { my_size += ::protobuf::rt::int32_size(2, value.value()); }; my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.host_pairing_credential.as_ref() { os.write_bytes(1, v)?; } for v in &self.pairing_methods { os.write_enum(2, ::protobuf::EnumOrUnknown::value(v))?; }; os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpHandshakeCompletionReqNoisePayload { ThpHandshakeCompletionReqNoisePayload::new() } fn clear(&mut self) { self.host_pairing_credential = ::std::option::Option::None; self.pairing_methods.clear(); self.special_fields.clear(); } fn default_instance() -> &'static ThpHandshakeCompletionReqNoisePayload { static instance: ThpHandshakeCompletionReqNoisePayload = ThpHandshakeCompletionReqNoisePayload { host_pairing_credential: ::std::option::Option::None, pairing_methods: ::std::vec::Vec::new(), special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpHandshakeCompletionReqNoisePayload { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpHandshakeCompletionReqNoisePayload").unwrap()).clone() } } impl ::std::fmt::Display for ThpHandshakeCompletionReqNoisePayload { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpHandshakeCompletionReqNoisePayload { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCreateNewSession) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCreateNewSession { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCreateNewSession.passphrase) pub passphrase: ::std::option::Option<::std::string::String>, // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCreateNewSession.on_device) pub on_device: ::std::option::Option, // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCreateNewSession.derive_cardano) pub derive_cardano: ::std::option::Option, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCreateNewSession.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCreateNewSession { fn default() -> &'a ThpCreateNewSession { ::default_instance() } } impl ThpCreateNewSession { pub fn new() -> ThpCreateNewSession { ::std::default::Default::default() } // optional string passphrase = 1; pub fn passphrase(&self) -> &str { match self.passphrase.as_ref() { Some(v) => v, None => "", } } pub fn clear_passphrase(&mut self) { self.passphrase = ::std::option::Option::None; } pub fn has_passphrase(&self) -> bool { self.passphrase.is_some() } // Param is passed by value, moved pub fn set_passphrase(&mut self, v: ::std::string::String) { self.passphrase = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_passphrase(&mut self) -> &mut ::std::string::String { if self.passphrase.is_none() { self.passphrase = ::std::option::Option::Some(::std::string::String::new()); } self.passphrase.as_mut().unwrap() } // Take field pub fn take_passphrase(&mut self) -> ::std::string::String { self.passphrase.take().unwrap_or_else(|| ::std::string::String::new()) } // optional bool on_device = 2; pub fn on_device(&self) -> bool { self.on_device.unwrap_or(false) } pub fn clear_on_device(&mut self) { self.on_device = ::std::option::Option::None; } pub fn has_on_device(&self) -> bool { self.on_device.is_some() } // Param is passed by value, moved pub fn set_on_device(&mut self, v: bool) { self.on_device = ::std::option::Option::Some(v); } // optional bool derive_cardano = 3; pub fn derive_cardano(&self) -> bool { self.derive_cardano.unwrap_or(false) } pub fn clear_derive_cardano(&mut self) { self.derive_cardano = ::std::option::Option::None; } pub fn has_derive_cardano(&self) -> bool { self.derive_cardano.is_some() } // Param is passed by value, moved pub fn set_derive_cardano(&mut self, v: bool) { self.derive_cardano = ::std::option::Option::Some(v); } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(3); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "passphrase", |m: &ThpCreateNewSession| { &m.passphrase }, |m: &mut ThpCreateNewSession| { &mut m.passphrase }, )); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "on_device", |m: &ThpCreateNewSession| { &m.on_device }, |m: &mut ThpCreateNewSession| { &mut m.on_device }, )); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "derive_cardano", |m: &ThpCreateNewSession| { &m.derive_cardano }, |m: &mut ThpCreateNewSession| { &mut m.derive_cardano }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCreateNewSession", fields, oneofs, ) } } impl ::protobuf::Message for ThpCreateNewSession { const NAME: &'static str = "ThpCreateNewSession"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.passphrase = ::std::option::Option::Some(is.read_string()?); }, 16 => { self.on_device = ::std::option::Option::Some(is.read_bool()?); }, 24 => { self.derive_cardano = ::std::option::Option::Some(is.read_bool()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.passphrase.as_ref() { my_size += ::protobuf::rt::string_size(1, &v); } if let Some(v) = self.on_device { my_size += 1 + 1; } if let Some(v) = self.derive_cardano { my_size += 1 + 1; } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.passphrase.as_ref() { os.write_string(1, v)?; } if let Some(v) = self.on_device { os.write_bool(2, v)?; } if let Some(v) = self.derive_cardano { os.write_bool(3, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCreateNewSession { ThpCreateNewSession::new() } fn clear(&mut self) { self.passphrase = ::std::option::Option::None; self.on_device = ::std::option::Option::None; self.derive_cardano = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCreateNewSession { static instance: ThpCreateNewSession = ThpCreateNewSession { passphrase: ::std::option::Option::None, on_device: ::std::option::Option::None, derive_cardano: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCreateNewSession { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCreateNewSession").unwrap()).clone() } } impl ::std::fmt::Display for ThpCreateNewSession { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCreateNewSession { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpNewSession) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpNewSession { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpNewSession.new_session_id) pub new_session_id: ::std::option::Option, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpNewSession.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpNewSession { fn default() -> &'a ThpNewSession { ::default_instance() } } impl ThpNewSession { pub fn new() -> ThpNewSession { ::std::default::Default::default() } // optional uint32 new_session_id = 1; pub fn new_session_id(&self) -> u32 { self.new_session_id.unwrap_or(0) } pub fn clear_new_session_id(&mut self) { self.new_session_id = ::std::option::Option::None; } pub fn has_new_session_id(&self) -> bool { self.new_session_id.is_some() } // Param is passed by value, moved pub fn set_new_session_id(&mut self, v: u32) { self.new_session_id = ::std::option::Option::Some(v); } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "new_session_id", |m: &ThpNewSession| { &m.new_session_id }, |m: &mut ThpNewSession| { &mut m.new_session_id }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpNewSession", fields, oneofs, ) } } impl ::protobuf::Message for ThpNewSession { const NAME: &'static str = "ThpNewSession"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 8 => { self.new_session_id = ::std::option::Option::Some(is.read_uint32()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.new_session_id { my_size += ::protobuf::rt::uint32_size(1, v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.new_session_id { os.write_uint32(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpNewSession { ThpNewSession::new() } fn clear(&mut self) { self.new_session_id = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpNewSession { static instance: ThpNewSession = ThpNewSession { new_session_id: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpNewSession { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpNewSession").unwrap()).clone() } } impl ::std::fmt::Display for ThpNewSession { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpNewSession { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpStartPairingRequest) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpStartPairingRequest { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpStartPairingRequest.host_name) pub host_name: ::std::option::Option<::std::string::String>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpStartPairingRequest.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpStartPairingRequest { fn default() -> &'a ThpStartPairingRequest { ::default_instance() } } impl ThpStartPairingRequest { pub fn new() -> ThpStartPairingRequest { ::std::default::Default::default() } // optional string host_name = 1; pub fn host_name(&self) -> &str { match self.host_name.as_ref() { Some(v) => v, None => "", } } pub fn clear_host_name(&mut self) { self.host_name = ::std::option::Option::None; } pub fn has_host_name(&self) -> bool { self.host_name.is_some() } // Param is passed by value, moved pub fn set_host_name(&mut self, v: ::std::string::String) { self.host_name = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_host_name(&mut self) -> &mut ::std::string::String { if self.host_name.is_none() { self.host_name = ::std::option::Option::Some(::std::string::String::new()); } self.host_name.as_mut().unwrap() } // Take field pub fn take_host_name(&mut self) -> ::std::string::String { self.host_name.take().unwrap_or_else(|| ::std::string::String::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "host_name", |m: &ThpStartPairingRequest| { &m.host_name }, |m: &mut ThpStartPairingRequest| { &mut m.host_name }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpStartPairingRequest", fields, oneofs, ) } } impl ::protobuf::Message for ThpStartPairingRequest { const NAME: &'static str = "ThpStartPairingRequest"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.host_name = ::std::option::Option::Some(is.read_string()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.host_name.as_ref() { my_size += ::protobuf::rt::string_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.host_name.as_ref() { os.write_string(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpStartPairingRequest { ThpStartPairingRequest::new() } fn clear(&mut self) { self.host_name = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpStartPairingRequest { static instance: ThpStartPairingRequest = ThpStartPairingRequest { host_name: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpStartPairingRequest { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpStartPairingRequest").unwrap()).clone() } } impl ::std::fmt::Display for ThpStartPairingRequest { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpStartPairingRequest { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpPairingPreparationsFinished) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpPairingPreparationsFinished { // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpPairingPreparationsFinished.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpPairingPreparationsFinished { fn default() -> &'a ThpPairingPreparationsFinished { ::default_instance() } } impl ThpPairingPreparationsFinished { pub fn new() -> ThpPairingPreparationsFinished { ::std::default::Default::default() } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(0); let mut oneofs = ::std::vec::Vec::with_capacity(0); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpPairingPreparationsFinished", fields, oneofs, ) } } impl ::protobuf::Message for ThpPairingPreparationsFinished { const NAME: &'static str = "ThpPairingPreparationsFinished"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpPairingPreparationsFinished { ThpPairingPreparationsFinished::new() } fn clear(&mut self) { self.special_fields.clear(); } fn default_instance() -> &'static ThpPairingPreparationsFinished { static instance: ThpPairingPreparationsFinished = ThpPairingPreparationsFinished { special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpPairingPreparationsFinished { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpPairingPreparationsFinished").unwrap()).clone() } } impl ::std::fmt::Display for ThpPairingPreparationsFinished { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpPairingPreparationsFinished { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCodeEntryCommitment) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCodeEntryCommitment { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCodeEntryCommitment.commitment) pub commitment: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCodeEntryCommitment.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCodeEntryCommitment { fn default() -> &'a ThpCodeEntryCommitment { ::default_instance() } } impl ThpCodeEntryCommitment { pub fn new() -> ThpCodeEntryCommitment { ::std::default::Default::default() } // optional bytes commitment = 1; pub fn commitment(&self) -> &[u8] { match self.commitment.as_ref() { Some(v) => v, None => &[], } } pub fn clear_commitment(&mut self) { self.commitment = ::std::option::Option::None; } pub fn has_commitment(&self) -> bool { self.commitment.is_some() } // Param is passed by value, moved pub fn set_commitment(&mut self, v: ::std::vec::Vec) { self.commitment = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_commitment(&mut self) -> &mut ::std::vec::Vec { if self.commitment.is_none() { self.commitment = ::std::option::Option::Some(::std::vec::Vec::new()); } self.commitment.as_mut().unwrap() } // Take field pub fn take_commitment(&mut self) -> ::std::vec::Vec { self.commitment.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "commitment", |m: &ThpCodeEntryCommitment| { &m.commitment }, |m: &mut ThpCodeEntryCommitment| { &mut m.commitment }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCodeEntryCommitment", fields, oneofs, ) } } impl ::protobuf::Message for ThpCodeEntryCommitment { const NAME: &'static str = "ThpCodeEntryCommitment"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.commitment = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.commitment.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.commitment.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCodeEntryCommitment { ThpCodeEntryCommitment::new() } fn clear(&mut self) { self.commitment = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCodeEntryCommitment { static instance: ThpCodeEntryCommitment = ThpCodeEntryCommitment { commitment: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCodeEntryCommitment { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCodeEntryCommitment").unwrap()).clone() } } impl ::std::fmt::Display for ThpCodeEntryCommitment { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCodeEntryCommitment { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCodeEntryChallenge) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCodeEntryChallenge { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCodeEntryChallenge.challenge) pub challenge: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCodeEntryChallenge.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCodeEntryChallenge { fn default() -> &'a ThpCodeEntryChallenge { ::default_instance() } } impl ThpCodeEntryChallenge { pub fn new() -> ThpCodeEntryChallenge { ::std::default::Default::default() } // optional bytes challenge = 1; pub fn challenge(&self) -> &[u8] { match self.challenge.as_ref() { Some(v) => v, None => &[], } } pub fn clear_challenge(&mut self) { self.challenge = ::std::option::Option::None; } pub fn has_challenge(&self) -> bool { self.challenge.is_some() } // Param is passed by value, moved pub fn set_challenge(&mut self, v: ::std::vec::Vec) { self.challenge = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_challenge(&mut self) -> &mut ::std::vec::Vec { if self.challenge.is_none() { self.challenge = ::std::option::Option::Some(::std::vec::Vec::new()); } self.challenge.as_mut().unwrap() } // Take field pub fn take_challenge(&mut self) -> ::std::vec::Vec { self.challenge.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "challenge", |m: &ThpCodeEntryChallenge| { &m.challenge }, |m: &mut ThpCodeEntryChallenge| { &mut m.challenge }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCodeEntryChallenge", fields, oneofs, ) } } impl ::protobuf::Message for ThpCodeEntryChallenge { const NAME: &'static str = "ThpCodeEntryChallenge"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.challenge = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.challenge.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.challenge.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCodeEntryChallenge { ThpCodeEntryChallenge::new() } fn clear(&mut self) { self.challenge = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCodeEntryChallenge { static instance: ThpCodeEntryChallenge = ThpCodeEntryChallenge { challenge: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCodeEntryChallenge { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCodeEntryChallenge").unwrap()).clone() } } impl ::std::fmt::Display for ThpCodeEntryChallenge { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCodeEntryChallenge { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCodeEntryCpaceHost) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCodeEntryCpaceHost { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCodeEntryCpaceHost.cpace_host_public_key) pub cpace_host_public_key: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCodeEntryCpaceHost.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCodeEntryCpaceHost { fn default() -> &'a ThpCodeEntryCpaceHost { ::default_instance() } } impl ThpCodeEntryCpaceHost { pub fn new() -> ThpCodeEntryCpaceHost { ::std::default::Default::default() } // optional bytes cpace_host_public_key = 1; pub fn cpace_host_public_key(&self) -> &[u8] { match self.cpace_host_public_key.as_ref() { Some(v) => v, None => &[], } } pub fn clear_cpace_host_public_key(&mut self) { self.cpace_host_public_key = ::std::option::Option::None; } pub fn has_cpace_host_public_key(&self) -> bool { self.cpace_host_public_key.is_some() } // Param is passed by value, moved pub fn set_cpace_host_public_key(&mut self, v: ::std::vec::Vec) { self.cpace_host_public_key = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_cpace_host_public_key(&mut self) -> &mut ::std::vec::Vec { if self.cpace_host_public_key.is_none() { self.cpace_host_public_key = ::std::option::Option::Some(::std::vec::Vec::new()); } self.cpace_host_public_key.as_mut().unwrap() } // Take field pub fn take_cpace_host_public_key(&mut self) -> ::std::vec::Vec { self.cpace_host_public_key.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "cpace_host_public_key", |m: &ThpCodeEntryCpaceHost| { &m.cpace_host_public_key }, |m: &mut ThpCodeEntryCpaceHost| { &mut m.cpace_host_public_key }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCodeEntryCpaceHost", fields, oneofs, ) } } impl ::protobuf::Message for ThpCodeEntryCpaceHost { const NAME: &'static str = "ThpCodeEntryCpaceHost"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.cpace_host_public_key = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.cpace_host_public_key.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.cpace_host_public_key.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCodeEntryCpaceHost { ThpCodeEntryCpaceHost::new() } fn clear(&mut self) { self.cpace_host_public_key = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCodeEntryCpaceHost { static instance: ThpCodeEntryCpaceHost = ThpCodeEntryCpaceHost { cpace_host_public_key: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCodeEntryCpaceHost { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCodeEntryCpaceHost").unwrap()).clone() } } impl ::std::fmt::Display for ThpCodeEntryCpaceHost { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCodeEntryCpaceHost { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCodeEntryCpaceTrezor) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCodeEntryCpaceTrezor { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCodeEntryCpaceTrezor.cpace_trezor_public_key) pub cpace_trezor_public_key: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCodeEntryCpaceTrezor.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCodeEntryCpaceTrezor { fn default() -> &'a ThpCodeEntryCpaceTrezor { ::default_instance() } } impl ThpCodeEntryCpaceTrezor { pub fn new() -> ThpCodeEntryCpaceTrezor { ::std::default::Default::default() } // optional bytes cpace_trezor_public_key = 1; pub fn cpace_trezor_public_key(&self) -> &[u8] { match self.cpace_trezor_public_key.as_ref() { Some(v) => v, None => &[], } } pub fn clear_cpace_trezor_public_key(&mut self) { self.cpace_trezor_public_key = ::std::option::Option::None; } pub fn has_cpace_trezor_public_key(&self) -> bool { self.cpace_trezor_public_key.is_some() } // Param is passed by value, moved pub fn set_cpace_trezor_public_key(&mut self, v: ::std::vec::Vec) { self.cpace_trezor_public_key = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_cpace_trezor_public_key(&mut self) -> &mut ::std::vec::Vec { if self.cpace_trezor_public_key.is_none() { self.cpace_trezor_public_key = ::std::option::Option::Some(::std::vec::Vec::new()); } self.cpace_trezor_public_key.as_mut().unwrap() } // Take field pub fn take_cpace_trezor_public_key(&mut self) -> ::std::vec::Vec { self.cpace_trezor_public_key.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "cpace_trezor_public_key", |m: &ThpCodeEntryCpaceTrezor| { &m.cpace_trezor_public_key }, |m: &mut ThpCodeEntryCpaceTrezor| { &mut m.cpace_trezor_public_key }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCodeEntryCpaceTrezor", fields, oneofs, ) } } impl ::protobuf::Message for ThpCodeEntryCpaceTrezor { const NAME: &'static str = "ThpCodeEntryCpaceTrezor"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.cpace_trezor_public_key = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.cpace_trezor_public_key.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.cpace_trezor_public_key.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCodeEntryCpaceTrezor { ThpCodeEntryCpaceTrezor::new() } fn clear(&mut self) { self.cpace_trezor_public_key = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCodeEntryCpaceTrezor { static instance: ThpCodeEntryCpaceTrezor = ThpCodeEntryCpaceTrezor { cpace_trezor_public_key: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCodeEntryCpaceTrezor { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCodeEntryCpaceTrezor").unwrap()).clone() } } impl ::std::fmt::Display for ThpCodeEntryCpaceTrezor { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCodeEntryCpaceTrezor { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCodeEntryTag) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCodeEntryTag { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCodeEntryTag.tag) pub tag: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCodeEntryTag.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCodeEntryTag { fn default() -> &'a ThpCodeEntryTag { ::default_instance() } } impl ThpCodeEntryTag { pub fn new() -> ThpCodeEntryTag { ::std::default::Default::default() } // optional bytes tag = 2; pub fn tag(&self) -> &[u8] { match self.tag.as_ref() { Some(v) => v, None => &[], } } pub fn clear_tag(&mut self) { self.tag = ::std::option::Option::None; } pub fn has_tag(&self) -> bool { self.tag.is_some() } // Param is passed by value, moved pub fn set_tag(&mut self, v: ::std::vec::Vec) { self.tag = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_tag(&mut self) -> &mut ::std::vec::Vec { if self.tag.is_none() { self.tag = ::std::option::Option::Some(::std::vec::Vec::new()); } self.tag.as_mut().unwrap() } // Take field pub fn take_tag(&mut self) -> ::std::vec::Vec { self.tag.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "tag", |m: &ThpCodeEntryTag| { &m.tag }, |m: &mut ThpCodeEntryTag| { &mut m.tag }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCodeEntryTag", fields, oneofs, ) } } impl ::protobuf::Message for ThpCodeEntryTag { const NAME: &'static str = "ThpCodeEntryTag"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 18 => { self.tag = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.tag.as_ref() { my_size += ::protobuf::rt::bytes_size(2, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.tag.as_ref() { os.write_bytes(2, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCodeEntryTag { ThpCodeEntryTag::new() } fn clear(&mut self) { self.tag = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCodeEntryTag { static instance: ThpCodeEntryTag = ThpCodeEntryTag { tag: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCodeEntryTag { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCodeEntryTag").unwrap()).clone() } } impl ::std::fmt::Display for ThpCodeEntryTag { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCodeEntryTag { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCodeEntrySecret) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCodeEntrySecret { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCodeEntrySecret.secret) pub secret: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCodeEntrySecret.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCodeEntrySecret { fn default() -> &'a ThpCodeEntrySecret { ::default_instance() } } impl ThpCodeEntrySecret { pub fn new() -> ThpCodeEntrySecret { ::std::default::Default::default() } // optional bytes secret = 1; pub fn secret(&self) -> &[u8] { match self.secret.as_ref() { Some(v) => v, None => &[], } } pub fn clear_secret(&mut self) { self.secret = ::std::option::Option::None; } pub fn has_secret(&self) -> bool { self.secret.is_some() } // Param is passed by value, moved pub fn set_secret(&mut self, v: ::std::vec::Vec) { self.secret = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_secret(&mut self) -> &mut ::std::vec::Vec { if self.secret.is_none() { self.secret = ::std::option::Option::Some(::std::vec::Vec::new()); } self.secret.as_mut().unwrap() } // Take field pub fn take_secret(&mut self) -> ::std::vec::Vec { self.secret.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "secret", |m: &ThpCodeEntrySecret| { &m.secret }, |m: &mut ThpCodeEntrySecret| { &mut m.secret }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCodeEntrySecret", fields, oneofs, ) } } impl ::protobuf::Message for ThpCodeEntrySecret { const NAME: &'static str = "ThpCodeEntrySecret"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.secret = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.secret.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.secret.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCodeEntrySecret { ThpCodeEntrySecret::new() } fn clear(&mut self) { self.secret = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCodeEntrySecret { static instance: ThpCodeEntrySecret = ThpCodeEntrySecret { secret: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCodeEntrySecret { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCodeEntrySecret").unwrap()).clone() } } impl ::std::fmt::Display for ThpCodeEntrySecret { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCodeEntrySecret { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpQrCodeTag) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpQrCodeTag { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpQrCodeTag.tag) pub tag: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpQrCodeTag.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpQrCodeTag { fn default() -> &'a ThpQrCodeTag { ::default_instance() } } impl ThpQrCodeTag { pub fn new() -> ThpQrCodeTag { ::std::default::Default::default() } // optional bytes tag = 1; pub fn tag(&self) -> &[u8] { match self.tag.as_ref() { Some(v) => v, None => &[], } } pub fn clear_tag(&mut self) { self.tag = ::std::option::Option::None; } pub fn has_tag(&self) -> bool { self.tag.is_some() } // Param is passed by value, moved pub fn set_tag(&mut self, v: ::std::vec::Vec) { self.tag = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_tag(&mut self) -> &mut ::std::vec::Vec { if self.tag.is_none() { self.tag = ::std::option::Option::Some(::std::vec::Vec::new()); } self.tag.as_mut().unwrap() } // Take field pub fn take_tag(&mut self) -> ::std::vec::Vec { self.tag.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "tag", |m: &ThpQrCodeTag| { &m.tag }, |m: &mut ThpQrCodeTag| { &mut m.tag }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpQrCodeTag", fields, oneofs, ) } } impl ::protobuf::Message for ThpQrCodeTag { const NAME: &'static str = "ThpQrCodeTag"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.tag = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.tag.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.tag.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpQrCodeTag { ThpQrCodeTag::new() } fn clear(&mut self) { self.tag = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpQrCodeTag { static instance: ThpQrCodeTag = ThpQrCodeTag { tag: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpQrCodeTag { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpQrCodeTag").unwrap()).clone() } } impl ::std::fmt::Display for ThpQrCodeTag { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpQrCodeTag { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpQrCodeSecret) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpQrCodeSecret { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpQrCodeSecret.secret) pub secret: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpQrCodeSecret.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpQrCodeSecret { fn default() -> &'a ThpQrCodeSecret { ::default_instance() } } impl ThpQrCodeSecret { pub fn new() -> ThpQrCodeSecret { ::std::default::Default::default() } // optional bytes secret = 1; pub fn secret(&self) -> &[u8] { match self.secret.as_ref() { Some(v) => v, None => &[], } } pub fn clear_secret(&mut self) { self.secret = ::std::option::Option::None; } pub fn has_secret(&self) -> bool { self.secret.is_some() } // Param is passed by value, moved pub fn set_secret(&mut self, v: ::std::vec::Vec) { self.secret = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_secret(&mut self) -> &mut ::std::vec::Vec { if self.secret.is_none() { self.secret = ::std::option::Option::Some(::std::vec::Vec::new()); } self.secret.as_mut().unwrap() } // Take field pub fn take_secret(&mut self) -> ::std::vec::Vec { self.secret.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "secret", |m: &ThpQrCodeSecret| { &m.secret }, |m: &mut ThpQrCodeSecret| { &mut m.secret }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpQrCodeSecret", fields, oneofs, ) } } impl ::protobuf::Message for ThpQrCodeSecret { const NAME: &'static str = "ThpQrCodeSecret"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.secret = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.secret.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.secret.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpQrCodeSecret { ThpQrCodeSecret::new() } fn clear(&mut self) { self.secret = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpQrCodeSecret { static instance: ThpQrCodeSecret = ThpQrCodeSecret { secret: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpQrCodeSecret { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpQrCodeSecret").unwrap()).clone() } } impl ::std::fmt::Display for ThpQrCodeSecret { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpQrCodeSecret { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpNfcUnidirectionalTag) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpNfcUnidirectionalTag { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpNfcUnidirectionalTag.tag) pub tag: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpNfcUnidirectionalTag.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpNfcUnidirectionalTag { fn default() -> &'a ThpNfcUnidirectionalTag { ::default_instance() } } impl ThpNfcUnidirectionalTag { pub fn new() -> ThpNfcUnidirectionalTag { ::std::default::Default::default() } // optional bytes tag = 1; pub fn tag(&self) -> &[u8] { match self.tag.as_ref() { Some(v) => v, None => &[], } } pub fn clear_tag(&mut self) { self.tag = ::std::option::Option::None; } pub fn has_tag(&self) -> bool { self.tag.is_some() } // Param is passed by value, moved pub fn set_tag(&mut self, v: ::std::vec::Vec) { self.tag = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_tag(&mut self) -> &mut ::std::vec::Vec { if self.tag.is_none() { self.tag = ::std::option::Option::Some(::std::vec::Vec::new()); } self.tag.as_mut().unwrap() } // Take field pub fn take_tag(&mut self) -> ::std::vec::Vec { self.tag.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "tag", |m: &ThpNfcUnidirectionalTag| { &m.tag }, |m: &mut ThpNfcUnidirectionalTag| { &mut m.tag }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpNfcUnidirectionalTag", fields, oneofs, ) } } impl ::protobuf::Message for ThpNfcUnidirectionalTag { const NAME: &'static str = "ThpNfcUnidirectionalTag"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.tag = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.tag.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.tag.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpNfcUnidirectionalTag { ThpNfcUnidirectionalTag::new() } fn clear(&mut self) { self.tag = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpNfcUnidirectionalTag { static instance: ThpNfcUnidirectionalTag = ThpNfcUnidirectionalTag { tag: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpNfcUnidirectionalTag { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpNfcUnidirectionalTag").unwrap()).clone() } } impl ::std::fmt::Display for ThpNfcUnidirectionalTag { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpNfcUnidirectionalTag { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpNfcUnideirectionalSecret) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpNfcUnideirectionalSecret { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpNfcUnideirectionalSecret.secret) pub secret: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpNfcUnideirectionalSecret.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpNfcUnideirectionalSecret { fn default() -> &'a ThpNfcUnideirectionalSecret { ::default_instance() } } impl ThpNfcUnideirectionalSecret { pub fn new() -> ThpNfcUnideirectionalSecret { ::std::default::Default::default() } // optional bytes secret = 1; pub fn secret(&self) -> &[u8] { match self.secret.as_ref() { Some(v) => v, None => &[], } } pub fn clear_secret(&mut self) { self.secret = ::std::option::Option::None; } pub fn has_secret(&self) -> bool { self.secret.is_some() } // Param is passed by value, moved pub fn set_secret(&mut self, v: ::std::vec::Vec) { self.secret = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_secret(&mut self) -> &mut ::std::vec::Vec { if self.secret.is_none() { self.secret = ::std::option::Option::Some(::std::vec::Vec::new()); } self.secret.as_mut().unwrap() } // Take field pub fn take_secret(&mut self) -> ::std::vec::Vec { self.secret.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "secret", |m: &ThpNfcUnideirectionalSecret| { &m.secret }, |m: &mut ThpNfcUnideirectionalSecret| { &mut m.secret }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpNfcUnideirectionalSecret", fields, oneofs, ) } } impl ::protobuf::Message for ThpNfcUnideirectionalSecret { const NAME: &'static str = "ThpNfcUnideirectionalSecret"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.secret = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.secret.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.secret.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpNfcUnideirectionalSecret { ThpNfcUnideirectionalSecret::new() } fn clear(&mut self) { self.secret = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpNfcUnideirectionalSecret { static instance: ThpNfcUnideirectionalSecret = ThpNfcUnideirectionalSecret { secret: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpNfcUnideirectionalSecret { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpNfcUnideirectionalSecret").unwrap()).clone() } } impl ::std::fmt::Display for ThpNfcUnideirectionalSecret { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpNfcUnideirectionalSecret { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCredentialRequest) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCredentialRequest { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCredentialRequest.host_static_pubkey) pub host_static_pubkey: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCredentialRequest.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCredentialRequest { fn default() -> &'a ThpCredentialRequest { ::default_instance() } } impl ThpCredentialRequest { pub fn new() -> ThpCredentialRequest { ::std::default::Default::default() } // optional bytes host_static_pubkey = 1; pub fn host_static_pubkey(&self) -> &[u8] { match self.host_static_pubkey.as_ref() { Some(v) => v, None => &[], } } pub fn clear_host_static_pubkey(&mut self) { self.host_static_pubkey = ::std::option::Option::None; } pub fn has_host_static_pubkey(&self) -> bool { self.host_static_pubkey.is_some() } // Param is passed by value, moved pub fn set_host_static_pubkey(&mut self, v: ::std::vec::Vec) { self.host_static_pubkey = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_host_static_pubkey(&mut self) -> &mut ::std::vec::Vec { if self.host_static_pubkey.is_none() { self.host_static_pubkey = ::std::option::Option::Some(::std::vec::Vec::new()); } self.host_static_pubkey.as_mut().unwrap() } // Take field pub fn take_host_static_pubkey(&mut self) -> ::std::vec::Vec { self.host_static_pubkey.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(1); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "host_static_pubkey", |m: &ThpCredentialRequest| { &m.host_static_pubkey }, |m: &mut ThpCredentialRequest| { &mut m.host_static_pubkey }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCredentialRequest", fields, oneofs, ) } } impl ::protobuf::Message for ThpCredentialRequest { const NAME: &'static str = "ThpCredentialRequest"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.host_static_pubkey = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.host_static_pubkey.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.host_static_pubkey.as_ref() { os.write_bytes(1, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCredentialRequest { ThpCredentialRequest::new() } fn clear(&mut self) { self.host_static_pubkey = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCredentialRequest { static instance: ThpCredentialRequest = ThpCredentialRequest { host_static_pubkey: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCredentialRequest { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCredentialRequest").unwrap()).clone() } } impl ::std::fmt::Display for ThpCredentialRequest { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCredentialRequest { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpCredentialResponse) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpCredentialResponse { // message fields // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCredentialResponse.trezor_static_pubkey) pub trezor_static_pubkey: ::std::option::Option<::std::vec::Vec>, // @@protoc_insertion_point(field:hw.trezor.messages.thp.ThpCredentialResponse.credential) pub credential: ::std::option::Option<::std::vec::Vec>, // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpCredentialResponse.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpCredentialResponse { fn default() -> &'a ThpCredentialResponse { ::default_instance() } } impl ThpCredentialResponse { pub fn new() -> ThpCredentialResponse { ::std::default::Default::default() } // optional bytes trezor_static_pubkey = 1; pub fn trezor_static_pubkey(&self) -> &[u8] { match self.trezor_static_pubkey.as_ref() { Some(v) => v, None => &[], } } pub fn clear_trezor_static_pubkey(&mut self) { self.trezor_static_pubkey = ::std::option::Option::None; } pub fn has_trezor_static_pubkey(&self) -> bool { self.trezor_static_pubkey.is_some() } // Param is passed by value, moved pub fn set_trezor_static_pubkey(&mut self, v: ::std::vec::Vec) { self.trezor_static_pubkey = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_trezor_static_pubkey(&mut self) -> &mut ::std::vec::Vec { if self.trezor_static_pubkey.is_none() { self.trezor_static_pubkey = ::std::option::Option::Some(::std::vec::Vec::new()); } self.trezor_static_pubkey.as_mut().unwrap() } // Take field pub fn take_trezor_static_pubkey(&mut self) -> ::std::vec::Vec { self.trezor_static_pubkey.take().unwrap_or_else(|| ::std::vec::Vec::new()) } // optional bytes credential = 2; pub fn credential(&self) -> &[u8] { match self.credential.as_ref() { Some(v) => v, None => &[], } } pub fn clear_credential(&mut self) { self.credential = ::std::option::Option::None; } pub fn has_credential(&self) -> bool { self.credential.is_some() } // Param is passed by value, moved pub fn set_credential(&mut self, v: ::std::vec::Vec) { self.credential = ::std::option::Option::Some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_credential(&mut self) -> &mut ::std::vec::Vec { if self.credential.is_none() { self.credential = ::std::option::Option::Some(::std::vec::Vec::new()); } self.credential.as_mut().unwrap() } // Take field pub fn take_credential(&mut self) -> ::std::vec::Vec { self.credential.take().unwrap_or_else(|| ::std::vec::Vec::new()) } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(2); let mut oneofs = ::std::vec::Vec::with_capacity(0); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "trezor_static_pubkey", |m: &ThpCredentialResponse| { &m.trezor_static_pubkey }, |m: &mut ThpCredentialResponse| { &mut m.trezor_static_pubkey }, )); fields.push(::protobuf::reflect::rt::v2::make_option_accessor::<_, _>( "credential", |m: &ThpCredentialResponse| { &m.credential }, |m: &mut ThpCredentialResponse| { &mut m.credential }, )); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpCredentialResponse", fields, oneofs, ) } } impl ::protobuf::Message for ThpCredentialResponse { const NAME: &'static str = "ThpCredentialResponse"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { 10 => { self.trezor_static_pubkey = ::std::option::Option::Some(is.read_bytes()?); }, 18 => { self.credential = ::std::option::Option::Some(is.read_bytes()?); }, tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; if let Some(v) = self.trezor_static_pubkey.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } if let Some(v) = self.credential.as_ref() { my_size += ::protobuf::rt::bytes_size(2, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { if let Some(v) = self.trezor_static_pubkey.as_ref() { os.write_bytes(1, v)?; } if let Some(v) = self.credential.as_ref() { os.write_bytes(2, v)?; } os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpCredentialResponse { ThpCredentialResponse::new() } fn clear(&mut self) { self.trezor_static_pubkey = ::std::option::Option::None; self.credential = ::std::option::Option::None; self.special_fields.clear(); } fn default_instance() -> &'static ThpCredentialResponse { static instance: ThpCredentialResponse = ThpCredentialResponse { trezor_static_pubkey: ::std::option::Option::None, credential: ::std::option::Option::None, special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpCredentialResponse { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpCredentialResponse").unwrap()).clone() } } impl ::std::fmt::Display for ThpCredentialResponse { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpCredentialResponse { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpEndRequest) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpEndRequest { // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpEndRequest.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpEndRequest { fn default() -> &'a ThpEndRequest { ::default_instance() } } impl ThpEndRequest { pub fn new() -> ThpEndRequest { ::std::default::Default::default() } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(0); let mut oneofs = ::std::vec::Vec::with_capacity(0); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpEndRequest", fields, oneofs, ) } } impl ::protobuf::Message for ThpEndRequest { const NAME: &'static str = "ThpEndRequest"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpEndRequest { ThpEndRequest::new() } fn clear(&mut self) { self.special_fields.clear(); } fn default_instance() -> &'static ThpEndRequest { static instance: ThpEndRequest = ThpEndRequest { special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpEndRequest { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpEndRequest").unwrap()).clone() } } impl ::std::fmt::Display for ThpEndRequest { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpEndRequest { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } // @@protoc_insertion_point(message:hw.trezor.messages.thp.ThpEndResponse) #[derive(PartialEq,Clone,Default,Debug)] pub struct ThpEndResponse { // special fields // @@protoc_insertion_point(special_field:hw.trezor.messages.thp.ThpEndResponse.special_fields) pub special_fields: ::protobuf::SpecialFields, } impl<'a> ::std::default::Default for &'a ThpEndResponse { fn default() -> &'a ThpEndResponse { ::default_instance() } } impl ThpEndResponse { pub fn new() -> ThpEndResponse { ::std::default::Default::default() } fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData { let mut fields = ::std::vec::Vec::with_capacity(0); let mut oneofs = ::std::vec::Vec::with_capacity(0); ::protobuf::reflect::GeneratedMessageDescriptorData::new_2::( "ThpEndResponse", fields, oneofs, ) } } impl ::protobuf::Message for ThpEndResponse { const NAME: &'static str = "ThpEndResponse"; fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> { while let Some(tag) = is.read_raw_tag_or_eof()? { match tag { tag => { ::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u64 { let mut my_size = 0; my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields()); self.special_fields.cached_size().set(my_size as u32); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> { os.write_unknown_fields(self.special_fields.unknown_fields())?; ::std::result::Result::Ok(()) } fn special_fields(&self) -> &::protobuf::SpecialFields { &self.special_fields } fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields { &mut self.special_fields } fn new() -> ThpEndResponse { ThpEndResponse::new() } fn clear(&mut self) { self.special_fields.clear(); } fn default_instance() -> &'static ThpEndResponse { static instance: ThpEndResponse = ThpEndResponse { special_fields: ::protobuf::SpecialFields::new(), }; &instance } } impl ::protobuf::MessageFull for ThpEndResponse { fn descriptor() -> ::protobuf::reflect::MessageDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().message_by_package_relative_name("ThpEndResponse").unwrap()).clone() } } impl ::std::fmt::Display for ThpEndResponse { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for ThpEndResponse { type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage; } #[derive(Clone,Copy,PartialEq,Eq,Debug,Hash)] // @@protoc_insertion_point(enum:hw.trezor.messages.thp.ThpPairingMethod) pub enum ThpPairingMethod { // @@protoc_insertion_point(enum_value:hw.trezor.messages.thp.ThpPairingMethod.PairingMethod_NoMethod) PairingMethod_NoMethod = 1, // @@protoc_insertion_point(enum_value:hw.trezor.messages.thp.ThpPairingMethod.PairingMethod_CodeEntry) PairingMethod_CodeEntry = 2, // @@protoc_insertion_point(enum_value:hw.trezor.messages.thp.ThpPairingMethod.PairingMethod_QrCode) PairingMethod_QrCode = 3, // @@protoc_insertion_point(enum_value:hw.trezor.messages.thp.ThpPairingMethod.PairingMethod_NFC_Unidirectional) PairingMethod_NFC_Unidirectional = 4, } impl ::protobuf::Enum for ThpPairingMethod { const NAME: &'static str = "ThpPairingMethod"; fn value(&self) -> i32 { *self as i32 } fn from_i32(value: i32) -> ::std::option::Option { match value { 1 => ::std::option::Option::Some(ThpPairingMethod::PairingMethod_NoMethod), 2 => ::std::option::Option::Some(ThpPairingMethod::PairingMethod_CodeEntry), 3 => ::std::option::Option::Some(ThpPairingMethod::PairingMethod_QrCode), 4 => ::std::option::Option::Some(ThpPairingMethod::PairingMethod_NFC_Unidirectional), _ => ::std::option::Option::None } } fn from_str(str: &str) -> ::std::option::Option { match str { "PairingMethod_NoMethod" => ::std::option::Option::Some(ThpPairingMethod::PairingMethod_NoMethod), "PairingMethod_CodeEntry" => ::std::option::Option::Some(ThpPairingMethod::PairingMethod_CodeEntry), "PairingMethod_QrCode" => ::std::option::Option::Some(ThpPairingMethod::PairingMethod_QrCode), "PairingMethod_NFC_Unidirectional" => ::std::option::Option::Some(ThpPairingMethod::PairingMethod_NFC_Unidirectional), _ => ::std::option::Option::None } } const VALUES: &'static [ThpPairingMethod] = &[ ThpPairingMethod::PairingMethod_NoMethod, ThpPairingMethod::PairingMethod_CodeEntry, ThpPairingMethod::PairingMethod_QrCode, ThpPairingMethod::PairingMethod_NFC_Unidirectional, ]; } impl ::protobuf::EnumFull for ThpPairingMethod { fn enum_descriptor() -> ::protobuf::reflect::EnumDescriptor { static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::rt::Lazy::new(); descriptor.get(|| file_descriptor().enum_by_package_relative_name("ThpPairingMethod").unwrap()).clone() } fn descriptor(&self) -> ::protobuf::reflect::EnumValueDescriptor { let index = match self { ThpPairingMethod::PairingMethod_NoMethod => 0, ThpPairingMethod::PairingMethod_CodeEntry => 1, ThpPairingMethod::PairingMethod_QrCode => 2, ThpPairingMethod::PairingMethod_NFC_Unidirectional => 3, }; Self::enum_descriptor().value_by_index(index) } } // Note, `Default` is implemented although default value is not 0 impl ::std::default::Default for ThpPairingMethod { fn default() -> Self { ThpPairingMethod::PairingMethod_NoMethod } } impl ThpPairingMethod { fn generated_enum_descriptor_data() -> ::protobuf::reflect::GeneratedEnumDescriptorData { ::protobuf::reflect::GeneratedEnumDescriptorData::new::("ThpPairingMethod") } } static file_descriptor_proto_data: &'static [u8] = b"\ \n\x12messages-thp.proto\x12\x16hw.trezor.messages.thp\"\x88\x02\n\x13Th\ pDeviceProperties\x12%\n\x0einternal_model\x18\x01\x20\x01(\tR\rinternal\ Model\x12#\n\rmodel_variant\x18\x02\x20\x01(\rR\x0cmodelVariant\x12'\n\ \x0fbootloader_mode\x18\x03\x20\x01(\x08R\x0ebootloaderMode\x12)\n\x10pr\ otocol_version\x18\x04\x20\x01(\rR\x0fprotocolVersion\x12Q\n\x0fpairing_\ methods\x18\x05\x20\x03(\x0e2(.hw.trezor.messages.thp.ThpPairingMethodR\ \x0epairingMethods\"\xb2\x01\n%ThpHandshakeCompletionReqNoisePayload\x12\ 6\n\x17host_pairing_credential\x18\x01\x20\x01(\x0cR\x15hostPairingCrede\ ntial\x12Q\n\x0fpairing_methods\x18\x02\x20\x03(\x0e2(.hw.trezor.message\ s.thp.ThpPairingMethodR\x0epairingMethods\"y\n\x13ThpCreateNewSession\ \x12\x1e\n\npassphrase\x18\x01\x20\x01(\tR\npassphrase\x12\x1b\n\ton_dev\ ice\x18\x02\x20\x01(\x08R\x08onDevice\x12%\n\x0ederive_cardano\x18\x03\ \x20\x01(\x08R\rderiveCardano\"5\n\rThpNewSession\x12$\n\x0enew_session_\ id\x18\x01\x20\x01(\rR\x0cnewSessionId\"5\n\x16ThpStartPairingRequest\ \x12\x1b\n\thost_name\x18\x01\x20\x01(\tR\x08hostName\"\x20\n\x1eThpPair\ ingPreparationsFinished\"8\n\x16ThpCodeEntryCommitment\x12\x1e\n\ncommit\ ment\x18\x01\x20\x01(\x0cR\ncommitment\"5\n\x15ThpCodeEntryChallenge\x12\ \x1c\n\tchallenge\x18\x01\x20\x01(\x0cR\tchallenge\"J\n\x15ThpCodeEntryC\ paceHost\x121\n\x15cpace_host_public_key\x18\x01\x20\x01(\x0cR\x12cpaceH\ ostPublicKey\"P\n\x17ThpCodeEntryCpaceTrezor\x125\n\x17cpace_trezor_publ\ ic_key\x18\x01\x20\x01(\x0cR\x14cpaceTrezorPublicKey\"#\n\x0fThpCodeEntr\ yTag\x12\x10\n\x03tag\x18\x02\x20\x01(\x0cR\x03tag\",\n\x12ThpCodeEntryS\ ecret\x12\x16\n\x06secret\x18\x01\x20\x01(\x0cR\x06secret\"\x20\n\x0cThp\ QrCodeTag\x12\x10\n\x03tag\x18\x01\x20\x01(\x0cR\x03tag\")\n\x0fThpQrCod\ eSecret\x12\x16\n\x06secret\x18\x01\x20\x01(\x0cR\x06secret\"+\n\x17ThpN\ fcUnidirectionalTag\x12\x10\n\x03tag\x18\x01\x20\x01(\x0cR\x03tag\"5\n\ \x1bThpNfcUnideirectionalSecret\x12\x16\n\x06secret\x18\x01\x20\x01(\x0c\ R\x06secret\"D\n\x14ThpCredentialRequest\x12,\n\x12host_static_pubkey\ \x18\x01\x20\x01(\x0cR\x10hostStaticPubkey\"i\n\x15ThpCredentialResponse\ \x120\n\x14trezor_static_pubkey\x18\x01\x20\x01(\x0cR\x12trezorStaticPub\ key\x12\x1e\n\ncredential\x18\x02\x20\x01(\x0cR\ncredential\"\x0f\n\rThp\ EndRequest\"\x10\n\x0eThpEndResponse*\x8b\x01\n\x10ThpPairingMethod\x12\ \x1a\n\x16PairingMethod_NoMethod\x10\x01\x12\x1b\n\x17PairingMethod_Code\ Entry\x10\x02\x12\x18\n\x14PairingMethod_QrCode\x10\x03\x12$\n\x20Pairin\ gMethod_NFC_Unidirectional\x10\x04B7\n#com.satoshilabs.trezor.lib.protob\ ufB\x10TrezorMessageThp\ "; /// `FileDescriptorProto` object which was a source for this generated file fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto { static file_descriptor_proto_lazy: ::protobuf::rt::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::Lazy::new(); file_descriptor_proto_lazy.get(|| { ::protobuf::Message::parse_from_bytes(file_descriptor_proto_data).unwrap() }) } /// `FileDescriptor` object which allows dynamic access to files pub fn file_descriptor() -> &'static ::protobuf::reflect::FileDescriptor { static generated_file_descriptor_lazy: ::protobuf::rt::Lazy<::protobuf::reflect::GeneratedFileDescriptor> = ::protobuf::rt::Lazy::new(); static file_descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::FileDescriptor> = ::protobuf::rt::Lazy::new(); file_descriptor.get(|| { let generated_file_descriptor = generated_file_descriptor_lazy.get(|| { let mut deps = ::std::vec::Vec::with_capacity(0); let mut messages = ::std::vec::Vec::with_capacity(20); messages.push(ThpDeviceProperties::generated_message_descriptor_data()); messages.push(ThpHandshakeCompletionReqNoisePayload::generated_message_descriptor_data()); messages.push(ThpCreateNewSession::generated_message_descriptor_data()); messages.push(ThpNewSession::generated_message_descriptor_data()); messages.push(ThpStartPairingRequest::generated_message_descriptor_data()); messages.push(ThpPairingPreparationsFinished::generated_message_descriptor_data()); messages.push(ThpCodeEntryCommitment::generated_message_descriptor_data()); messages.push(ThpCodeEntryChallenge::generated_message_descriptor_data()); messages.push(ThpCodeEntryCpaceHost::generated_message_descriptor_data()); messages.push(ThpCodeEntryCpaceTrezor::generated_message_descriptor_data()); messages.push(ThpCodeEntryTag::generated_message_descriptor_data()); messages.push(ThpCodeEntrySecret::generated_message_descriptor_data()); messages.push(ThpQrCodeTag::generated_message_descriptor_data()); messages.push(ThpQrCodeSecret::generated_message_descriptor_data()); messages.push(ThpNfcUnidirectionalTag::generated_message_descriptor_data()); messages.push(ThpNfcUnideirectionalSecret::generated_message_descriptor_data()); messages.push(ThpCredentialRequest::generated_message_descriptor_data()); messages.push(ThpCredentialResponse::generated_message_descriptor_data()); messages.push(ThpEndRequest::generated_message_descriptor_data()); messages.push(ThpEndResponse::generated_message_descriptor_data()); let mut enums = ::std::vec::Vec::with_capacity(1); enums.push(ThpPairingMethod::generated_enum_descriptor_data()); ::protobuf::reflect::GeneratedFileDescriptor::new_generated( file_descriptor_proto(), deps, messages, enums, ) }); ::protobuf::reflect::FileDescriptor::new_generated_2(generated_file_descriptor) }) }