pub struct CMsgClientInviteToGame {
pub steam_id_dest: Option<u64>,
pub steam_id_src: Option<u64>,
pub connect_string: Option<String>,
pub remote_play: Option<String>,
}Expand description
Invite to game request
Fields§
§steam_id_dest: Option<u64>§steam_id_src: Option<u64>§connect_string: Option<String>§remote_play: Option<String>Implementations§
Source§impl CMsgClientInviteToGame
impl CMsgClientInviteToGame
Sourcepub fn steam_id_dest(&self) -> u64
pub fn steam_id_dest(&self) -> u64
Returns the value of steam_id_dest, or the default value if steam_id_dest is unset.
Sourcepub fn steam_id_src(&self) -> u64
pub fn steam_id_src(&self) -> u64
Returns the value of steam_id_src, or the default value if steam_id_src is unset.
Sourcepub fn connect_string(&self) -> &str
pub fn connect_string(&self) -> &str
Returns the value of connect_string, or the default value if connect_string is unset.
Sourcepub fn remote_play(&self) -> &str
pub fn remote_play(&self) -> &str
Returns the value of remote_play, or the default value if remote_play is unset.
Trait Implementations§
Source§impl Clone for CMsgClientInviteToGame
impl Clone for CMsgClientInviteToGame
Source§fn clone(&self) -> CMsgClientInviteToGame
fn clone(&self) -> CMsgClientInviteToGame
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 Debug for CMsgClientInviteToGame
impl Debug for CMsgClientInviteToGame
Source§impl Default for CMsgClientInviteToGame
impl Default for CMsgClientInviteToGame
Source§impl Message for CMsgClientInviteToGame
impl Message for CMsgClientInviteToGame
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for CMsgClientInviteToGame
impl PartialEq for CMsgClientInviteToGame
impl StructuralPartialEq for CMsgClientInviteToGame
Auto Trait Implementations§
impl Freeze for CMsgClientInviteToGame
impl RefUnwindSafe for CMsgClientInviteToGame
impl Send for CMsgClientInviteToGame
impl Sync for CMsgClientInviteToGame
impl Unpin for CMsgClientInviteToGame
impl UnsafeUnpin for CMsgClientInviteToGame
impl UnwindSafe for CMsgClientInviteToGame
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