wotbreplay-parser 0.3.0-alpha.2

World of Tanks Blitz replay parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::Serialize;

use crate::models::data::Summary;

#[derive(Debug, Serialize)]
pub struct ReplayHeader {
    pub summary: Summary,
    pub author_nickname: String,
    pub arena_unique_id: u64,
    pub arena_type_id: u32,
}