pub struct CMsgClientTicketAuthComplete {
pub steam_id: Option<u64>,
pub game_id: Option<u64>,
pub estate: Option<u32>,
pub eauth_session_response: Option<u32>,
pub deprecated_ticket: Option<Vec<u8>>,
pub ticket_crc: Option<u32>,
pub ticket_sequence: Option<u32>,
pub owner_steam_id: Option<u64>,
}Fields§
§steam_id: Option<u64>§game_id: Option<u64>§estate: Option<u32>§eauth_session_response: Option<u32>§deprecated_ticket: Option<Vec<u8>>§ticket_crc: Option<u32>§ticket_sequence: Option<u32>§owner_steam_id: Option<u64>Implementations§
Source§impl CMsgClientTicketAuthComplete
impl CMsgClientTicketAuthComplete
Sourcepub fn steam_id(&self) -> u64
pub fn steam_id(&self) -> u64
Returns the value of steam_id, or the default value if steam_id is unset.
Sourcepub fn game_id(&self) -> u64
pub fn game_id(&self) -> u64
Returns the value of game_id, or the default value if game_id is unset.
Sourcepub fn estate(&self) -> u32
pub fn estate(&self) -> u32
Returns the value of estate, or the default value if estate is unset.
Sourcepub fn eauth_session_response(&self) -> u32
pub fn eauth_session_response(&self) -> u32
Returns the value of eauth_session_response, or the default value if eauth_session_response is unset.
Sourcepub fn deprecated_ticket(&self) -> &[u8] ⓘ
pub fn deprecated_ticket(&self) -> &[u8] ⓘ
Returns the value of deprecated_ticket, or the default value if deprecated_ticket is unset.
Sourcepub fn ticket_crc(&self) -> u32
pub fn ticket_crc(&self) -> u32
Returns the value of ticket_crc, or the default value if ticket_crc is unset.
Sourcepub fn ticket_sequence(&self) -> u32
pub fn ticket_sequence(&self) -> u32
Returns the value of ticket_sequence, or the default value if ticket_sequence is unset.
Sourcepub fn owner_steam_id(&self) -> u64
pub fn owner_steam_id(&self) -> u64
Returns the value of owner_steam_id, or the default value if owner_steam_id is unset.
Trait Implementations§
Source§impl Clone for CMsgClientTicketAuthComplete
impl Clone for CMsgClientTicketAuthComplete
Source§fn clone(&self) -> CMsgClientTicketAuthComplete
fn clone(&self) -> CMsgClientTicketAuthComplete
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CMsgClientTicketAuthComplete
impl Debug for CMsgClientTicketAuthComplete
impl Eq for CMsgClientTicketAuthComplete
Source§impl Hash for CMsgClientTicketAuthComplete
impl Hash for CMsgClientTicketAuthComplete
Source§impl Message for CMsgClientTicketAuthComplete
impl Message for CMsgClientTicketAuthComplete
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(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
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(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
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(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for CMsgClientTicketAuthComplete
impl PartialEq for CMsgClientTicketAuthComplete
Source§fn eq(&self, other: &CMsgClientTicketAuthComplete) -> bool
fn eq(&self, other: &CMsgClientTicketAuthComplete) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CMsgClientTicketAuthComplete
Auto Trait Implementations§
impl Freeze for CMsgClientTicketAuthComplete
impl RefUnwindSafe for CMsgClientTicketAuthComplete
impl Send for CMsgClientTicketAuthComplete
impl Sync for CMsgClientTicketAuthComplete
impl Unpin for CMsgClientTicketAuthComplete
impl UnsafeUnpin for CMsgClientTicketAuthComplete
impl UnwindSafe for CMsgClientTicketAuthComplete
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