pub struct CMsgSource2PlayStatsPackedRecordList {Show 19 fields
pub record_name: Option<String>,
pub field_defs: Vec<FieldDef>,
pub record_count: Option<u32>,
pub uint64_vals: Vec<u64>,
pub uint32_vals: Vec<u32>,
pub uint16_vals: Vec<u32>,
pub uint8_vals: Vec<u32>,
pub int64_vals: Vec<i64>,
pub int32_vals: Vec<i32>,
pub int16_vals: Vec<i32>,
pub int8_vals: Vec<i32>,
pub float64_vals: Vec<f64>,
pub float32_vals: Vec<f32>,
pub bool_vals: Vec<bool>,
pub string_vals: Vec<String>,
pub low_cardinality_string_vals: Vec<String>,
pub utcdatetime_vals: Vec<u32>,
pub steamidtrustbucket_vals: Vec<u64>,
pub trustbucket_vals: Vec<SteamIdList>,
}Fields§
§record_name: Option<String>§field_defs: Vec<FieldDef>§record_count: Option<u32>§uint64_vals: Vec<u64>§uint32_vals: Vec<u32>§uint16_vals: Vec<u32>§uint8_vals: Vec<u32>§int64_vals: Vec<i64>§int32_vals: Vec<i32>§int16_vals: Vec<i32>§int8_vals: Vec<i32>§float64_vals: Vec<f64>§float32_vals: Vec<f32>§bool_vals: Vec<bool>§string_vals: Vec<String>§low_cardinality_string_vals: Vec<String>§utcdatetime_vals: Vec<u32>§steamidtrustbucket_vals: Vec<u64>§trustbucket_vals: Vec<SteamIdList>Implementations§
Source§impl CMsgSource2PlayStatsPackedRecordList
impl CMsgSource2PlayStatsPackedRecordList
Sourcepub fn record_name(&self) -> &str
pub fn record_name(&self) -> &str
Returns the value of record_name, or the default value if record_name is unset.
Sourcepub fn record_count(&self) -> u32
pub fn record_count(&self) -> u32
Returns the value of record_count, or the default value if record_count is unset.
Trait Implementations§
Source§impl Clone for CMsgSource2PlayStatsPackedRecordList
impl Clone for CMsgSource2PlayStatsPackedRecordList
Source§fn clone(&self) -> CMsgSource2PlayStatsPackedRecordList
fn clone(&self) -> CMsgSource2PlayStatsPackedRecordList
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 CMsgSource2PlayStatsPackedRecordList
impl Default for CMsgSource2PlayStatsPackedRecordList
Source§fn default() -> CMsgSource2PlayStatsPackedRecordList
fn default() -> CMsgSource2PlayStatsPackedRecordList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CMsgSource2PlayStatsPackedRecordList
impl<'de> Deserialize<'de> for CMsgSource2PlayStatsPackedRecordList
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CMsgSource2PlayStatsPackedRecordList, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CMsgSource2PlayStatsPackedRecordList, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for CMsgSource2PlayStatsPackedRecordList
impl Message for CMsgSource2PlayStatsPackedRecordList
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 CMsgSource2PlayStatsPackedRecordList
impl PartialEq for CMsgSource2PlayStatsPackedRecordList
Source§fn eq(&self, other: &CMsgSource2PlayStatsPackedRecordList) -> bool
fn eq(&self, other: &CMsgSource2PlayStatsPackedRecordList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CMsgSource2PlayStatsPackedRecordList
impl Serialize for CMsgSource2PlayStatsPackedRecordList
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CMsgSource2PlayStatsPackedRecordList
Auto Trait Implementations§
impl Freeze for CMsgSource2PlayStatsPackedRecordList
impl RefUnwindSafe for CMsgSource2PlayStatsPackedRecordList
impl Send for CMsgSource2PlayStatsPackedRecordList
impl Sync for CMsgSource2PlayStatsPackedRecordList
impl Unpin for CMsgSource2PlayStatsPackedRecordList
impl UnsafeUnpin for CMsgSource2PlayStatsPackedRecordList
impl UnwindSafe for CMsgSource2PlayStatsPackedRecordList
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