// This file is generated by rust-protobuf 2.8.1. Do not edit // @generated // https://github.com/Manishearth/rust-clippy/issues/702 #![allow(unknown_lints)] #![allow(clippy::all)] #![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(unsafe_code)] #![allow(unused_imports)] #![allow(unused_results)] //! Generated file from `spirc.proto` use protobuf::Message as Message_imported_for_functions; use protobuf::ProtobufEnum as ProtobufEnum_imported_for_functions; /// Generated files are compatible only with the same version /// of protobuf runtime. const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_8_1; #[derive(PartialEq,Clone,Default)] pub struct Frame { // message fields version: ::std::option::Option, ident: ::protobuf::SingularField<::std::string::String>, protocol_version: ::protobuf::SingularField<::std::string::String>, seq_nr: ::std::option::Option, typ: ::std::option::Option, device_state: ::protobuf::SingularPtrField, goodbye: ::protobuf::SingularPtrField, state: ::protobuf::SingularPtrField, position: ::std::option::Option, volume: ::std::option::Option, state_update_id: ::std::option::Option, recipient: ::protobuf::RepeatedField<::std::string::String>, context_player_state: ::protobuf::SingularField<::std::vec::Vec>, new_name: ::protobuf::SingularField<::std::string::String>, metadata: ::protobuf::SingularPtrField, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a Frame { fn default() -> &'a Frame { ::default_instance() } } impl Frame { pub fn new() -> Frame { ::std::default::Default::default() } // optional uint32 version = 1; pub fn get_version(&self) -> u32 { self.version.unwrap_or(0) } pub fn clear_version(&mut self) { self.version = ::std::option::Option::None; } pub fn has_version(&self) -> bool { self.version.is_some() } // Param is passed by value, moved pub fn set_version(&mut self, v: u32) { self.version = ::std::option::Option::Some(v); } // optional string ident = 2; pub fn get_ident(&self) -> &str { match self.ident.as_ref() { Some(v) => &v, None => "", } } pub fn clear_ident(&mut self) { self.ident.clear(); } pub fn has_ident(&self) -> bool { self.ident.is_some() } // Param is passed by value, moved pub fn set_ident(&mut self, v: ::std::string::String) { self.ident = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_ident(&mut self) -> &mut ::std::string::String { if self.ident.is_none() { self.ident.set_default(); } self.ident.as_mut().unwrap() } // Take field pub fn take_ident(&mut self) -> ::std::string::String { self.ident.take().unwrap_or_else(|| ::std::string::String::new()) } // optional string protocol_version = 3; pub fn get_protocol_version(&self) -> &str { match self.protocol_version.as_ref() { Some(v) => &v, None => "", } } pub fn clear_protocol_version(&mut self) { self.protocol_version.clear(); } 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: ::std::string::String) { self.protocol_version = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_protocol_version(&mut self) -> &mut ::std::string::String { if self.protocol_version.is_none() { self.protocol_version.set_default(); } self.protocol_version.as_mut().unwrap() } // Take field pub fn take_protocol_version(&mut self) -> ::std::string::String { self.protocol_version.take().unwrap_or_else(|| ::std::string::String::new()) } // optional uint32 seq_nr = 4; pub fn get_seq_nr(&self) -> u32 { self.seq_nr.unwrap_or(0) } pub fn clear_seq_nr(&mut self) { self.seq_nr = ::std::option::Option::None; } pub fn has_seq_nr(&self) -> bool { self.seq_nr.is_some() } // Param is passed by value, moved pub fn set_seq_nr(&mut self, v: u32) { self.seq_nr = ::std::option::Option::Some(v); } // optional .MessageType typ = 5; pub fn get_typ(&self) -> MessageType { self.typ.unwrap_or(MessageType::kMessageTypeHello) } pub fn clear_typ(&mut self) { self.typ = ::std::option::Option::None; } pub fn has_typ(&self) -> bool { self.typ.is_some() } // Param is passed by value, moved pub fn set_typ(&mut self, v: MessageType) { self.typ = ::std::option::Option::Some(v); } // optional .DeviceState device_state = 7; pub fn get_device_state(&self) -> &DeviceState { self.device_state.as_ref().unwrap_or_else(|| DeviceState::default_instance()) } pub fn clear_device_state(&mut self) { self.device_state.clear(); } pub fn has_device_state(&self) -> bool { self.device_state.is_some() } // Param is passed by value, moved pub fn set_device_state(&mut self, v: DeviceState) { self.device_state = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_device_state(&mut self) -> &mut DeviceState { if self.device_state.is_none() { self.device_state.set_default(); } self.device_state.as_mut().unwrap() } // Take field pub fn take_device_state(&mut self) -> DeviceState { self.device_state.take().unwrap_or_else(|| DeviceState::new()) } // optional .Goodbye goodbye = 11; pub fn get_goodbye(&self) -> &Goodbye { self.goodbye.as_ref().unwrap_or_else(|| Goodbye::default_instance()) } pub fn clear_goodbye(&mut self) { self.goodbye.clear(); } pub fn has_goodbye(&self) -> bool { self.goodbye.is_some() } // Param is passed by value, moved pub fn set_goodbye(&mut self, v: Goodbye) { self.goodbye = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_goodbye(&mut self) -> &mut Goodbye { if self.goodbye.is_none() { self.goodbye.set_default(); } self.goodbye.as_mut().unwrap() } // Take field pub fn take_goodbye(&mut self) -> Goodbye { self.goodbye.take().unwrap_or_else(|| Goodbye::new()) } // optional .State state = 12; pub fn get_state(&self) -> &State { self.state.as_ref().unwrap_or_else(|| State::default_instance()) } pub fn clear_state(&mut self) { self.state.clear(); } pub fn has_state(&self) -> bool { self.state.is_some() } // Param is passed by value, moved pub fn set_state(&mut self, v: State) { self.state = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_state(&mut self) -> &mut State { if self.state.is_none() { self.state.set_default(); } self.state.as_mut().unwrap() } // Take field pub fn take_state(&mut self) -> State { self.state.take().unwrap_or_else(|| State::new()) } // optional uint32 position = 13; pub fn get_position(&self) -> u32 { self.position.unwrap_or(0) } pub fn clear_position(&mut self) { self.position = ::std::option::Option::None; } pub fn has_position(&self) -> bool { self.position.is_some() } // Param is passed by value, moved pub fn set_position(&mut self, v: u32) { self.position = ::std::option::Option::Some(v); } // optional uint32 volume = 14; pub fn get_volume(&self) -> u32 { self.volume.unwrap_or(0) } pub fn clear_volume(&mut self) { self.volume = ::std::option::Option::None; } pub fn has_volume(&self) -> bool { self.volume.is_some() } // Param is passed by value, moved pub fn set_volume(&mut self, v: u32) { self.volume = ::std::option::Option::Some(v); } // optional int64 state_update_id = 17; pub fn get_state_update_id(&self) -> i64 { self.state_update_id.unwrap_or(0) } pub fn clear_state_update_id(&mut self) { self.state_update_id = ::std::option::Option::None; } pub fn has_state_update_id(&self) -> bool { self.state_update_id.is_some() } // Param is passed by value, moved pub fn set_state_update_id(&mut self, v: i64) { self.state_update_id = ::std::option::Option::Some(v); } // repeated string recipient = 18; pub fn get_recipient(&self) -> &[::std::string::String] { &self.recipient } pub fn clear_recipient(&mut self) { self.recipient.clear(); } // Param is passed by value, moved pub fn set_recipient(&mut self, v: ::protobuf::RepeatedField<::std::string::String>) { self.recipient = v; } // Mutable pointer to the field. pub fn mut_recipient(&mut self) -> &mut ::protobuf::RepeatedField<::std::string::String> { &mut self.recipient } // Take field pub fn take_recipient(&mut self) -> ::protobuf::RepeatedField<::std::string::String> { ::std::mem::replace(&mut self.recipient, ::protobuf::RepeatedField::new()) } // optional bytes context_player_state = 19; pub fn get_context_player_state(&self) -> &[u8] { match self.context_player_state.as_ref() { Some(v) => &v, None => &[], } } pub fn clear_context_player_state(&mut self) { self.context_player_state.clear(); } pub fn has_context_player_state(&self) -> bool { self.context_player_state.is_some() } // Param is passed by value, moved pub fn set_context_player_state(&mut self, v: ::std::vec::Vec) { self.context_player_state = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_context_player_state(&mut self) -> &mut ::std::vec::Vec { if self.context_player_state.is_none() { self.context_player_state.set_default(); } self.context_player_state.as_mut().unwrap() } // Take field pub fn take_context_player_state(&mut self) -> ::std::vec::Vec { self.context_player_state.take().unwrap_or_else(|| ::std::vec::Vec::new()) } // optional string new_name = 20; pub fn get_new_name(&self) -> &str { match self.new_name.as_ref() { Some(v) => &v, None => "", } } pub fn clear_new_name(&mut self) { self.new_name.clear(); } pub fn has_new_name(&self) -> bool { self.new_name.is_some() } // Param is passed by value, moved pub fn set_new_name(&mut self, v: ::std::string::String) { self.new_name = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_new_name(&mut self) -> &mut ::std::string::String { if self.new_name.is_none() { self.new_name.set_default(); } self.new_name.as_mut().unwrap() } // Take field pub fn take_new_name(&mut self) -> ::std::string::String { self.new_name.take().unwrap_or_else(|| ::std::string::String::new()) } // optional .Metadata metadata = 25; pub fn get_metadata(&self) -> &Metadata { self.metadata.as_ref().unwrap_or_else(|| Metadata::default_instance()) } pub fn clear_metadata(&mut self) { self.metadata.clear(); } pub fn has_metadata(&self) -> bool { self.metadata.is_some() } // Param is passed by value, moved pub fn set_metadata(&mut self, v: Metadata) { self.metadata = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_metadata(&mut self) -> &mut Metadata { if self.metadata.is_none() { self.metadata.set_default(); } self.metadata.as_mut().unwrap() } // Take field pub fn take_metadata(&mut self) -> Metadata { self.metadata.take().unwrap_or_else(|| Metadata::new()) } } impl ::protobuf::Message for Frame { fn is_initialized(&self) -> bool { for v in &self.device_state { if !v.is_initialized() { return false; } }; for v in &self.goodbye { if !v.is_initialized() { return false; } }; for v in &self.state { if !v.is_initialized() { return false; } }; for v in &self.metadata { if !v.is_initialized() { return false; } }; true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 1 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.version = ::std::option::Option::Some(tmp); }, 2 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.ident)?; }, 3 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.protocol_version)?; }, 4 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.seq_nr = ::std::option::Option::Some(tmp); }, 5 => { ::protobuf::rt::read_proto2_enum_with_unknown_fields_into(wire_type, is, &mut self.typ, 5, &mut self.unknown_fields)? }, 7 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.device_state)?; }, 11 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.goodbye)?; }, 12 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.state)?; }, 13 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.position = ::std::option::Option::Some(tmp); }, 14 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.volume = ::std::option::Option::Some(tmp); }, 17 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_int64()?; self.state_update_id = ::std::option::Option::Some(tmp); }, 18 => { ::protobuf::rt::read_repeated_string_into(wire_type, is, &mut self.recipient)?; }, 19 => { ::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.context_player_state)?; }, 20 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.new_name)?; }, 25 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.metadata)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if let Some(v) = self.version { my_size += ::protobuf::rt::value_size(1, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(ref v) = self.ident.as_ref() { my_size += ::protobuf::rt::string_size(2, &v); } if let Some(ref v) = self.protocol_version.as_ref() { my_size += ::protobuf::rt::string_size(3, &v); } if let Some(v) = self.seq_nr { my_size += ::protobuf::rt::value_size(4, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.typ { my_size += ::protobuf::rt::enum_size(5, v); } if let Some(ref v) = self.device_state.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } if let Some(ref v) = self.goodbye.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } if let Some(ref v) = self.state.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } if let Some(v) = self.position { my_size += ::protobuf::rt::value_size(13, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.volume { my_size += ::protobuf::rt::value_size(14, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.state_update_id { my_size += ::protobuf::rt::value_size(17, v, ::protobuf::wire_format::WireTypeVarint); } for value in &self.recipient { my_size += ::protobuf::rt::string_size(18, &value); }; if let Some(ref v) = self.context_player_state.as_ref() { my_size += ::protobuf::rt::bytes_size(19, &v); } if let Some(ref v) = self.new_name.as_ref() { my_size += ::protobuf::rt::string_size(20, &v); } if let Some(ref v) = self.metadata.as_ref() { let len = v.compute_size(); my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if let Some(v) = self.version { os.write_uint32(1, v)?; } if let Some(ref v) = self.ident.as_ref() { os.write_string(2, &v)?; } if let Some(ref v) = self.protocol_version.as_ref() { os.write_string(3, &v)?; } if let Some(v) = self.seq_nr { os.write_uint32(4, v)?; } if let Some(v) = self.typ { os.write_enum(5, v.value())?; } if let Some(ref v) = self.device_state.as_ref() { os.write_tag(7, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } if let Some(ref v) = self.goodbye.as_ref() { os.write_tag(11, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } if let Some(ref v) = self.state.as_ref() { os.write_tag(12, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } if let Some(v) = self.position { os.write_uint32(13, v)?; } if let Some(v) = self.volume { os.write_uint32(14, v)?; } if let Some(v) = self.state_update_id { os.write_int64(17, v)?; } for v in &self.recipient { os.write_string(18, &v)?; }; if let Some(ref v) = self.context_player_state.as_ref() { os.write_bytes(19, &v)?; } if let Some(ref v) = self.new_name.as_ref() { os.write_string(20, &v)?; } if let Some(ref v) = self.metadata.as_ref() { os.write_tag(25, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Frame { Frame::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "version", |m: &Frame| { &m.version }, |m: &mut Frame| { &mut m.version }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "ident", |m: &Frame| { &m.ident }, |m: &mut Frame| { &mut m.ident }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "protocol_version", |m: &Frame| { &m.protocol_version }, |m: &mut Frame| { &mut m.protocol_version }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "seq_nr", |m: &Frame| { &m.seq_nr }, |m: &mut Frame| { &mut m.seq_nr }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeEnum>( "typ", |m: &Frame| { &m.typ }, |m: &mut Frame| { &mut m.typ }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "device_state", |m: &Frame| { &m.device_state }, |m: &mut Frame| { &mut m.device_state }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "goodbye", |m: &Frame| { &m.goodbye }, |m: &mut Frame| { &mut m.goodbye }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "state", |m: &Frame| { &m.state }, |m: &mut Frame| { &mut m.state }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "position", |m: &Frame| { &m.position }, |m: &mut Frame| { &mut m.position }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "volume", |m: &Frame| { &m.volume }, |m: &mut Frame| { &mut m.volume }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeInt64>( "state_update_id", |m: &Frame| { &m.state_update_id }, |m: &mut Frame| { &mut m.state_update_id }, )); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "recipient", |m: &Frame| { &m.recipient }, |m: &mut Frame| { &mut m.recipient }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>( "context_player_state", |m: &Frame| { &m.context_player_state }, |m: &mut Frame| { &mut m.context_player_state }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "new_name", |m: &Frame| { &m.new_name }, |m: &mut Frame| { &mut m.new_name }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "metadata", |m: &Frame| { &m.metadata }, |m: &mut Frame| { &mut m.metadata }, )); ::protobuf::reflect::MessageDescriptor::new::( "Frame", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Frame { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Frame, }; unsafe { instance.get(Frame::new) } } } impl ::protobuf::Clear for Frame { fn clear(&mut self) { self.version = ::std::option::Option::None; self.ident.clear(); self.protocol_version.clear(); self.seq_nr = ::std::option::Option::None; self.typ = ::std::option::Option::None; self.device_state.clear(); self.goodbye.clear(); self.state.clear(); self.position = ::std::option::Option::None; self.volume = ::std::option::Option::None; self.state_update_id = ::std::option::Option::None; self.recipient.clear(); self.context_player_state.clear(); self.new_name.clear(); self.metadata.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Frame { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Frame { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct DeviceState { // message fields sw_version: ::protobuf::SingularField<::std::string::String>, is_active: ::std::option::Option, can_play: ::std::option::Option, volume: ::std::option::Option, name: ::protobuf::SingularField<::std::string::String>, error_code: ::std::option::Option, became_active_at: ::std::option::Option, error_message: ::protobuf::SingularField<::std::string::String>, capabilities: ::protobuf::RepeatedField, context_player_error: ::protobuf::SingularField<::std::string::String>, metadata: ::protobuf::RepeatedField, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a DeviceState { fn default() -> &'a DeviceState { ::default_instance() } } impl DeviceState { pub fn new() -> DeviceState { ::std::default::Default::default() } // optional string sw_version = 1; pub fn get_sw_version(&self) -> &str { match self.sw_version.as_ref() { Some(v) => &v, None => "", } } pub fn clear_sw_version(&mut self) { self.sw_version.clear(); } pub fn has_sw_version(&self) -> bool { self.sw_version.is_some() } // Param is passed by value, moved pub fn set_sw_version(&mut self, v: ::std::string::String) { self.sw_version = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_sw_version(&mut self) -> &mut ::std::string::String { if self.sw_version.is_none() { self.sw_version.set_default(); } self.sw_version.as_mut().unwrap() } // Take field pub fn take_sw_version(&mut self) -> ::std::string::String { self.sw_version.take().unwrap_or_else(|| ::std::string::String::new()) } // optional bool is_active = 10; pub fn get_is_active(&self) -> bool { self.is_active.unwrap_or(false) } pub fn clear_is_active(&mut self) { self.is_active = ::std::option::Option::None; } pub fn has_is_active(&self) -> bool { self.is_active.is_some() } // Param is passed by value, moved pub fn set_is_active(&mut self, v: bool) { self.is_active = ::std::option::Option::Some(v); } // optional bool can_play = 11; pub fn get_can_play(&self) -> bool { self.can_play.unwrap_or(false) } pub fn clear_can_play(&mut self) { self.can_play = ::std::option::Option::None; } pub fn has_can_play(&self) -> bool { self.can_play.is_some() } // Param is passed by value, moved pub fn set_can_play(&mut self, v: bool) { self.can_play = ::std::option::Option::Some(v); } // optional uint32 volume = 12; pub fn get_volume(&self) -> u32 { self.volume.unwrap_or(0) } pub fn clear_volume(&mut self) { self.volume = ::std::option::Option::None; } pub fn has_volume(&self) -> bool { self.volume.is_some() } // Param is passed by value, moved pub fn set_volume(&mut self, v: u32) { self.volume = ::std::option::Option::Some(v); } // optional string name = 13; pub fn get_name(&self) -> &str { match self.name.as_ref() { Some(v) => &v, None => "", } } pub fn clear_name(&mut self) { self.name.clear(); } pub fn has_name(&self) -> bool { self.name.is_some() } // Param is passed by value, moved pub fn set_name(&mut self, v: ::std::string::String) { self.name = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_name(&mut self) -> &mut ::std::string::String { if self.name.is_none() { self.name.set_default(); } self.name.as_mut().unwrap() } // Take field pub fn take_name(&mut self) -> ::std::string::String { self.name.take().unwrap_or_else(|| ::std::string::String::new()) } // optional uint32 error_code = 14; pub fn get_error_code(&self) -> u32 { self.error_code.unwrap_or(0) } pub fn clear_error_code(&mut self) { self.error_code = ::std::option::Option::None; } pub fn has_error_code(&self) -> bool { self.error_code.is_some() } // Param is passed by value, moved pub fn set_error_code(&mut self, v: u32) { self.error_code = ::std::option::Option::Some(v); } // optional int64 became_active_at = 15; pub fn get_became_active_at(&self) -> i64 { self.became_active_at.unwrap_or(0) } pub fn clear_became_active_at(&mut self) { self.became_active_at = ::std::option::Option::None; } pub fn has_became_active_at(&self) -> bool { self.became_active_at.is_some() } // Param is passed by value, moved pub fn set_became_active_at(&mut self, v: i64) { self.became_active_at = ::std::option::Option::Some(v); } // optional string error_message = 16; pub fn get_error_message(&self) -> &str { match self.error_message.as_ref() { Some(v) => &v, None => "", } } pub fn clear_error_message(&mut self) { self.error_message.clear(); } pub fn has_error_message(&self) -> bool { self.error_message.is_some() } // Param is passed by value, moved pub fn set_error_message(&mut self, v: ::std::string::String) { self.error_message = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_error_message(&mut self) -> &mut ::std::string::String { if self.error_message.is_none() { self.error_message.set_default(); } self.error_message.as_mut().unwrap() } // Take field pub fn take_error_message(&mut self) -> ::std::string::String { self.error_message.take().unwrap_or_else(|| ::std::string::String::new()) } // repeated .Capability capabilities = 17; pub fn get_capabilities(&self) -> &[Capability] { &self.capabilities } pub fn clear_capabilities(&mut self) { self.capabilities.clear(); } // Param is passed by value, moved pub fn set_capabilities(&mut self, v: ::protobuf::RepeatedField) { self.capabilities = v; } // Mutable pointer to the field. pub fn mut_capabilities(&mut self) -> &mut ::protobuf::RepeatedField { &mut self.capabilities } // Take field pub fn take_capabilities(&mut self) -> ::protobuf::RepeatedField { ::std::mem::replace(&mut self.capabilities, ::protobuf::RepeatedField::new()) } // optional string context_player_error = 20; pub fn get_context_player_error(&self) -> &str { match self.context_player_error.as_ref() { Some(v) => &v, None => "", } } pub fn clear_context_player_error(&mut self) { self.context_player_error.clear(); } pub fn has_context_player_error(&self) -> bool { self.context_player_error.is_some() } // Param is passed by value, moved pub fn set_context_player_error(&mut self, v: ::std::string::String) { self.context_player_error = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_context_player_error(&mut self) -> &mut ::std::string::String { if self.context_player_error.is_none() { self.context_player_error.set_default(); } self.context_player_error.as_mut().unwrap() } // Take field pub fn take_context_player_error(&mut self) -> ::std::string::String { self.context_player_error.take().unwrap_or_else(|| ::std::string::String::new()) } // repeated .Metadata metadata = 25; pub fn get_metadata(&self) -> &[Metadata] { &self.metadata } pub fn clear_metadata(&mut self) { self.metadata.clear(); } // Param is passed by value, moved pub fn set_metadata(&mut self, v: ::protobuf::RepeatedField) { self.metadata = v; } // Mutable pointer to the field. pub fn mut_metadata(&mut self) -> &mut ::protobuf::RepeatedField { &mut self.metadata } // Take field pub fn take_metadata(&mut self) -> ::protobuf::RepeatedField { ::std::mem::replace(&mut self.metadata, ::protobuf::RepeatedField::new()) } } impl ::protobuf::Message for DeviceState { fn is_initialized(&self) -> bool { for v in &self.capabilities { if !v.is_initialized() { return false; } }; for v in &self.metadata { if !v.is_initialized() { return false; } }; true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 1 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.sw_version)?; }, 10 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_bool()?; self.is_active = ::std::option::Option::Some(tmp); }, 11 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_bool()?; self.can_play = ::std::option::Option::Some(tmp); }, 12 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.volume = ::std::option::Option::Some(tmp); }, 13 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.name)?; }, 14 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.error_code = ::std::option::Option::Some(tmp); }, 15 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_int64()?; self.became_active_at = ::std::option::Option::Some(tmp); }, 16 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.error_message)?; }, 17 => { ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.capabilities)?; }, 20 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.context_player_error)?; }, 25 => { ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.metadata)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if let Some(ref v) = self.sw_version.as_ref() { my_size += ::protobuf::rt::string_size(1, &v); } if let Some(v) = self.is_active { my_size += 2; } if let Some(v) = self.can_play { my_size += 2; } if let Some(v) = self.volume { my_size += ::protobuf::rt::value_size(12, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(ref v) = self.name.as_ref() { my_size += ::protobuf::rt::string_size(13, &v); } if let Some(v) = self.error_code { my_size += ::protobuf::rt::value_size(14, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.became_active_at { my_size += ::protobuf::rt::value_size(15, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(ref v) = self.error_message.as_ref() { my_size += ::protobuf::rt::string_size(16, &v); } for value in &self.capabilities { let len = value.compute_size(); my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len; }; if let Some(ref v) = self.context_player_error.as_ref() { my_size += ::protobuf::rt::string_size(20, &v); } for value in &self.metadata { let len = value.compute_size(); my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len; }; my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if let Some(ref v) = self.sw_version.as_ref() { os.write_string(1, &v)?; } if let Some(v) = self.is_active { os.write_bool(10, v)?; } if let Some(v) = self.can_play { os.write_bool(11, v)?; } if let Some(v) = self.volume { os.write_uint32(12, v)?; } if let Some(ref v) = self.name.as_ref() { os.write_string(13, &v)?; } if let Some(v) = self.error_code { os.write_uint32(14, v)?; } if let Some(v) = self.became_active_at { os.write_int64(15, v)?; } if let Some(ref v) = self.error_message.as_ref() { os.write_string(16, &v)?; } for v in &self.capabilities { os.write_tag(17, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; }; if let Some(ref v) = self.context_player_error.as_ref() { os.write_string(20, &v)?; } for v in &self.metadata { os.write_tag(25, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; }; os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> DeviceState { DeviceState::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "sw_version", |m: &DeviceState| { &m.sw_version }, |m: &mut DeviceState| { &mut m.sw_version }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeBool>( "is_active", |m: &DeviceState| { &m.is_active }, |m: &mut DeviceState| { &mut m.is_active }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeBool>( "can_play", |m: &DeviceState| { &m.can_play }, |m: &mut DeviceState| { &mut m.can_play }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "volume", |m: &DeviceState| { &m.volume }, |m: &mut DeviceState| { &mut m.volume }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "name", |m: &DeviceState| { &m.name }, |m: &mut DeviceState| { &mut m.name }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "error_code", |m: &DeviceState| { &m.error_code }, |m: &mut DeviceState| { &mut m.error_code }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeInt64>( "became_active_at", |m: &DeviceState| { &m.became_active_at }, |m: &mut DeviceState| { &mut m.became_active_at }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "error_message", |m: &DeviceState| { &m.error_message }, |m: &mut DeviceState| { &mut m.error_message }, )); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "capabilities", |m: &DeviceState| { &m.capabilities }, |m: &mut DeviceState| { &mut m.capabilities }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "context_player_error", |m: &DeviceState| { &m.context_player_error }, |m: &mut DeviceState| { &mut m.context_player_error }, )); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "metadata", |m: &DeviceState| { &m.metadata }, |m: &mut DeviceState| { &mut m.metadata }, )); ::protobuf::reflect::MessageDescriptor::new::( "DeviceState", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static DeviceState { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const DeviceState, }; unsafe { instance.get(DeviceState::new) } } } impl ::protobuf::Clear for DeviceState { fn clear(&mut self) { self.sw_version.clear(); self.is_active = ::std::option::Option::None; self.can_play = ::std::option::Option::None; self.volume = ::std::option::Option::None; self.name.clear(); self.error_code = ::std::option::Option::None; self.became_active_at = ::std::option::Option::None; self.error_message.clear(); self.capabilities.clear(); self.context_player_error.clear(); self.metadata.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for DeviceState { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for DeviceState { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Capability { // message fields typ: ::std::option::Option, intValue: ::std::vec::Vec, stringValue: ::protobuf::RepeatedField<::std::string::String>, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a Capability { fn default() -> &'a Capability { ::default_instance() } } impl Capability { pub fn new() -> Capability { ::std::default::Default::default() } // optional .CapabilityType typ = 1; pub fn get_typ(&self) -> CapabilityType { self.typ.unwrap_or(CapabilityType::kSupportedContexts) } pub fn clear_typ(&mut self) { self.typ = ::std::option::Option::None; } pub fn has_typ(&self) -> bool { self.typ.is_some() } // Param is passed by value, moved pub fn set_typ(&mut self, v: CapabilityType) { self.typ = ::std::option::Option::Some(v); } // repeated int64 intValue = 2; pub fn get_intValue(&self) -> &[i64] { &self.intValue } pub fn clear_intValue(&mut self) { self.intValue.clear(); } // Param is passed by value, moved pub fn set_intValue(&mut self, v: ::std::vec::Vec) { self.intValue = v; } // Mutable pointer to the field. pub fn mut_intValue(&mut self) -> &mut ::std::vec::Vec { &mut self.intValue } // Take field pub fn take_intValue(&mut self) -> ::std::vec::Vec { ::std::mem::replace(&mut self.intValue, ::std::vec::Vec::new()) } // repeated string stringValue = 3; pub fn get_stringValue(&self) -> &[::std::string::String] { &self.stringValue } pub fn clear_stringValue(&mut self) { self.stringValue.clear(); } // Param is passed by value, moved pub fn set_stringValue(&mut self, v: ::protobuf::RepeatedField<::std::string::String>) { self.stringValue = v; } // Mutable pointer to the field. pub fn mut_stringValue(&mut self) -> &mut ::protobuf::RepeatedField<::std::string::String> { &mut self.stringValue } // Take field pub fn take_stringValue(&mut self) -> ::protobuf::RepeatedField<::std::string::String> { ::std::mem::replace(&mut self.stringValue, ::protobuf::RepeatedField::new()) } } impl ::protobuf::Message for Capability { fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 1 => { ::protobuf::rt::read_proto2_enum_with_unknown_fields_into(wire_type, is, &mut self.typ, 1, &mut self.unknown_fields)? }, 2 => { ::protobuf::rt::read_repeated_int64_into(wire_type, is, &mut self.intValue)?; }, 3 => { ::protobuf::rt::read_repeated_string_into(wire_type, is, &mut self.stringValue)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if let Some(v) = self.typ { my_size += ::protobuf::rt::enum_size(1, v); } for value in &self.intValue { my_size += ::protobuf::rt::value_size(2, *value, ::protobuf::wire_format::WireTypeVarint); }; for value in &self.stringValue { my_size += ::protobuf::rt::string_size(3, &value); }; my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if let Some(v) = self.typ { os.write_enum(1, v.value())?; } for v in &self.intValue { os.write_int64(2, *v)?; }; for v in &self.stringValue { os.write_string(3, &v)?; }; os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Capability { Capability::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeEnum>( "typ", |m: &Capability| { &m.typ }, |m: &mut Capability| { &mut m.typ }, )); fields.push(::protobuf::reflect::accessor::make_vec_accessor::<_, ::protobuf::types::ProtobufTypeInt64>( "intValue", |m: &Capability| { &m.intValue }, |m: &mut Capability| { &mut m.intValue }, )); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "stringValue", |m: &Capability| { &m.stringValue }, |m: &mut Capability| { &mut m.stringValue }, )); ::protobuf::reflect::MessageDescriptor::new::( "Capability", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Capability { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Capability, }; unsafe { instance.get(Capability::new) } } } impl ::protobuf::Clear for Capability { fn clear(&mut self) { self.typ = ::std::option::Option::None; self.intValue.clear(); self.stringValue.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Capability { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Capability { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Goodbye { // message fields reason: ::protobuf::SingularField<::std::string::String>, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a Goodbye { fn default() -> &'a Goodbye { ::default_instance() } } impl Goodbye { pub fn new() -> Goodbye { ::std::default::Default::default() } // optional string reason = 1; pub fn get_reason(&self) -> &str { match self.reason.as_ref() { Some(v) => &v, None => "", } } pub fn clear_reason(&mut self) { self.reason.clear(); } pub fn has_reason(&self) -> bool { self.reason.is_some() } // Param is passed by value, moved pub fn set_reason(&mut self, v: ::std::string::String) { self.reason = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_reason(&mut self) -> &mut ::std::string::String { if self.reason.is_none() { self.reason.set_default(); } self.reason.as_mut().unwrap() } // Take field pub fn take_reason(&mut self) -> ::std::string::String { self.reason.take().unwrap_or_else(|| ::std::string::String::new()) } } impl ::protobuf::Message for Goodbye { fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 1 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.reason)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if let Some(ref v) = self.reason.as_ref() { my_size += ::protobuf::rt::string_size(1, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if let Some(ref v) = self.reason.as_ref() { os.write_string(1, &v)?; } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Goodbye { Goodbye::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "reason", |m: &Goodbye| { &m.reason }, |m: &mut Goodbye| { &mut m.reason }, )); ::protobuf::reflect::MessageDescriptor::new::( "Goodbye", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Goodbye { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Goodbye, }; unsafe { instance.get(Goodbye::new) } } } impl ::protobuf::Clear for Goodbye { fn clear(&mut self) { self.reason.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Goodbye { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Goodbye { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct State { // message fields context_uri: ::protobuf::SingularField<::std::string::String>, index: ::std::option::Option, position_ms: ::std::option::Option, status: ::std::option::Option, position_measured_at: ::std::option::Option, context_description: ::protobuf::SingularField<::std::string::String>, shuffle: ::std::option::Option, repeat: ::std::option::Option, last_command_ident: ::protobuf::SingularField<::std::string::String>, last_command_msgid: ::std::option::Option, playing_from_fallback: ::std::option::Option, row: ::std::option::Option, playing_track_index: ::std::option::Option, track: ::protobuf::RepeatedField, ad: ::protobuf::SingularPtrField, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a State { fn default() -> &'a State { ::default_instance() } } impl State { pub fn new() -> State { ::std::default::Default::default() } // optional string context_uri = 2; pub fn get_context_uri(&self) -> &str { match self.context_uri.as_ref() { Some(v) => &v, None => "", } } pub fn clear_context_uri(&mut self) { self.context_uri.clear(); } pub fn has_context_uri(&self) -> bool { self.context_uri.is_some() } // Param is passed by value, moved pub fn set_context_uri(&mut self, v: ::std::string::String) { self.context_uri = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_context_uri(&mut self) -> &mut ::std::string::String { if self.context_uri.is_none() { self.context_uri.set_default(); } self.context_uri.as_mut().unwrap() } // Take field pub fn take_context_uri(&mut self) -> ::std::string::String { self.context_uri.take().unwrap_or_else(|| ::std::string::String::new()) } // optional uint32 index = 3; pub fn get_index(&self) -> u32 { self.index.unwrap_or(0) } pub fn clear_index(&mut self) { self.index = ::std::option::Option::None; } pub fn has_index(&self) -> bool { self.index.is_some() } // Param is passed by value, moved pub fn set_index(&mut self, v: u32) { self.index = ::std::option::Option::Some(v); } // optional uint32 position_ms = 4; pub fn get_position_ms(&self) -> u32 { self.position_ms.unwrap_or(0) } pub fn clear_position_ms(&mut self) { self.position_ms = ::std::option::Option::None; } pub fn has_position_ms(&self) -> bool { self.position_ms.is_some() } // Param is passed by value, moved pub fn set_position_ms(&mut self, v: u32) { self.position_ms = ::std::option::Option::Some(v); } // optional .PlayStatus status = 5; pub fn get_status(&self) -> PlayStatus { self.status.unwrap_or(PlayStatus::kPlayStatusStop) } pub fn clear_status(&mut self) { self.status = ::std::option::Option::None; } pub fn has_status(&self) -> bool { self.status.is_some() } // Param is passed by value, moved pub fn set_status(&mut self, v: PlayStatus) { self.status = ::std::option::Option::Some(v); } // optional uint64 position_measured_at = 7; pub fn get_position_measured_at(&self) -> u64 { self.position_measured_at.unwrap_or(0) } pub fn clear_position_measured_at(&mut self) { self.position_measured_at = ::std::option::Option::None; } pub fn has_position_measured_at(&self) -> bool { self.position_measured_at.is_some() } // Param is passed by value, moved pub fn set_position_measured_at(&mut self, v: u64) { self.position_measured_at = ::std::option::Option::Some(v); } // optional string context_description = 8; pub fn get_context_description(&self) -> &str { match self.context_description.as_ref() { Some(v) => &v, None => "", } } pub fn clear_context_description(&mut self) { self.context_description.clear(); } pub fn has_context_description(&self) -> bool { self.context_description.is_some() } // Param is passed by value, moved pub fn set_context_description(&mut self, v: ::std::string::String) { self.context_description = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_context_description(&mut self) -> &mut ::std::string::String { if self.context_description.is_none() { self.context_description.set_default(); } self.context_description.as_mut().unwrap() } // Take field pub fn take_context_description(&mut self) -> ::std::string::String { self.context_description.take().unwrap_or_else(|| ::std::string::String::new()) } // optional bool shuffle = 13; pub fn get_shuffle(&self) -> bool { self.shuffle.unwrap_or(false) } pub fn clear_shuffle(&mut self) { self.shuffle = ::std::option::Option::None; } pub fn has_shuffle(&self) -> bool { self.shuffle.is_some() } // Param is passed by value, moved pub fn set_shuffle(&mut self, v: bool) { self.shuffle = ::std::option::Option::Some(v); } // optional bool repeat = 14; pub fn get_repeat(&self) -> bool { self.repeat.unwrap_or(false) } pub fn clear_repeat(&mut self) { self.repeat = ::std::option::Option::None; } pub fn has_repeat(&self) -> bool { self.repeat.is_some() } // Param is passed by value, moved pub fn set_repeat(&mut self, v: bool) { self.repeat = ::std::option::Option::Some(v); } // optional string last_command_ident = 20; pub fn get_last_command_ident(&self) -> &str { match self.last_command_ident.as_ref() { Some(v) => &v, None => "", } } pub fn clear_last_command_ident(&mut self) { self.last_command_ident.clear(); } pub fn has_last_command_ident(&self) -> bool { self.last_command_ident.is_some() } // Param is passed by value, moved pub fn set_last_command_ident(&mut self, v: ::std::string::String) { self.last_command_ident = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_last_command_ident(&mut self) -> &mut ::std::string::String { if self.last_command_ident.is_none() { self.last_command_ident.set_default(); } self.last_command_ident.as_mut().unwrap() } // Take field pub fn take_last_command_ident(&mut self) -> ::std::string::String { self.last_command_ident.take().unwrap_or_else(|| ::std::string::String::new()) } // optional uint32 last_command_msgid = 21; pub fn get_last_command_msgid(&self) -> u32 { self.last_command_msgid.unwrap_or(0) } pub fn clear_last_command_msgid(&mut self) { self.last_command_msgid = ::std::option::Option::None; } pub fn has_last_command_msgid(&self) -> bool { self.last_command_msgid.is_some() } // Param is passed by value, moved pub fn set_last_command_msgid(&mut self, v: u32) { self.last_command_msgid = ::std::option::Option::Some(v); } // optional bool playing_from_fallback = 24; pub fn get_playing_from_fallback(&self) -> bool { self.playing_from_fallback.unwrap_or(false) } pub fn clear_playing_from_fallback(&mut self) { self.playing_from_fallback = ::std::option::Option::None; } pub fn has_playing_from_fallback(&self) -> bool { self.playing_from_fallback.is_some() } // Param is passed by value, moved pub fn set_playing_from_fallback(&mut self, v: bool) { self.playing_from_fallback = ::std::option::Option::Some(v); } // optional uint32 row = 25; pub fn get_row(&self) -> u32 { self.row.unwrap_or(0) } pub fn clear_row(&mut self) { self.row = ::std::option::Option::None; } pub fn has_row(&self) -> bool { self.row.is_some() } // Param is passed by value, moved pub fn set_row(&mut self, v: u32) { self.row = ::std::option::Option::Some(v); } // optional uint32 playing_track_index = 26; pub fn get_playing_track_index(&self) -> u32 { self.playing_track_index.unwrap_or(0) } pub fn clear_playing_track_index(&mut self) { self.playing_track_index = ::std::option::Option::None; } pub fn has_playing_track_index(&self) -> bool { self.playing_track_index.is_some() } // Param is passed by value, moved pub fn set_playing_track_index(&mut self, v: u32) { self.playing_track_index = ::std::option::Option::Some(v); } // repeated .TrackRef track = 27; pub fn get_track(&self) -> &[TrackRef] { &self.track } pub fn clear_track(&mut self) { self.track.clear(); } // Param is passed by value, moved pub fn set_track(&mut self, v: ::protobuf::RepeatedField) { self.track = v; } // Mutable pointer to the field. pub fn mut_track(&mut self) -> &mut ::protobuf::RepeatedField { &mut self.track } // Take field pub fn take_track(&mut self) -> ::protobuf::RepeatedField { ::std::mem::replace(&mut self.track, ::protobuf::RepeatedField::new()) } // optional .Ad ad = 28; pub fn get_ad(&self) -> &Ad { self.ad.as_ref().unwrap_or_else(|| Ad::default_instance()) } pub fn clear_ad(&mut self) { self.ad.clear(); } pub fn has_ad(&self) -> bool { self.ad.is_some() } // Param is passed by value, moved pub fn set_ad(&mut self, v: Ad) { self.ad = ::protobuf::SingularPtrField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_ad(&mut self) -> &mut Ad { if self.ad.is_none() { self.ad.set_default(); } self.ad.as_mut().unwrap() } // Take field pub fn take_ad(&mut self) -> Ad { self.ad.take().unwrap_or_else(|| Ad::new()) } } impl ::protobuf::Message for State { fn is_initialized(&self) -> bool { for v in &self.track { if !v.is_initialized() { return false; } }; for v in &self.ad { if !v.is_initialized() { return false; } }; true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 2 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.context_uri)?; }, 3 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.index = ::std::option::Option::Some(tmp); }, 4 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.position_ms = ::std::option::Option::Some(tmp); }, 5 => { ::protobuf::rt::read_proto2_enum_with_unknown_fields_into(wire_type, is, &mut self.status, 5, &mut self.unknown_fields)? }, 7 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint64()?; self.position_measured_at = ::std::option::Option::Some(tmp); }, 8 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.context_description)?; }, 13 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_bool()?; self.shuffle = ::std::option::Option::Some(tmp); }, 14 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_bool()?; self.repeat = ::std::option::Option::Some(tmp); }, 20 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.last_command_ident)?; }, 21 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.last_command_msgid = ::std::option::Option::Some(tmp); }, 24 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_bool()?; self.playing_from_fallback = ::std::option::Option::Some(tmp); }, 25 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.row = ::std::option::Option::Some(tmp); }, 26 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_uint32()?; self.playing_track_index = ::std::option::Option::Some(tmp); }, 27 => { ::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.track)?; }, 28 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.ad)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if let Some(ref v) = self.context_uri.as_ref() { my_size += ::protobuf::rt::string_size(2, &v); } if let Some(v) = self.index { my_size += ::protobuf::rt::value_size(3, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.position_ms { my_size += ::protobuf::rt::value_size(4, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.status { my_size += ::protobuf::rt::enum_size(5, v); } if let Some(v) = self.position_measured_at { my_size += ::protobuf::rt::value_size(7, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(ref v) = self.context_description.as_ref() { my_size += ::protobuf::rt::string_size(8, &v); } if let Some(v) = self.shuffle { my_size += 2; } if let Some(v) = self.repeat { my_size += 2; } if let Some(ref v) = self.last_command_ident.as_ref() { my_size += ::protobuf::rt::string_size(20, &v); } if let Some(v) = self.last_command_msgid { my_size += ::protobuf::rt::value_size(21, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.playing_from_fallback { my_size += 3; } if let Some(v) = self.row { my_size += ::protobuf::rt::value_size(25, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(v) = self.playing_track_index { my_size += ::protobuf::rt::value_size(26, v, ::protobuf::wire_format::WireTypeVarint); } for value in &self.track { let len = value.compute_size(); my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len; }; if let Some(ref v) = self.ad.as_ref() { let len = v.compute_size(); my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if let Some(ref v) = self.context_uri.as_ref() { os.write_string(2, &v)?; } if let Some(v) = self.index { os.write_uint32(3, v)?; } if let Some(v) = self.position_ms { os.write_uint32(4, v)?; } if let Some(v) = self.status { os.write_enum(5, v.value())?; } if let Some(v) = self.position_measured_at { os.write_uint64(7, v)?; } if let Some(ref v) = self.context_description.as_ref() { os.write_string(8, &v)?; } if let Some(v) = self.shuffle { os.write_bool(13, v)?; } if let Some(v) = self.repeat { os.write_bool(14, v)?; } if let Some(ref v) = self.last_command_ident.as_ref() { os.write_string(20, &v)?; } if let Some(v) = self.last_command_msgid { os.write_uint32(21, v)?; } if let Some(v) = self.playing_from_fallback { os.write_bool(24, v)?; } if let Some(v) = self.row { os.write_uint32(25, v)?; } if let Some(v) = self.playing_track_index { os.write_uint32(26, v)?; } for v in &self.track { os.write_tag(27, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; }; if let Some(ref v) = self.ad.as_ref() { os.write_tag(28, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> State { State::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "context_uri", |m: &State| { &m.context_uri }, |m: &mut State| { &mut m.context_uri }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "index", |m: &State| { &m.index }, |m: &mut State| { &mut m.index }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "position_ms", |m: &State| { &m.position_ms }, |m: &mut State| { &mut m.position_ms }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeEnum>( "status", |m: &State| { &m.status }, |m: &mut State| { &mut m.status }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( "position_measured_at", |m: &State| { &m.position_measured_at }, |m: &mut State| { &mut m.position_measured_at }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "context_description", |m: &State| { &m.context_description }, |m: &mut State| { &mut m.context_description }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeBool>( "shuffle", |m: &State| { &m.shuffle }, |m: &mut State| { &mut m.shuffle }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeBool>( "repeat", |m: &State| { &m.repeat }, |m: &mut State| { &mut m.repeat }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "last_command_ident", |m: &State| { &m.last_command_ident }, |m: &mut State| { &mut m.last_command_ident }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "last_command_msgid", |m: &State| { &m.last_command_msgid }, |m: &mut State| { &mut m.last_command_msgid }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeBool>( "playing_from_fallback", |m: &State| { &m.playing_from_fallback }, |m: &mut State| { &mut m.playing_from_fallback }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "row", |m: &State| { &m.row }, |m: &mut State| { &mut m.row }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeUint32>( "playing_track_index", |m: &State| { &m.playing_track_index }, |m: &mut State| { &mut m.playing_track_index }, )); fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "track", |m: &State| { &m.track }, |m: &mut State| { &mut m.track }, )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "ad", |m: &State| { &m.ad }, |m: &mut State| { &mut m.ad }, )); ::protobuf::reflect::MessageDescriptor::new::( "State", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static State { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const State, }; unsafe { instance.get(State::new) } } } impl ::protobuf::Clear for State { fn clear(&mut self) { self.context_uri.clear(); self.index = ::std::option::Option::None; self.position_ms = ::std::option::Option::None; self.status = ::std::option::Option::None; self.position_measured_at = ::std::option::Option::None; self.context_description.clear(); self.shuffle = ::std::option::Option::None; self.repeat = ::std::option::Option::None; self.last_command_ident.clear(); self.last_command_msgid = ::std::option::Option::None; self.playing_from_fallback = ::std::option::Option::None; self.row = ::std::option::Option::None; self.playing_track_index = ::std::option::Option::None; self.track.clear(); self.ad.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for State { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for State { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct TrackRef { // message fields gid: ::protobuf::SingularField<::std::vec::Vec>, uri: ::protobuf::SingularField<::std::string::String>, queued: ::std::option::Option, context: ::protobuf::SingularField<::std::string::String>, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a TrackRef { fn default() -> &'a TrackRef { ::default_instance() } } impl TrackRef { pub fn new() -> TrackRef { ::std::default::Default::default() } // optional bytes gid = 1; pub fn get_gid(&self) -> &[u8] { match self.gid.as_ref() { Some(v) => &v, None => &[], } } pub fn clear_gid(&mut self) { self.gid.clear(); } pub fn has_gid(&self) -> bool { self.gid.is_some() } // Param is passed by value, moved pub fn set_gid(&mut self, v: ::std::vec::Vec) { self.gid = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_gid(&mut self) -> &mut ::std::vec::Vec { if self.gid.is_none() { self.gid.set_default(); } self.gid.as_mut().unwrap() } // Take field pub fn take_gid(&mut self) -> ::std::vec::Vec { self.gid.take().unwrap_or_else(|| ::std::vec::Vec::new()) } // optional string uri = 2; pub fn get_uri(&self) -> &str { match self.uri.as_ref() { Some(v) => &v, None => "", } } pub fn clear_uri(&mut self) { self.uri.clear(); } pub fn has_uri(&self) -> bool { self.uri.is_some() } // Param is passed by value, moved pub fn set_uri(&mut self, v: ::std::string::String) { self.uri = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_uri(&mut self) -> &mut ::std::string::String { if self.uri.is_none() { self.uri.set_default(); } self.uri.as_mut().unwrap() } // Take field pub fn take_uri(&mut self) -> ::std::string::String { self.uri.take().unwrap_or_else(|| ::std::string::String::new()) } // optional bool queued = 3; pub fn get_queued(&self) -> bool { self.queued.unwrap_or(false) } pub fn clear_queued(&mut self) { self.queued = ::std::option::Option::None; } pub fn has_queued(&self) -> bool { self.queued.is_some() } // Param is passed by value, moved pub fn set_queued(&mut self, v: bool) { self.queued = ::std::option::Option::Some(v); } // optional string context = 4; pub fn get_context(&self) -> &str { match self.context.as_ref() { Some(v) => &v, None => "", } } pub fn clear_context(&mut self) { self.context.clear(); } pub fn has_context(&self) -> bool { self.context.is_some() } // Param is passed by value, moved pub fn set_context(&mut self, v: ::std::string::String) { self.context = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_context(&mut self) -> &mut ::std::string::String { if self.context.is_none() { self.context.set_default(); } self.context.as_mut().unwrap() } // Take field pub fn take_context(&mut self) -> ::std::string::String { self.context.take().unwrap_or_else(|| ::std::string::String::new()) } } impl ::protobuf::Message for TrackRef { fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 1 => { ::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.gid)?; }, 2 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.uri)?; }, 3 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_bool()?; self.queued = ::std::option::Option::Some(tmp); }, 4 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.context)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if let Some(ref v) = self.gid.as_ref() { my_size += ::protobuf::rt::bytes_size(1, &v); } if let Some(ref v) = self.uri.as_ref() { my_size += ::protobuf::rt::string_size(2, &v); } if let Some(v) = self.queued { my_size += 2; } if let Some(ref v) = self.context.as_ref() { my_size += ::protobuf::rt::string_size(4, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if let Some(ref v) = self.gid.as_ref() { os.write_bytes(1, &v)?; } if let Some(ref v) = self.uri.as_ref() { os.write_string(2, &v)?; } if let Some(v) = self.queued { os.write_bool(3, v)?; } if let Some(ref v) = self.context.as_ref() { os.write_string(4, &v)?; } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> TrackRef { TrackRef::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>( "gid", |m: &TrackRef| { &m.gid }, |m: &mut TrackRef| { &mut m.gid }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "uri", |m: &TrackRef| { &m.uri }, |m: &mut TrackRef| { &mut m.uri }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeBool>( "queued", |m: &TrackRef| { &m.queued }, |m: &mut TrackRef| { &mut m.queued }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "context", |m: &TrackRef| { &m.context }, |m: &mut TrackRef| { &mut m.context }, )); ::protobuf::reflect::MessageDescriptor::new::( "TrackRef", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static TrackRef { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const TrackRef, }; unsafe { instance.get(TrackRef::new) } } } impl ::protobuf::Clear for TrackRef { fn clear(&mut self) { self.gid.clear(); self.uri.clear(); self.queued = ::std::option::Option::None; self.context.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for TrackRef { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for TrackRef { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Ad { // message fields next: ::std::option::Option, ogg_fid: ::protobuf::SingularField<::std::vec::Vec>, image_fid: ::protobuf::SingularField<::std::vec::Vec>, duration: ::std::option::Option, click_url: ::protobuf::SingularField<::std::string::String>, impression_url: ::protobuf::SingularField<::std::string::String>, product: ::protobuf::SingularField<::std::string::String>, advertiser: ::protobuf::SingularField<::std::string::String>, gid: ::protobuf::SingularField<::std::vec::Vec>, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a Ad { fn default() -> &'a Ad { ::default_instance() } } impl Ad { pub fn new() -> Ad { ::std::default::Default::default() } // optional int32 next = 1; pub fn get_next(&self) -> i32 { self.next.unwrap_or(0) } pub fn clear_next(&mut self) { self.next = ::std::option::Option::None; } pub fn has_next(&self) -> bool { self.next.is_some() } // Param is passed by value, moved pub fn set_next(&mut self, v: i32) { self.next = ::std::option::Option::Some(v); } // optional bytes ogg_fid = 2; pub fn get_ogg_fid(&self) -> &[u8] { match self.ogg_fid.as_ref() { Some(v) => &v, None => &[], } } pub fn clear_ogg_fid(&mut self) { self.ogg_fid.clear(); } pub fn has_ogg_fid(&self) -> bool { self.ogg_fid.is_some() } // Param is passed by value, moved pub fn set_ogg_fid(&mut self, v: ::std::vec::Vec) { self.ogg_fid = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_ogg_fid(&mut self) -> &mut ::std::vec::Vec { if self.ogg_fid.is_none() { self.ogg_fid.set_default(); } self.ogg_fid.as_mut().unwrap() } // Take field pub fn take_ogg_fid(&mut self) -> ::std::vec::Vec { self.ogg_fid.take().unwrap_or_else(|| ::std::vec::Vec::new()) } // optional bytes image_fid = 3; pub fn get_image_fid(&self) -> &[u8] { match self.image_fid.as_ref() { Some(v) => &v, None => &[], } } pub fn clear_image_fid(&mut self) { self.image_fid.clear(); } pub fn has_image_fid(&self) -> bool { self.image_fid.is_some() } // Param is passed by value, moved pub fn set_image_fid(&mut self, v: ::std::vec::Vec) { self.image_fid = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_image_fid(&mut self) -> &mut ::std::vec::Vec { if self.image_fid.is_none() { self.image_fid.set_default(); } self.image_fid.as_mut().unwrap() } // Take field pub fn take_image_fid(&mut self) -> ::std::vec::Vec { self.image_fid.take().unwrap_or_else(|| ::std::vec::Vec::new()) } // optional int32 duration = 4; pub fn get_duration(&self) -> i32 { self.duration.unwrap_or(0) } pub fn clear_duration(&mut self) { self.duration = ::std::option::Option::None; } pub fn has_duration(&self) -> bool { self.duration.is_some() } // Param is passed by value, moved pub fn set_duration(&mut self, v: i32) { self.duration = ::std::option::Option::Some(v); } // optional string click_url = 5; pub fn get_click_url(&self) -> &str { match self.click_url.as_ref() { Some(v) => &v, None => "", } } pub fn clear_click_url(&mut self) { self.click_url.clear(); } pub fn has_click_url(&self) -> bool { self.click_url.is_some() } // Param is passed by value, moved pub fn set_click_url(&mut self, v: ::std::string::String) { self.click_url = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_click_url(&mut self) -> &mut ::std::string::String { if self.click_url.is_none() { self.click_url.set_default(); } self.click_url.as_mut().unwrap() } // Take field pub fn take_click_url(&mut self) -> ::std::string::String { self.click_url.take().unwrap_or_else(|| ::std::string::String::new()) } // optional string impression_url = 6; pub fn get_impression_url(&self) -> &str { match self.impression_url.as_ref() { Some(v) => &v, None => "", } } pub fn clear_impression_url(&mut self) { self.impression_url.clear(); } pub fn has_impression_url(&self) -> bool { self.impression_url.is_some() } // Param is passed by value, moved pub fn set_impression_url(&mut self, v: ::std::string::String) { self.impression_url = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_impression_url(&mut self) -> &mut ::std::string::String { if self.impression_url.is_none() { self.impression_url.set_default(); } self.impression_url.as_mut().unwrap() } // Take field pub fn take_impression_url(&mut self) -> ::std::string::String { self.impression_url.take().unwrap_or_else(|| ::std::string::String::new()) } // optional string product = 7; pub fn get_product(&self) -> &str { match self.product.as_ref() { Some(v) => &v, None => "", } } pub fn clear_product(&mut self) { self.product.clear(); } pub fn has_product(&self) -> bool { self.product.is_some() } // Param is passed by value, moved pub fn set_product(&mut self, v: ::std::string::String) { self.product = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_product(&mut self) -> &mut ::std::string::String { if self.product.is_none() { self.product.set_default(); } self.product.as_mut().unwrap() } // Take field pub fn take_product(&mut self) -> ::std::string::String { self.product.take().unwrap_or_else(|| ::std::string::String::new()) } // optional string advertiser = 8; pub fn get_advertiser(&self) -> &str { match self.advertiser.as_ref() { Some(v) => &v, None => "", } } pub fn clear_advertiser(&mut self) { self.advertiser.clear(); } pub fn has_advertiser(&self) -> bool { self.advertiser.is_some() } // Param is passed by value, moved pub fn set_advertiser(&mut self, v: ::std::string::String) { self.advertiser = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_advertiser(&mut self) -> &mut ::std::string::String { if self.advertiser.is_none() { self.advertiser.set_default(); } self.advertiser.as_mut().unwrap() } // Take field pub fn take_advertiser(&mut self) -> ::std::string::String { self.advertiser.take().unwrap_or_else(|| ::std::string::String::new()) } // optional bytes gid = 9; pub fn get_gid(&self) -> &[u8] { match self.gid.as_ref() { Some(v) => &v, None => &[], } } pub fn clear_gid(&mut self) { self.gid.clear(); } pub fn has_gid(&self) -> bool { self.gid.is_some() } // Param is passed by value, moved pub fn set_gid(&mut self, v: ::std::vec::Vec) { self.gid = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_gid(&mut self) -> &mut ::std::vec::Vec { if self.gid.is_none() { self.gid.set_default(); } self.gid.as_mut().unwrap() } // Take field pub fn take_gid(&mut self) -> ::std::vec::Vec { self.gid.take().unwrap_or_else(|| ::std::vec::Vec::new()) } } impl ::protobuf::Message for Ad { fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 1 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_int32()?; self.next = ::std::option::Option::Some(tmp); }, 2 => { ::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.ogg_fid)?; }, 3 => { ::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.image_fid)?; }, 4 => { if wire_type != ::protobuf::wire_format::WireTypeVarint { return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); } let tmp = is.read_int32()?; self.duration = ::std::option::Option::Some(tmp); }, 5 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.click_url)?; }, 6 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.impression_url)?; }, 7 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.product)?; }, 8 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.advertiser)?; }, 9 => { ::protobuf::rt::read_singular_bytes_into(wire_type, is, &mut self.gid)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if let Some(v) = self.next { my_size += ::protobuf::rt::value_size(1, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(ref v) = self.ogg_fid.as_ref() { my_size += ::protobuf::rt::bytes_size(2, &v); } if let Some(ref v) = self.image_fid.as_ref() { my_size += ::protobuf::rt::bytes_size(3, &v); } if let Some(v) = self.duration { my_size += ::protobuf::rt::value_size(4, v, ::protobuf::wire_format::WireTypeVarint); } if let Some(ref v) = self.click_url.as_ref() { my_size += ::protobuf::rt::string_size(5, &v); } if let Some(ref v) = self.impression_url.as_ref() { my_size += ::protobuf::rt::string_size(6, &v); } if let Some(ref v) = self.product.as_ref() { my_size += ::protobuf::rt::string_size(7, &v); } if let Some(ref v) = self.advertiser.as_ref() { my_size += ::protobuf::rt::string_size(8, &v); } if let Some(ref v) = self.gid.as_ref() { my_size += ::protobuf::rt::bytes_size(9, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if let Some(v) = self.next { os.write_int32(1, v)?; } if let Some(ref v) = self.ogg_fid.as_ref() { os.write_bytes(2, &v)?; } if let Some(ref v) = self.image_fid.as_ref() { os.write_bytes(3, &v)?; } if let Some(v) = self.duration { os.write_int32(4, v)?; } if let Some(ref v) = self.click_url.as_ref() { os.write_string(5, &v)?; } if let Some(ref v) = self.impression_url.as_ref() { os.write_string(6, &v)?; } if let Some(ref v) = self.product.as_ref() { os.write_string(7, &v)?; } if let Some(ref v) = self.advertiser.as_ref() { os.write_string(8, &v)?; } if let Some(ref v) = self.gid.as_ref() { os.write_bytes(9, &v)?; } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Ad { Ad::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeInt32>( "next", |m: &Ad| { &m.next }, |m: &mut Ad| { &mut m.next }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>( "ogg_fid", |m: &Ad| { &m.ogg_fid }, |m: &mut Ad| { &mut m.ogg_fid }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>( "image_fid", |m: &Ad| { &m.image_fid }, |m: &mut Ad| { &mut m.image_fid }, )); fields.push(::protobuf::reflect::accessor::make_option_accessor::<_, ::protobuf::types::ProtobufTypeInt32>( "duration", |m: &Ad| { &m.duration }, |m: &mut Ad| { &mut m.duration }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "click_url", |m: &Ad| { &m.click_url }, |m: &mut Ad| { &mut m.click_url }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "impression_url", |m: &Ad| { &m.impression_url }, |m: &mut Ad| { &mut m.impression_url }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "product", |m: &Ad| { &m.product }, |m: &mut Ad| { &mut m.product }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "advertiser", |m: &Ad| { &m.advertiser }, |m: &mut Ad| { &mut m.advertiser }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>( "gid", |m: &Ad| { &m.gid }, |m: &mut Ad| { &mut m.gid }, )); ::protobuf::reflect::MessageDescriptor::new::( "Ad", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Ad { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Ad, }; unsafe { instance.get(Ad::new) } } } impl ::protobuf::Clear for Ad { fn clear(&mut self) { self.next = ::std::option::Option::None; self.ogg_fid.clear(); self.image_fid.clear(); self.duration = ::std::option::Option::None; self.click_url.clear(); self.impression_url.clear(); self.product.clear(); self.advertiser.clear(); self.gid.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Ad { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Ad { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] pub struct Metadata { // message fields field_type: ::protobuf::SingularField<::std::string::String>, metadata: ::protobuf::SingularField<::std::string::String>, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } impl<'a> ::std::default::Default for &'a Metadata { fn default() -> &'a Metadata { ::default_instance() } } impl Metadata { pub fn new() -> Metadata { ::std::default::Default::default() } // optional string type = 1; pub fn get_field_type(&self) -> &str { match self.field_type.as_ref() { Some(v) => &v, None => "", } } pub fn clear_field_type(&mut self) { self.field_type.clear(); } pub fn has_field_type(&self) -> bool { self.field_type.is_some() } // Param is passed by value, moved pub fn set_field_type(&mut self, v: ::std::string::String) { self.field_type = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_field_type(&mut self) -> &mut ::std::string::String { if self.field_type.is_none() { self.field_type.set_default(); } self.field_type.as_mut().unwrap() } // Take field pub fn take_field_type(&mut self) -> ::std::string::String { self.field_type.take().unwrap_or_else(|| ::std::string::String::new()) } // optional string metadata = 2; pub fn get_metadata(&self) -> &str { match self.metadata.as_ref() { Some(v) => &v, None => "", } } pub fn clear_metadata(&mut self) { self.metadata.clear(); } pub fn has_metadata(&self) -> bool { self.metadata.is_some() } // Param is passed by value, moved pub fn set_metadata(&mut self, v: ::std::string::String) { self.metadata = ::protobuf::SingularField::some(v); } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. pub fn mut_metadata(&mut self) -> &mut ::std::string::String { if self.metadata.is_none() { self.metadata.set_default(); } self.metadata.as_mut().unwrap() } // Take field pub fn take_metadata(&mut self) -> ::std::string::String { self.metadata.take().unwrap_or_else(|| ::std::string::String::new()) } } impl ::protobuf::Message for Metadata { fn is_initialized(&self) -> bool { true } fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> { while !is.eof()? { let (field_number, wire_type) = is.read_tag_unpack()?; match field_number { 1 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.field_type)?; }, 2 => { ::protobuf::rt::read_singular_string_into(wire_type, is, &mut self.metadata)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, }; } ::std::result::Result::Ok(()) } // Compute sizes of nested messages #[allow(unused_variables)] fn compute_size(&self) -> u32 { let mut my_size = 0; if let Some(ref v) = self.field_type.as_ref() { my_size += ::protobuf::rt::string_size(1, &v); } if let Some(ref v) = self.metadata.as_ref() { my_size += ::protobuf::rt::string_size(2, &v); } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size } fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> { if let Some(ref v) = self.field_type.as_ref() { os.write_string(1, &v)?; } if let Some(ref v) = self.metadata.as_ref() { os.write_string(2, &v)?; } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } fn get_cached_size(&self) -> u32 { self.cached_size.get() } fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { &self.unknown_fields } fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { &mut self.unknown_fields } fn as_any(&self) -> &dyn (::std::any::Any) { self as &dyn (::std::any::Any) } fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { self as &mut dyn (::std::any::Any) } fn into_any(self: Box) -> ::std::boxed::Box { self } fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { Self::descriptor_static() } fn new() -> Metadata { Metadata::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, }; unsafe { descriptor.get(|| { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "type", |m: &Metadata| { &m.field_type }, |m: &mut Metadata| { &mut m.field_type }, )); fields.push(::protobuf::reflect::accessor::make_singular_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "metadata", |m: &Metadata| { &m.metadata }, |m: &mut Metadata| { &mut m.metadata }, )); ::protobuf::reflect::MessageDescriptor::new::( "Metadata", fields, file_descriptor_proto() ) }) } } fn default_instance() -> &'static Metadata { static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const Metadata, }; unsafe { instance.get(Metadata::new) } } } impl ::protobuf::Clear for Metadata { fn clear(&mut self) { self.field_type.clear(); self.metadata.clear(); self.unknown_fields.clear(); } } impl ::std::fmt::Debug for Metadata { fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } impl ::protobuf::reflect::ProtobufValue for Metadata { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(Clone,PartialEq,Eq,Debug,Hash)] pub enum MessageType { kMessageTypeHello = 1, kMessageTypeGoodbye = 2, kMessageTypeProbe = 3, kMessageTypeNotify = 10, kMessageTypeLoad = 20, kMessageTypePlay = 21, kMessageTypePause = 22, kMessageTypePlayPause = 23, kMessageTypeSeek = 24, kMessageTypePrev = 25, kMessageTypeNext = 26, kMessageTypeVolume = 27, kMessageTypeShuffle = 28, kMessageTypeRepeat = 29, kMessageTypeVolumeDown = 31, kMessageTypeVolumeUp = 32, kMessageTypeReplace = 33, kMessageTypeLogout = 34, kMessageTypeAction = 35, kMessageTypeRename = 36, kMessageTypeUpdateMetadata = 128, } impl ::protobuf::ProtobufEnum for MessageType { fn value(&self) -> i32 { *self as i32 } fn from_i32(value: i32) -> ::std::option::Option { match value { 1 => ::std::option::Option::Some(MessageType::kMessageTypeHello), 2 => ::std::option::Option::Some(MessageType::kMessageTypeGoodbye), 3 => ::std::option::Option::Some(MessageType::kMessageTypeProbe), 10 => ::std::option::Option::Some(MessageType::kMessageTypeNotify), 20 => ::std::option::Option::Some(MessageType::kMessageTypeLoad), 21 => ::std::option::Option::Some(MessageType::kMessageTypePlay), 22 => ::std::option::Option::Some(MessageType::kMessageTypePause), 23 => ::std::option::Option::Some(MessageType::kMessageTypePlayPause), 24 => ::std::option::Option::Some(MessageType::kMessageTypeSeek), 25 => ::std::option::Option::Some(MessageType::kMessageTypePrev), 26 => ::std::option::Option::Some(MessageType::kMessageTypeNext), 27 => ::std::option::Option::Some(MessageType::kMessageTypeVolume), 28 => ::std::option::Option::Some(MessageType::kMessageTypeShuffle), 29 => ::std::option::Option::Some(MessageType::kMessageTypeRepeat), 31 => ::std::option::Option::Some(MessageType::kMessageTypeVolumeDown), 32 => ::std::option::Option::Some(MessageType::kMessageTypeVolumeUp), 33 => ::std::option::Option::Some(MessageType::kMessageTypeReplace), 34 => ::std::option::Option::Some(MessageType::kMessageTypeLogout), 35 => ::std::option::Option::Some(MessageType::kMessageTypeAction), 36 => ::std::option::Option::Some(MessageType::kMessageTypeRename), 128 => ::std::option::Option::Some(MessageType::kMessageTypeUpdateMetadata), _ => ::std::option::Option::None } } fn values() -> &'static [Self] { static values: &'static [MessageType] = &[ MessageType::kMessageTypeHello, MessageType::kMessageTypeGoodbye, MessageType::kMessageTypeProbe, MessageType::kMessageTypeNotify, MessageType::kMessageTypeLoad, MessageType::kMessageTypePlay, MessageType::kMessageTypePause, MessageType::kMessageTypePlayPause, MessageType::kMessageTypeSeek, MessageType::kMessageTypePrev, MessageType::kMessageTypeNext, MessageType::kMessageTypeVolume, MessageType::kMessageTypeShuffle, MessageType::kMessageTypeRepeat, MessageType::kMessageTypeVolumeDown, MessageType::kMessageTypeVolumeUp, MessageType::kMessageTypeReplace, MessageType::kMessageTypeLogout, MessageType::kMessageTypeAction, MessageType::kMessageTypeRename, MessageType::kMessageTypeUpdateMetadata, ]; values } fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::EnumDescriptor, }; unsafe { descriptor.get(|| { ::protobuf::reflect::EnumDescriptor::new("MessageType", file_descriptor_proto()) }) } } } impl ::std::marker::Copy for MessageType { } // Note, `Default` is implemented although default value is not 0 impl ::std::default::Default for MessageType { fn default() -> Self { MessageType::kMessageTypeHello } } impl ::protobuf::reflect::ProtobufValue for MessageType { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Enum(self.descriptor()) } } #[derive(Clone,PartialEq,Eq,Debug,Hash)] pub enum CapabilityType { kSupportedContexts = 1, kCanBePlayer = 2, kRestrictToLocal = 3, kDeviceType = 4, kGaiaEqConnectId = 5, kSupportsLogout = 6, kIsObservable = 7, kVolumeSteps = 8, kSupportedTypes = 9, kCommandAcks = 10, kSupportsRename = 11, kHidden = 12, kSupportsPlaylistV2 = 13, kSupportsExternalEpisodes = 14, } impl ::protobuf::ProtobufEnum for CapabilityType { fn value(&self) -> i32 { *self as i32 } fn from_i32(value: i32) -> ::std::option::Option { match value { 1 => ::std::option::Option::Some(CapabilityType::kSupportedContexts), 2 => ::std::option::Option::Some(CapabilityType::kCanBePlayer), 3 => ::std::option::Option::Some(CapabilityType::kRestrictToLocal), 4 => ::std::option::Option::Some(CapabilityType::kDeviceType), 5 => ::std::option::Option::Some(CapabilityType::kGaiaEqConnectId), 6 => ::std::option::Option::Some(CapabilityType::kSupportsLogout), 7 => ::std::option::Option::Some(CapabilityType::kIsObservable), 8 => ::std::option::Option::Some(CapabilityType::kVolumeSteps), 9 => ::std::option::Option::Some(CapabilityType::kSupportedTypes), 10 => ::std::option::Option::Some(CapabilityType::kCommandAcks), 11 => ::std::option::Option::Some(CapabilityType::kSupportsRename), 12 => ::std::option::Option::Some(CapabilityType::kHidden), 13 => ::std::option::Option::Some(CapabilityType::kSupportsPlaylistV2), 14 => ::std::option::Option::Some(CapabilityType::kSupportsExternalEpisodes), _ => ::std::option::Option::None } } fn values() -> &'static [Self] { static values: &'static [CapabilityType] = &[ CapabilityType::kSupportedContexts, CapabilityType::kCanBePlayer, CapabilityType::kRestrictToLocal, CapabilityType::kDeviceType, CapabilityType::kGaiaEqConnectId, CapabilityType::kSupportsLogout, CapabilityType::kIsObservable, CapabilityType::kVolumeSteps, CapabilityType::kSupportedTypes, CapabilityType::kCommandAcks, CapabilityType::kSupportsRename, CapabilityType::kHidden, CapabilityType::kSupportsPlaylistV2, CapabilityType::kSupportsExternalEpisodes, ]; values } fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::EnumDescriptor, }; unsafe { descriptor.get(|| { ::protobuf::reflect::EnumDescriptor::new("CapabilityType", file_descriptor_proto()) }) } } } impl ::std::marker::Copy for CapabilityType { } // Note, `Default` is implemented although default value is not 0 impl ::std::default::Default for CapabilityType { fn default() -> Self { CapabilityType::kSupportedContexts } } impl ::protobuf::reflect::ProtobufValue for CapabilityType { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Enum(self.descriptor()) } } #[derive(Clone,PartialEq,Eq,Debug,Hash)] pub enum PlayStatus { kPlayStatusStop = 0, kPlayStatusPlay = 1, kPlayStatusPause = 2, kPlayStatusLoading = 3, } impl ::protobuf::ProtobufEnum for PlayStatus { fn value(&self) -> i32 { *self as i32 } fn from_i32(value: i32) -> ::std::option::Option { match value { 0 => ::std::option::Option::Some(PlayStatus::kPlayStatusStop), 1 => ::std::option::Option::Some(PlayStatus::kPlayStatusPlay), 2 => ::std::option::Option::Some(PlayStatus::kPlayStatusPause), 3 => ::std::option::Option::Some(PlayStatus::kPlayStatusLoading), _ => ::std::option::Option::None } } fn values() -> &'static [Self] { static values: &'static [PlayStatus] = &[ PlayStatus::kPlayStatusStop, PlayStatus::kPlayStatusPlay, PlayStatus::kPlayStatusPause, PlayStatus::kPlayStatusLoading, ]; values } fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor { static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::reflect::EnumDescriptor, }; unsafe { descriptor.get(|| { ::protobuf::reflect::EnumDescriptor::new("PlayStatus", file_descriptor_proto()) }) } } } impl ::std::marker::Copy for PlayStatus { } impl ::std::default::Default for PlayStatus { fn default() -> Self { PlayStatus::kPlayStatusStop } } impl ::protobuf::reflect::ProtobufValue for PlayStatus { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Enum(self.descriptor()) } } static file_descriptor_proto_data: &'static [u8] = b"\ \n\x0bspirc.proto\x12\0\"\xfd\x02\n\x05Frame\x12\x11\n\x07version\x18\ \x01\x20\x01(\rB\0\x12\x0f\n\x05ident\x18\x02\x20\x01(\tB\0\x12\x1a\n\ \x10protocol_version\x18\x03\x20\x01(\tB\0\x12\x10\n\x06seq_nr\x18\x04\ \x20\x01(\rB\0\x12\x1b\n\x03typ\x18\x05\x20\x01(\x0e2\x0c.MessageTypeB\0\ \x12$\n\x0cdevice_state\x18\x07\x20\x01(\x0b2\x0c.DeviceStateB\0\x12\x1b\ \n\x07goodbye\x18\x0b\x20\x01(\x0b2\x08.GoodbyeB\0\x12\x17\n\x05state\ \x18\x0c\x20\x01(\x0b2\x06.StateB\0\x12\x12\n\x08position\x18\r\x20\x01(\ \rB\0\x12\x10\n\x06volume\x18\x0e\x20\x01(\rB\0\x12\x19\n\x0fstate_updat\ e_id\x18\x11\x20\x01(\x03B\0\x12\x13\n\trecipient\x18\x12\x20\x03(\tB\0\ \x12\x1e\n\x14context_player_state\x18\x13\x20\x01(\x0cB\0\x12\x12\n\x08\ new_name\x18\x14\x20\x01(\tB\0\x12\x1d\n\x08metadata\x18\x19\x20\x01(\ \x0b2\t.MetadataB\0:\0\"\x9f\x02\n\x0bDeviceState\x12\x14\n\nsw_version\ \x18\x01\x20\x01(\tB\0\x12\x13\n\tis_active\x18\n\x20\x01(\x08B\0\x12\ \x12\n\x08can_play\x18\x0b\x20\x01(\x08B\0\x12\x10\n\x06volume\x18\x0c\ \x20\x01(\rB\0\x12\x0e\n\x04name\x18\r\x20\x01(\tB\0\x12\x14\n\nerror_co\ de\x18\x0e\x20\x01(\rB\0\x12\x1a\n\x10became_active_at\x18\x0f\x20\x01(\ \x03B\0\x12\x17\n\rerror_message\x18\x10\x20\x01(\tB\0\x12#\n\x0ccapabil\ ities\x18\x11\x20\x03(\x0b2\x0b.CapabilityB\0\x12\x1e\n\x14context_playe\ r_error\x18\x14\x20\x01(\tB\0\x12\x1d\n\x08metadata\x18\x19\x20\x03(\x0b\ 2\t.MetadataB\0:\0\"Y\n\nCapability\x12\x1e\n\x03typ\x18\x01\x20\x01(\ \x0e2\x0f.CapabilityTypeB\0\x12\x12\n\x08intValue\x18\x02\x20\x03(\x03B\ \0\x12\x15\n\x0bstringValue\x18\x03\x20\x03(\tB\0:\0\"\x1d\n\x07Goodbye\ \x12\x10\n\x06reason\x18\x01\x20\x01(\tB\0:\0\"\x85\x03\n\x05State\x12\ \x15\n\x0bcontext_uri\x18\x02\x20\x01(\tB\0\x12\x0f\n\x05index\x18\x03\ \x20\x01(\rB\0\x12\x15\n\x0bposition_ms\x18\x04\x20\x01(\rB\0\x12\x1d\n\ \x06status\x18\x05\x20\x01(\x0e2\x0b.PlayStatusB\0\x12\x1e\n\x14position\ _measured_at\x18\x07\x20\x01(\x04B\0\x12\x1d\n\x13context_description\ \x18\x08\x20\x01(\tB\0\x12\x11\n\x07shuffle\x18\r\x20\x01(\x08B\0\x12\ \x10\n\x06repeat\x18\x0e\x20\x01(\x08B\0\x12\x1c\n\x12last_command_ident\ \x18\x14\x20\x01(\tB\0\x12\x1c\n\x12last_command_msgid\x18\x15\x20\x01(\ \rB\0\x12\x1f\n\x15playing_from_fallback\x18\x18\x20\x01(\x08B\0\x12\r\n\ \x03row\x18\x19\x20\x01(\rB\0\x12\x1d\n\x13playing_track_index\x18\x1a\ \x20\x01(\rB\0\x12\x1a\n\x05track\x18\x1b\x20\x03(\x0b2\t.TrackRefB\0\ \x12\x11\n\x02ad\x18\x1c\x20\x01(\x0b2\x03.AdB\0:\0\"O\n\x08TrackRef\x12\ \r\n\x03gid\x18\x01\x20\x01(\x0cB\0\x12\r\n\x03uri\x18\x02\x20\x01(\tB\0\ \x12\x10\n\x06queued\x18\x03\x20\x01(\x08B\0\x12\x11\n\x07context\x18\ \x04\x20\x01(\tB\0:\0\"\xb9\x01\n\x02Ad\x12\x0e\n\x04next\x18\x01\x20\ \x01(\x05B\0\x12\x11\n\x07ogg_fid\x18\x02\x20\x01(\x0cB\0\x12\x13\n\tima\ ge_fid\x18\x03\x20\x01(\x0cB\0\x12\x12\n\x08duration\x18\x04\x20\x01(\ \x05B\0\x12\x13\n\tclick_url\x18\x05\x20\x01(\tB\0\x12\x18\n\x0eimpressi\ on_url\x18\x06\x20\x01(\tB\0\x12\x11\n\x07product\x18\x07\x20\x01(\tB\0\ \x12\x14\n\nadvertiser\x18\x08\x20\x01(\tB\0\x12\r\n\x03gid\x18\t\x20\ \x01(\x0cB\0:\0\"0\n\x08Metadata\x12\x0e\n\x04type\x18\x01\x20\x01(\tB\0\ \x12\x12\n\x08metadata\x18\x02\x20\x01(\tB\0:\0*\x8f\x04\n\x0bMessageTyp\ e\x12\x15\n\x11kMessageTypeHello\x10\x01\x12\x17\n\x13kMessageTypeGoodby\ e\x10\x02\x12\x15\n\x11kMessageTypeProbe\x10\x03\x12\x16\n\x12kMessageTy\ peNotify\x10\n\x12\x14\n\x10kMessageTypeLoad\x10\x14\x12\x14\n\x10kMessa\ geTypePlay\x10\x15\x12\x15\n\x11kMessageTypePause\x10\x16\x12\x19\n\x15k\ MessageTypePlayPause\x10\x17\x12\x14\n\x10kMessageTypeSeek\x10\x18\x12\ \x14\n\x10kMessageTypePrev\x10\x19\x12\x14\n\x10kMessageTypeNext\x10\x1a\ \x12\x16\n\x12kMessageTypeVolume\x10\x1b\x12\x17\n\x13kMessageTypeShuffl\ e\x10\x1c\x12\x16\n\x12kMessageTypeRepeat\x10\x1d\x12\x1a\n\x16kMessageT\ ypeVolumeDown\x10\x1f\x12\x18\n\x14kMessageTypeVolumeUp\x10\x20\x12\x17\ \n\x13kMessageTypeReplace\x10!\x12\x16\n\x12kMessageTypeLogout\x10\"\x12\ \x16\n\x12kMessageTypeAction\x10#\x12\x16\n\x12kMessageTypeRename\x10$\ \x12\x1f\n\x1akMessageTypeUpdateMetadata\x10\x80\x01\x1a\0*\xb4\x02\n\ \x0eCapabilityType\x12\x16\n\x12kSupportedContexts\x10\x01\x12\x10\n\x0c\ kCanBePlayer\x10\x02\x12\x14\n\x10kRestrictToLocal\x10\x03\x12\x0f\n\x0b\ kDeviceType\x10\x04\x12\x14\n\x10kGaiaEqConnectId\x10\x05\x12\x13\n\x0fk\ SupportsLogout\x10\x06\x12\x11\n\rkIsObservable\x10\x07\x12\x10\n\x0ckVo\ lumeSteps\x10\x08\x12\x13\n\x0fkSupportedTypes\x10\t\x12\x10\n\x0ckComma\ ndAcks\x10\n\x12\x13\n\x0fkSupportsRename\x10\x0b\x12\x0b\n\x07kHidden\ \x10\x0c\x12\x17\n\x13kSupportsPlaylistV2\x10\r\x12\x1d\n\x19kSupportsEx\ ternalEpisodes\x10\x0e\x1a\0*f\n\nPlayStatus\x12\x13\n\x0fkPlayStatusSto\ p\x10\0\x12\x13\n\x0fkPlayStatusPlay\x10\x01\x12\x14\n\x10kPlayStatusPau\ se\x10\x02\x12\x16\n\x12kPlayStatusLoading\x10\x03\x1a\0B\0b\x06proto2\ "; static mut file_descriptor_proto_lazy: ::protobuf::lazy::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, ptr: 0 as *const ::protobuf::descriptor::FileDescriptorProto, }; fn parse_descriptor_proto() -> ::protobuf::descriptor::FileDescriptorProto { ::protobuf::parse_from_bytes(file_descriptor_proto_data).unwrap() } pub fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto { unsafe { file_descriptor_proto_lazy.get(|| { parse_descriptor_proto() }) } }