pub struct CMsgClientGetClientDetailsResponse { /* private fields */ }Implementations§
Source§impl CMsgClientGetClientDetailsResponse
impl CMsgClientGetClientDetailsResponse
pub fn new() -> CMsgClientGetClientDetailsResponse
pub fn default_instance() -> &'static CMsgClientGetClientDetailsResponse
pub fn clear_package_version(&mut self)
pub fn has_package_version(&self) -> bool
pub fn set_package_version(&mut self, v: u32)
pub fn get_package_version<'a>(&self) -> u32
pub fn clear_protocol_version(&mut self)
pub fn has_protocol_version(&self) -> bool
pub fn set_protocol_version(&mut self, v: u32)
pub fn get_protocol_version<'a>(&self) -> u32
pub fn clear_os(&mut self)
pub fn has_os(&self) -> bool
pub fn set_os(&mut self, v: String)
pub fn mut_os<'a>(&'a mut self) -> &'a mut String
pub fn take_os(&mut self) -> String
pub fn get_os<'a>(&'a self) -> &'a str
pub fn clear_machine_name(&mut self)
pub fn has_machine_name(&self) -> bool
pub fn set_machine_name(&mut self, v: String)
pub fn mut_machine_name<'a>(&'a mut self) -> &'a mut String
pub fn take_machine_name(&mut self) -> String
pub fn get_machine_name<'a>(&'a self) -> &'a str
pub fn clear_ip_public(&mut self)
pub fn has_ip_public(&self) -> bool
pub fn set_ip_public(&mut self, v: String)
pub fn mut_ip_public<'a>(&'a mut self) -> &'a mut String
pub fn take_ip_public(&mut self) -> String
pub fn get_ip_public<'a>(&'a self) -> &'a str
pub fn clear_ip_private(&mut self)
pub fn has_ip_private(&self) -> bool
pub fn set_ip_private(&mut self, v: String)
pub fn mut_ip_private<'a>(&'a mut self) -> &'a mut String
pub fn take_ip_private(&mut self) -> String
pub fn get_ip_private<'a>(&'a self) -> &'a str
pub fn clear_bytes_available(&mut self)
pub fn has_bytes_available(&self) -> bool
pub fn set_bytes_available(&mut self, v: u64)
pub fn get_bytes_available<'a>(&self) -> u64
pub fn clear_games_running(&mut self)
pub fn set_games_running( &mut self, v: RepeatedField<CMsgClientGetClientDetailsResponse_Game>, )
pub fn mut_games_running<'a>( &'a mut self, ) -> &'a mut RepeatedField<CMsgClientGetClientDetailsResponse_Game>
pub fn take_games_running( &mut self, ) -> RepeatedField<CMsgClientGetClientDetailsResponse_Game>
pub fn get_games_running<'a>( &'a self, ) -> &'a [CMsgClientGetClientDetailsResponse_Game]
Trait Implementations§
Source§impl Clone for CMsgClientGetClientDetailsResponse
impl Clone for CMsgClientGetClientDetailsResponse
Source§fn clone(&self) -> CMsgClientGetClientDetailsResponse
fn clone(&self) -> CMsgClientGetClientDetailsResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CMsgClientGetClientDetailsResponse
impl Default for CMsgClientGetClientDetailsResponse
Source§fn default() -> CMsgClientGetClientDetailsResponse
fn default() -> CMsgClientGetClientDetailsResponse
Returns the “default value” for a type. Read more
Source§impl Message for CMsgClientGetClientDetailsResponse
impl Message for CMsgClientGetClientDetailsResponse
fn is_initialized(&self) -> bool
fn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> ProtobufResult<()>
fn compute_size(&self) -> u32
fn write_to_with_cached_sizes( &self, os: &mut CodedOutputStream<'_>, ) -> ProtobufResult<()>
fn get_cached_size(&self) -> u32
fn get_unknown_fields<'s>(&'s self) -> &'s UnknownFields
fn mut_unknown_fields<'s>(&'s mut self) -> &'s mut UnknownFields
fn type_id(&self) -> TypeId
fn as_any(&self) -> &dyn Any
fn descriptor(&self) -> &'static MessageDescriptor
fn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<(), ProtobufError>
fn write_length_delimited_to( &self, os: &mut CodedOutputStream<'_>, ) -> Result<(), ProtobufError>
fn write_length_delimited_to_vec( &self, vec: &mut Vec<u8>, ) -> Result<(), ProtobufError>
fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>
fn check_initialized(&self) -> Result<(), ProtobufError>
fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>
fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>
fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>
fn write_length_delimited_to_writer( &self, w: &mut dyn Write, ) -> Result<(), ProtobufError>
fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn into_any(self: Box<Self>) -> Box<dyn Any>
Source§impl MessageStatic for CMsgClientGetClientDetailsResponse
impl MessageStatic for CMsgClientGetClientDetailsResponse
fn new() -> CMsgClientGetClientDetailsResponse
fn descriptor_static( _: Option<CMsgClientGetClientDetailsResponse>, ) -> &'static MessageDescriptor
Source§impl PartialEq for CMsgClientGetClientDetailsResponse
impl PartialEq for CMsgClientGetClientDetailsResponse
Source§fn eq(&self, other: &CMsgClientGetClientDetailsResponse) -> bool
fn eq(&self, other: &CMsgClientGetClientDetailsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Sync for CMsgClientGetClientDetailsResponse
Auto Trait Implementations§
impl !Freeze for CMsgClientGetClientDetailsResponse
impl !RefUnwindSafe for CMsgClientGetClientDetailsResponse
impl Send for CMsgClientGetClientDetailsResponse
impl Unpin for CMsgClientGetClientDetailsResponse
impl UnwindSafe for CMsgClientGetClientDetailsResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more