pub struct DDMap {
pub points: i64,
pub total_finishes: i64,
pub finishes: i64,
pub team_rank: Option<i64>,
pub rank: Option<i64>,
pub time: Option<f64>,
pub first_finish: Option<f64>,
}
Fields§
§points: i64
§total_finishes: i64
§finishes: i64
§team_rank: Option<i64>
§rank: Option<i64>
§time: Option<f64>
§first_finish: Option<f64>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DDMap
impl<'de> Deserialize<'de> for DDMap
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 DDMap
Auto Trait Implementations§
impl Freeze for DDMap
impl RefUnwindSafe for DDMap
impl Send for DDMap
impl Sync for DDMap
impl Unpin for DDMap
impl UnwindSafe for DDMap
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