pub struct Skirmish {
pub id: u64,
pub scores: HashMap<String, u64>,
pub map_scores: Vec<MapScore>,
}
Fields§
§id: u64
§scores: HashMap<String, u64>
§map_scores: Vec<MapScore>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Skirmish
impl<'de> Deserialize<'de> for Skirmish
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 Skirmish
impl RefUnwindSafe for Skirmish
impl Send for Skirmish
impl Sync for Skirmish
impl Unpin for Skirmish
impl UnwindSafe for Skirmish
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