pub struct StatsPoints {
pub weekly_points: Option<PPoints>,
pub monthly_points: Option<PPoints>,
pub yearly_points: Option<PPoints>,
pub points: StatsPoints2,
pub rank_points: StatsPoints2,
pub team_points: StatsPoints2,
}
Fields§
§weekly_points: Option<PPoints>
§monthly_points: Option<PPoints>
§yearly_points: Option<PPoints>
§points: StatsPoints2
§rank_points: StatsPoints2
§team_points: StatsPoints2
Trait Implementations§
Source§impl Clone for StatsPoints
impl Clone for StatsPoints
Source§fn clone(&self) -> StatsPoints
fn clone(&self) -> StatsPoints
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 StatsPoints
impl Debug for StatsPoints
Source§impl Default for StatsPoints
impl Default for StatsPoints
Source§fn default() -> StatsPoints
fn default() -> StatsPoints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatsPoints
impl<'de> Deserialize<'de> for StatsPoints
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 StatsPoints
impl PartialEq for StatsPoints
Source§impl Serialize for StatsPoints
impl Serialize for StatsPoints
impl StructuralPartialEq for StatsPoints
Auto Trait Implementations§
impl Freeze for StatsPoints
impl RefUnwindSafe for StatsPoints
impl Send for StatsPoints
impl Sync for StatsPoints
impl Unpin for StatsPoints
impl UnwindSafe for StatsPoints
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