pub struct DailyChallengeUserStatistics {
pub daily_streak_best: u32,
pub daily_streak_current: u32,
pub last_update: Option<OffsetDateTime>,
pub last_weekly_streak: Option<OffsetDateTime>,
pub playcount: u32,
pub top_10p_placements: u32,
pub top_50p_placements: u32,
pub user_id: u32,
pub weekly_streak_best: u32,
pub weekly_streak_current: u32,
}Fields§
§daily_streak_best: u32§daily_streak_current: u32§last_update: Option<OffsetDateTime>§last_weekly_streak: Option<OffsetDateTime>§playcount: u32§top_10p_placements: u32§top_50p_placements: u32§user_id: u32§weekly_streak_best: u32§weekly_streak_current: u32Trait Implementations§
Source§impl Clone for DailyChallengeUserStatistics
impl Clone for DailyChallengeUserStatistics
Source§fn clone(&self) -> DailyChallengeUserStatistics
fn clone(&self) -> DailyChallengeUserStatistics
Returns a duplicate 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 DailyChallengeUserStatistics
impl Debug for DailyChallengeUserStatistics
Source§impl Default for DailyChallengeUserStatistics
impl Default for DailyChallengeUserStatistics
Source§fn default() -> DailyChallengeUserStatistics
fn default() -> DailyChallengeUserStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DailyChallengeUserStatistics
impl<'de> Deserialize<'de> for DailyChallengeUserStatistics
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 DailyChallengeUserStatistics
impl PartialEq for DailyChallengeUserStatistics
Source§fn eq(&self, other: &DailyChallengeUserStatistics) -> bool
fn eq(&self, other: &DailyChallengeUserStatistics) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DailyChallengeUserStatistics
impl StructuralPartialEq for DailyChallengeUserStatistics
Auto Trait Implementations§
impl Freeze for DailyChallengeUserStatistics
impl RefUnwindSafe for DailyChallengeUserStatistics
impl Send for DailyChallengeUserStatistics
impl Sync for DailyChallengeUserStatistics
impl Unpin for DailyChallengeUserStatistics
impl UnwindSafe for DailyChallengeUserStatistics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.