pub struct Info {Show 15 fields
pub game_creation: i64,
pub game_duration: i64,
pub game_end_timestamp: i64,
pub game_id: i64,
pub game_mode: String,
pub game_name: String,
pub game_start_timestamp: i64,
pub game_type: String,
pub game_version: String,
pub map_id: i64,
pub participants: Vec<Participant>,
pub platform_id: String,
pub queue_id: i64,
pub teams: Vec<Team>,
pub tournament_code: String,
}Fields§
§game_creation: i64§game_duration: i64§game_end_timestamp: i64§game_id: i64§game_mode: String§game_name: String§game_start_timestamp: i64§game_type: String§game_version: String§map_id: i64§participants: Vec<Participant>§platform_id: String§queue_id: i64§teams: Vec<Team>§tournament_code: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Info
impl<'de> Deserialize<'de> for Info
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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