pub struct CMsgClientTicketAuthComplete {
pub steam_id: Option<u64>,
pub game_id: Option<u64>,
pub estate: Option<u32>,
pub eauth_session_response: Option<u32>,
pub ticket_crc: Option<u32>,
pub ticket_sequence: Option<u32>,
pub owner_steam_id: Option<u64>,
}Expand description
Ticket auth complete
Fields§
§steam_id: Option<u64>§game_id: Option<u64>§estate: Option<u32>§eauth_session_response: Option<u32>§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 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 · 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
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<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 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