pub struct Map {Show 21 fields
    pub name: String,
    pub website: String,
    pub thumbnail: String,
    pub web_preview: String,
    pub type: String,
    pub points: i64,
    pub difficulty: i64,
    pub mapper: String,
    pub release: Option<f64>,
    pub median_time: f64,
    pub first_finish: f64,
    pub last_finish: f64,
    pub finishes: i64,
    pub finishers: i64,
    pub biggest_team: i64,
    pub width: i64,
    pub height: i64,
    pub tiles: Vec<String>,
    pub team_ranks: Vec<DTeamRank>,
    pub ranks: Vec<DRank>,
    pub max_finishes: Vec<MaxFinish>,
}Fields§
§name: String§website: String§thumbnail: String§web_preview: String§type: String§points: i64§difficulty: i64§mapper: String§release: Option<f64>§median_time: f64§first_finish: f64§last_finish: f64§finishes: i64§finishers: i64§biggest_team: i64§width: i64§height: i64§tiles: Vec<String>§team_ranks: Vec<DTeamRank>§ranks: Vec<DRank>§max_finishes: Vec<MaxFinish>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Map
 
impl<'de> Deserialize<'de> for Map
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
impl StructuralPartialEq for Map
Auto Trait Implementations§
impl Freeze for Map
impl RefUnwindSafe for Map
impl Send for Map
impl Sync for Map
impl Unpin for Map
impl UnwindSafe for Map
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