pub struct PointsGraph {
pub date: String,
pub points: i64,
pub rank_points: i64,
pub team_points: i64,
}
Fields§
§date: String
§points: i64
§rank_points: i64
§team_points: i64
Trait Implementations§
Source§impl Clone for PointsGraph
impl Clone for PointsGraph
Source§fn clone(&self) -> PointsGraph
fn clone(&self) -> PointsGraph
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PointsGraph
impl Debug for PointsGraph
Source§impl Default for PointsGraph
impl Default for PointsGraph
Source§fn default() -> PointsGraph
fn default() -> PointsGraph
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PointsGraph
impl<'de> Deserialize<'de> for PointsGraph
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
Source§impl PartialEq for PointsGraph
impl PartialEq for PointsGraph
Source§impl Serialize for PointsGraph
impl Serialize for PointsGraph
impl StructuralPartialEq for PointsGraph
Auto Trait Implementations§
impl Freeze for PointsGraph
impl RefUnwindSafe for PointsGraph
impl Send for PointsGraph
impl Sync for PointsGraph
impl Unpin for PointsGraph
impl UnwindSafe for PointsGraph
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